wikiforum.tmpl

来自「PhpWiki是sourceforge的一个开源项目」· TMPL 代码 · 共 39 行

TMPL
39
字号
<?php // -*- php -*-  rcs_id('$Id: wikiforum.tmpl,v 1.2 2004/06/14 11:26:53 rurban Exp $');/* navigation headline: "MainForum / SubPage / ThisTopic" comes for freeother templates: forum-topics.tmpl: summary list of topicsthis  template:  detailed list of threads per topicaction: "newtopic" or "postreply"*/$CDATE = $WikiTheme->formatDateTime($FORUM_CTIME);?><div class="wikiforum wikiforum-form"><form action="<?=$request->getPostURL()?>" method="post" class="wikiaction"      accept-charset="<?=CHARSET?>">  <input type="hidden" name="forum[title]" value="<?= $FORUM_PARENT ?>" />  <?= HiddenInputs($request->getArgs()) ?>  <table class="wikiforum wikiforum-list">    <caption><?=_("New Topic")?>  &nbsp;&nbsp; <?=_("Post new")?> </caption>    <col class="label" width="10%" /><col width="100%" />    <tr><th align="center"><?=_("Author")?></th><th align="center"><?=_("Message")?></th></tr>    <tr>      <td align="left"><?=WikiLink($FORUM_CREATOR, 'if_known')?></td>      <td>        <table class="wikiforum wikiforum-message">          <tr><td align="left"><?=fmt("Posted: %s",$CDATE)?></td>              <td align="right"><?=_("Reply")?></td></tr>          <tr><td><?= $CONTENT ?></td></tr>        </table>     </td>   </tr>  </table></form></div>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?