[ Index ]

PHP Cross Reference of phpBB-3.1.12-deutsch

title

Body

[close]

/styles/prosilver/template/ -> viewforum_body.html (source)

   1  <!-- INCLUDE overall_header.html -->
   2  <!-- EVENT viewforum_forum_title_before -->
   3  <h2 class="forum-title"><!-- EVENT viewforum_forum_name_prepend --><a href="{U_VIEW_FORUM}">{FORUM_NAME}</a><!-- EVENT viewforum_forum_name_append --></h2>
   4  <!-- EVENT viewforum_forum_title_after -->
   5  <!-- IF FORUM_DESC or MODERATORS or U_MCP -->
   6  <div>
   7      <!-- NOTE: remove the style="display: none" when you want to have the forum description on the forum body -->
   8      <!-- IF FORUM_DESC --><div style="display: none !important;">{FORUM_DESC}<br /></div><!-- ENDIF -->
   9      <!-- IF MODERATORS --><p><strong><!-- IF S_SINGLE_MODERATOR -->{L_MODERATOR}<!-- ELSE -->{L_MODERATORS}<!-- ENDIF -->{L_COLON}</strong> {MODERATORS}</p><!-- ENDIF -->
  10  </div>
  11  <!-- ENDIF -->
  12  
  13  <!-- IF S_FORUM_RULES -->
  14      <div class="rules<!-- IF U_FORUM_RULES --> rules-link<!-- ENDIF -->">
  15          <div class="inner">
  16  
  17          <!-- IF U_FORUM_RULES -->
  18              <a href="{U_FORUM_RULES}">{L_FORUM_RULES}</a>
  19          <!-- ELSE -->
  20              <strong>{L_FORUM_RULES}</strong><br />
  21              {FORUM_RULES}
  22          <!-- ENDIF -->
  23  
  24          </div>
  25      </div>
  26  <!-- ENDIF -->
  27  
  28  <!-- IF S_HAS_SUBFORUM -->
  29  <!-- IF not S_IS_BOT and U_MARK_FORUMS -->
  30      <div class="action-bar compact">
  31          <a href="{U_MARK_FORUMS}" class="mark-read rightside" data-ajax="mark_forums_read">{L_MARK_SUBFORUMS_READ}</a>
  32      </div>
  33  <!-- ENDIF -->
  34      <!-- INCLUDE forumlist_body.html -->
  35  <!-- ENDIF -->
  36  
  37  <!-- IF S_DISPLAY_POST_INFO or .pagination or TOTAL_POSTS or TOTAL_TOPICS -->
  38      <div class="action-bar top">
  39  
  40      <!-- IF not S_IS_BOT and S_DISPLAY_POST_INFO -->
  41          <div class="buttons">
  42              <!-- EVENT viewforum_buttons_top_before -->
  43  
  44              <a href="{U_POST_NEW_TOPIC}" class="button icon-button <!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->post-icon<!-- ENDIF -->" title="<!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF -->">
  45                  <!-- IF S_IS_LOCKED -->{L_BUTTON_FORUM_LOCKED}<!-- ELSE -->{L_BUTTON_NEW_TOPIC}<!-- ENDIF -->
  46              </a>
  47  
  48              <!-- EVENT viewforum_buttons_top_after -->
  49          </div>
  50      <!-- ENDIF -->
  51  
  52      <!-- IF S_DISPLAY_SEARCHBOX -->
  53          <div class="search-box" role="search">
  54              <form method="get" id="forum-search" action="{S_SEARCHBOX_ACTION}">
  55              <fieldset>
  56                  <input class="inputbox search tiny" type="search" name="keywords" id="search_keywords" size="20" placeholder="{L_SEARCH_FORUM}" />
  57                  <button class="button icon-button search-icon" type="submit" title="{L_SEARCH}">{L_SEARCH}</button>
  58                  <a href="{U_SEARCH}" class="button icon-button search-adv-icon" title="{L_SEARCH_ADV}">{L_SEARCH_ADV}</a>
  59                  {S_SEARCH_LOCAL_HIDDEN_FIELDS}
  60              </fieldset>
  61              </form>
  62          </div>
  63      <!-- ENDIF -->
  64  
  65      <div class="pagination">
  66          <!-- IF not S_IS_BOT and U_MARK_TOPICS and .topicrow --><a href="{U_MARK_TOPICS}" class="mark" accesskey="m" data-ajax="mark_topics_read">{L_MARK_TOPICS_READ}</a> &bull; <!-- ENDIF -->
  67          {TOTAL_TOPICS}
  68          <!-- IF .pagination -->
  69              <!-- INCLUDE pagination.html -->
  70          <!-- ELSE -->
  71              &bull; {PAGE_NUMBER}
  72          <!-- ENDIF -->
  73      </div>
  74  
  75      </div>
  76  <!-- ENDIF -->
  77  
  78  <!-- IF S_NO_READ_ACCESS -->
  79  
  80      <div class="panel">
  81          <div class="inner">
  82          <strong>{L_NO_READ_ACCESS}</strong>
  83          </div>
  84      </div>
  85  
  86      <!-- IF not S_USER_LOGGED_IN and not S_IS_BOT -->
  87  
  88          <form action="{S_LOGIN_ACTION}" method="post">
  89  
  90          <div class="panel">
  91              <div class="inner">
  92  
  93              <div class="content">
  94                  <h3><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a><!-- IF S_REGISTER_ENABLED -->&nbsp; &bull; &nbsp;<a href="{U_REGISTER}">{L_REGISTER}</a><!-- ENDIF --></h3>
  95  
  96                  <fieldset class="fields1">
  97                  <dl>
  98                      <dt><label for="username">{L_USERNAME}{L_COLON}</label></dt>
  99                      <dd><input type="text" tabindex="1" name="username" id="username" size="25" value="{USERNAME}" class="inputbox autowidth" /></dd>
 100                  </dl>
 101                  <dl>
 102                      <dt><label for="password">{L_PASSWORD}{L_COLON}</label></dt>
 103                      <dd><input type="password" tabindex="2" id="password" name="password" size="25" class="inputbox autowidth" autocomplete="off" /></dd>
 104                      <!-- IF S_AUTOLOGIN_ENABLED --><dd><label for="autologin"><input type="checkbox" name="autologin" id="autologin" tabindex="3" /> {L_LOG_ME_IN}</label></dd><!-- ENDIF -->
 105                      <dd><label for="viewonline"><input type="checkbox" name="viewonline" id="viewonline" tabindex="4" /> {L_HIDE_ME}</label></dd>
 106                  </dl>
 107                  <dl>
 108                      <dt>&nbsp;</dt>
 109                      <dd><input type="submit" name="login" tabindex="5" value="{L_LOGIN}" class="button1" /></dd>
 110                  </dl>
 111                  {S_LOGIN_REDIRECT}
 112                  </fieldset>
 113              </div>
 114  
 115              </div>
 116          </div>
 117  
 118          </form>
 119  
 120      <!-- ENDIF -->
 121  
 122  <!-- ENDIF -->
 123  
 124  <!-- EVENT viewforum_body_topic_row_before -->
 125  
 126  <!-- BEGIN topicrow -->
 127  
 128      <!-- IF not topicrow.S_TOPIC_TYPE_SWITCH and not topicrow.S_FIRST_ROW -->
 129          </ul>
 130          </div>
 131      </div>
 132      <!-- ENDIF -->
 133  
 134      <!-- IF topicrow.S_FIRST_ROW or not topicrow.S_TOPIC_TYPE_SWITCH -->
 135          <div class="forumbg<!-- IF topicrow.S_TOPIC_TYPE_SWITCH and (topicrow.S_POST_ANNOUNCE or topicrow.S_POST_GLOBAL) --> announcement<!-- ENDIF -->">
 136          <div class="inner">
 137          <ul class="topiclist">
 138              <li class="header">
 139                  <dl class="icon">
 140                      <dt<!-- IF S_DISPLAY_ACTIVE --> id="active_topics"<!-- ENDIF -->><div class="list-inner"><!-- IF S_DISPLAY_ACTIVE -->{L_ACTIVE_TOPICS}<!-- ELSEIF topicrow.S_TOPIC_TYPE_SWITCH and (topicrow.S_POST_ANNOUNCE or topicrow.S_POST_GLOBAL) -->{L_ANNOUNCEMENTS}<!-- ELSE -->{L_TOPICS}<!-- ENDIF --></div></dt>
 141                      <dd class="posts">{L_REPLIES}</dd>
 142                      <dd class="views">{L_VIEWS}</dd>
 143                      <dd class="lastpost"><span>{L_LAST_POST}</span></dd>
 144                  </dl>
 145              </li>
 146          </ul>
 147          <ul class="topiclist topics">
 148      <!-- ENDIF -->
 149  
 150          <!-- EVENT viewforum_body_topicrow_row_before -->
 151          <li class="row<!-- IF topicrow.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF topicrow.S_POST_GLOBAL --> global-announce<!-- ENDIF --><!-- IF topicrow.S_POST_ANNOUNCE --> announce<!-- ENDIF --><!-- IF topicrow.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF topicrow.S_TOPIC_REPORTED --> reported<!-- ENDIF -->">
 152              <!-- EVENT viewforum_body_topic_row_prepend -->
 153              <dl class="icon {topicrow.TOPIC_IMG_STYLE}">
 154                  <dt<!-- IF topicrow.TOPIC_ICON_IMG and S_TOPIC_ICONS --> style="background-image: url({T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF --> title="{topicrow.TOPIC_FOLDER_IMG_ALT}">
 155                      <!-- IF topicrow.S_UNREAD_TOPIC and not S_IS_BOT --><a href="{topicrow.U_NEWEST_POST}" class="icon-link"></a><!-- ENDIF -->
 156                      <div class="list-inner">
 157                          <!-- EVENT topiclist_row_prepend -->
 158                          <!-- IF topicrow.S_UNREAD_TOPIC and not S_IS_BOT --><a href="{topicrow.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a>
 159                          <!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED --><a href="{topicrow.U_MCP_QUEUE}">{topicrow.UNAPPROVED_IMG}</a> <!-- ENDIF -->
 160                          <!-- IF topicrow.S_TOPIC_DELETED --><a href="{topicrow.U_MCP_QUEUE}">{DELETED_IMG}</a> <!-- ENDIF -->
 161                          <!-- IF topicrow.S_TOPIC_REPORTED --><a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a><!-- ENDIF --><br />
 162                          <!-- EVENT topiclist_row_topic_title_after -->
 163                          <!-- IF not S_IS_BOT -->
 164                          <div class="responsive-show" style="display: none;">
 165                              {L_LAST_POST} {L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL} &laquo; <a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}">{topicrow.LAST_POST_TIME}</a>
 166                              <!-- IF topicrow.S_POST_GLOBAL and FORUM_ID != topicrow.FORUM_ID --><br />{L_POSTED} {L_IN} <a href="{topicrow.U_VIEW_FORUM}">{topicrow.FORUM_NAME}</a><!-- ENDIF -->
 167                          </div>
 168                          <!-- IF topicrow.REPLIES --><span class="responsive-show left-box" style="display: none;">{L_REPLIES}{L_COLON} <strong>{topicrow.REPLIES}</strong></span><!-- ENDIF -->
 169                          <!-- ENDIF -->
 170  
 171                          <!-- IF .topicrow.pagination -->
 172                          <div class="pagination">
 173                              <ul>
 174                              <!-- BEGIN pagination -->
 175                                  <!-- IF topicrow.pagination.S_IS_PREV -->
 176                                  <!-- ELSEIF topicrow.pagination.S_IS_CURRENT --><li class="active"><span>{topicrow.pagination.PAGE_NUMBER}</span></li>
 177                                  <!-- ELSEIF topicrow.pagination.S_IS_ELLIPSIS --><li class="ellipsis"><span>{L_ELLIPSIS}</span></li>
 178                                  <!-- ELSEIF topicrow.pagination.S_IS_NEXT -->
 179                                  <!-- ELSE --><li><a href="{topicrow.pagination.PAGE_URL}">{topicrow.pagination.PAGE_NUMBER}</a></li>
 180                                  <!-- ENDIF -->
 181                              <!-- END pagination -->
 182                              </ul>
 183                          </div>
 184                          <!-- ENDIF -->
 185  
 186                          <div class="responsive-hide">
 187                              <!-- IF topicrow.S_HAS_POLL -->{POLL_IMG} <!-- ENDIF -->
 188                              <!-- IF topicrow.ATTACH_ICON_IMG -->{topicrow.ATTACH_ICON_IMG} <!-- ENDIF -->
 189                              {L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} &raquo; {topicrow.FIRST_POST_TIME}
 190                              <!-- IF topicrow.S_POST_GLOBAL and FORUM_ID != topicrow.FORUM_ID --> &raquo; {L_IN} <a href="{topicrow.U_VIEW_FORUM}">{topicrow.FORUM_NAME}</a><!-- ENDIF -->
 191                          </div>
 192  
 193                          <!-- EVENT topiclist_row_append -->
 194                      </div>
 195                  </dt>
 196                  <dd class="posts">{topicrow.REPLIES} <dfn>{L_REPLIES}</dfn></dd>
 197                  <dd class="views">{topicrow.VIEWS} <dfn>{L_VIEWS}</dfn></dd>
 198                  <dd class="lastpost"><span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL}
 199                      <!-- IF not S_IS_BOT --><a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}">{LAST_POST_IMG}</a> <!-- ENDIF --><br />{topicrow.LAST_POST_TIME}</span>
 200                  </dd>
 201              </dl>
 202              <!-- EVENT viewforum_body_topic_row_append -->
 203          </li>
 204          <!-- EVENT viewforum_body_topic_row_after -->
 205  
 206      <!-- IF topicrow.S_LAST_ROW -->
 207              </ul>
 208          </div>
 209      </div>
 210      <!-- ENDIF -->
 211  
 212  <!-- BEGINELSE -->
 213      <!-- IF S_IS_POSTABLE -->
 214      <div class="panel">
 215          <div class="inner">
 216          <strong>{L_NO_TOPICS}</strong>
 217          </div>
 218      </div>
 219      <!-- ENDIF -->
 220  <!-- END topicrow -->
 221  
 222  <!-- IF S_SELECT_SORT_DAYS and not S_DISPLAY_ACTIVE -->
 223      <form method="post" action="{S_FORUM_ACTION}">
 224          <fieldset class="display-options">
 225      <!-- IF not S_IS_BOT -->
 226              <label>{L_DISPLAY_TOPICS}{L_COLON} {S_SELECT_SORT_DAYS}</label>
 227              <label>{L_SORT_BY} {S_SELECT_SORT_KEY}</label>
 228              <label>{S_SELECT_SORT_DIR}</label>
 229              <input type="submit" name="sort" value="{L_GO}" class="button2" />
 230      <!-- ENDIF -->
 231          </fieldset>
 232      </form>
 233      <hr />
 234  <!-- ENDIF -->
 235  
 236  <!-- IF .topicrow and not S_DISPLAY_ACTIVE -->
 237      <div class="action-bar bottom">
 238          <!-- IF not S_IS_BOT and S_DISPLAY_POST_INFO -->
 239              <div class="buttons">
 240                  <!-- EVENT viewforum_buttons_bottom_before -->
 241  
 242                  <a href="{U_POST_NEW_TOPIC}" class="button icon-button <!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->post-icon<!-- ENDIF -->" title="<!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF -->">
 243                      <!-- IF S_IS_LOCKED -->{L_BUTTON_FORUM_LOCKED}<!-- ELSE -->{L_BUTTON_NEW_TOPIC}<!-- ENDIF -->
 244                  </a>
 245  
 246                  <!-- EVENT viewforum_buttons_bottom_after -->
 247              </div>
 248          <!-- ENDIF -->
 249  
 250          <div class="pagination">
 251              <!-- IF not S_IS_BOT and U_MARK_TOPICS and .topicrow --><a href="{U_MARK_TOPICS}" data-ajax="mark_topics_read">{L_MARK_TOPICS_READ}</a> &bull; <!-- ENDIF -->
 252              {TOTAL_TOPICS}
 253              <!-- IF .pagination -->
 254                  <!-- INCLUDE pagination.html -->
 255              <!-- ELSE -->
 256                   &bull; {PAGE_NUMBER}
 257              <!-- ENDIF -->
 258          </div>
 259      </div>
 260  <!-- ENDIF -->
 261  
 262  <!-- INCLUDE jumpbox.html -->
 263  
 264  <!-- IF S_DISPLAY_ONLINE_LIST and U_VIEWONLINE -->
 265      <div class="stat-block online-list">
 266          <h3><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></h3>
 267          <p>{LOGGED_IN_USER_LIST}</p>
 268      </div>
 269  <!-- ENDIF -->
 270  
 271  <!-- IF S_DISPLAY_POST_INFO -->
 272      <div class="stat-block permissions">
 273          <h3>{L_FORUM_PERMISSIONS}</h3>
 274          <p><!-- BEGIN rules -->{rules.RULE}<br /><!-- END rules --></p>
 275      </div>
 276  <!-- ENDIF -->
 277  
 278  <!-- INCLUDE overall_footer.html -->


Generated: Thu Jan 11 00:25:41 2018 Cross-referenced by PHPXref 0.7.1