Verzeichnisstruktur phpBB-3.1.0


Veröffentlicht
27.10.2014

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

viewforum_body.html

Zuletzt modifiziert: 09.10.2024, 12:54 - Dateigröße: 10.90 KiB


001  <!-- INCLUDE overall_header.html -->
002   
003  <h2 class="forum-title"><!-- EVENT viewforum_forum_name_prepend --><a href="{U_VIEW_FORUM}">{FORUM_NAME}</a><!-- EVENT viewforum_forum_name_append --></h2>
004   
005  <!-- IF FORUM_DESC or MODERATORS or U_MCP -->
006  <div>
007      <!-- NOTE: remove the style="display: none" when you want to have the forum description on the forum body -->
008      <!-- IF FORUM_DESC --><div style="display: none !important;">{FORUM_DESC}<br /></div><!-- ENDIF -->
009      <!-- IF MODERATORS --><p><strong><!-- IF S_SINGLE_MODERATOR -->{L_MODERATOR}<!-- ELSE -->{L_MODERATORS}<!-- ENDIF -->{L_COLON}</strong> {MODERATORS}</p><!-- ENDIF -->
010  </div>
011  <!-- ENDIF -->
012   
013  <!-- IF S_FORUM_RULES -->
014      <div class="rules<!-- IF U_FORUM_RULES --> rules-link<!-- ENDIF -->">
015          <div class="inner">
016   
017          <!-- IF U_FORUM_RULES -->
018              <a href="{U_FORUM_RULES}">{L_FORUM_RULES}</a>
019          <!-- ELSE -->
020              <strong>{L_FORUM_RULES}</strong><br />
021              {FORUM_RULES}
022          <!-- ENDIF -->
023   
024          </div>
025      </div>
026  <!-- ENDIF -->
027   
028  <!-- IF S_HAS_SUBFORUM -->
029  <!-- IF not S_IS_BOT and U_MARK_FORUMS -->
030      <div class="action-bar compact">
031          <a href="{U_MARK_FORUMS}" class="mark-read rightside" data-ajax="mark_forums_read">{L_MARK_SUBFORUMS_READ}</a>
032      </div>
033  <!-- ENDIF -->
034      <!-- INCLUDE forumlist_body.html -->
035  <!-- ENDIF -->
036   
037  <!-- IF S_DISPLAY_POST_INFO or .pagination or TOTAL_POSTS or TOTAL_TOPICS -->
038      <div class="action-bar top">
039   
040      <!-- IF not S_IS_BOT and S_DISPLAY_POST_INFO -->
041          <div class="buttons">
042              <!-- EVENT viewforum_buttons_top_before -->
043   
044              <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 -->">
045                  <!-- IF S_IS_LOCKED -->{L_BUTTON_FORUM_LOCKED}<!-- ELSE -->{L_BUTTON_NEW_TOPIC}<!-- ENDIF -->
046              </a>
047   
048              <!-- EVENT viewforum_buttons_top_after -->
049          </div>
050      <!-- ENDIF -->
051   
052      <!-- IF S_DISPLAY_SEARCHBOX -->
053          <div class="search-box">
054              <form method="get" id="forum-search" action="{S_SEARCHBOX_ACTION}">
055              <fieldset>
056                  <input class="inputbox search tiny" type="search" name="keywords" id="search_keywords" size="20" placeholder="{L_SEARCH_FORUM}" />
057                  <button class="button icon-button search-icon" type="submit" title="{L_SEARCH}">{L_SEARCH}</button>
058                  <a href="{U_SEARCH}" class="button icon-button search-adv-icon" title="{L_SEARCH_ADV}">{L_SEARCH_ADV}</a>
059                  {S_SEARCH_LOCAL_HIDDEN_FIELDS}
060              </fieldset>
061              </form>
062          </div>
063      <!-- ENDIF -->
064   
065      <div class="pagination">
066          <!-- 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 -->
067          {TOTAL_TOPICS}
068          <!-- IF .pagination -->
069              <!-- INCLUDE pagination.html -->
070          <!-- ELSE -->
071              &bull; {PAGE_NUMBER}
072          <!-- ENDIF -->
073      </div>
074   
075      </div>
076  <!-- ENDIF -->
077   
078  <!-- IF S_NO_READ_ACCESS -->
079   
080      <div class="panel">
081          <div class="inner">
082          <strong>{L_NO_READ_ACCESS}</strong>
083          </div>
084      </div>
085   
086      <!-- IF not S_USER_LOGGED_IN and not S_IS_BOT -->
087   
088          <form action="{S_LOGIN_ACTION}" method="post">
089   
090          <div class="panel">
091              <div class="inner">
092   
093              <div class="content">
094                  <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>
095   
096                  <fieldset class="fields1">
097                  <dl>
098                      <dt><label for="username">{L_USERNAME}{L_COLON}</label></dt>
099                      <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" /></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  <!-- BEGIN topicrow -->
125   
126      <!-- IF not topicrow.S_TOPIC_TYPE_SWITCH and not topicrow.S_FIRST_ROW -->
127          </ul>
128          </div>
129      </div>
130      <!-- ENDIF -->
131   
132      <!-- IF topicrow.S_FIRST_ROW or not topicrow.S_TOPIC_TYPE_SWITCH -->
133          <div class="forumbg<!-- IF topicrow.S_TOPIC_TYPE_SWITCH and (topicrow.S_POST_ANNOUNCE or topicrow.S_POST_GLOBAL) --> announcement<!-- ENDIF -->">
134          <div class="inner">
135          <ul class="topiclist">
136              <li class="header">
137                  <dl class="icon">
138                      <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>
139                      <dd class="posts">{L_REPLIES}</dd>
140                      <dd class="views">{L_VIEWS}</dd>
141                      <dd class="lastpost"><span>{L_LAST_POST}</span></dd>
142                  </dl>
143              </li>
144          </ul>
145          <ul class="topiclist topics">
146      <!-- ENDIF -->
147   
148          <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 -->">
149              <dl class="icon {topicrow.TOPIC_IMG_STYLE}">
150                  <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}">
151                      <!-- IF topicrow.S_UNREAD_TOPIC and not S_IS_BOT --><a href="{topicrow.U_NEWEST_POST}" class="icon-link"></a><!-- ENDIF -->
152                      <div class="list-inner">
153                          <!-- EVENT topiclist_row_prepend -->
154                          <!-- 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>
155                          <!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED --><a href="{topicrow.U_MCP_QUEUE}">{topicrow.UNAPPROVED_IMG}</a> <!-- ENDIF -->
156                          <!-- IF topicrow.S_TOPIC_DELETED --><a href="{topicrow.U_MCP_QUEUE}">{DELETED_IMG}</a> <!-- ENDIF -->
157                          <!-- IF topicrow.S_TOPIC_REPORTED --><a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a><!-- ENDIF --><br />
158   
159                          <!-- IF not S_IS_BOT -->
160                          <div class="responsive-show" style="display: none;">
161                              {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>
162                              <!-- 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 -->
163                          </div>
164                          <!-- IF topicrow.REPLIES --><span class="responsive-show left-box" style="display: none;">{L_REPLIES}{L_COLON} <strong>{topicrow.REPLIES}</strong></span><!-- ENDIF -->
165                          <!-- ENDIF -->
166   
167                          <!-- IF .topicrow.pagination -->
168                          <div class="pagination">
169                              <ul>
170                              <!-- BEGIN pagination -->
171                                  <!-- IF topicrow.pagination.S_IS_PREV -->
172                                  <!-- ELSEIF topicrow.pagination.S_IS_CURRENT --><li class="active"><span>{topicrow.pagination.PAGE_NUMBER}</span></li>
173                                  <!-- ELSEIF topicrow.pagination.S_IS_ELLIPSIS --><li class="ellipsis"><span>{L_ELLIPSIS}</span></li>
174                                  <!-- ELSEIF topicrow.pagination.S_IS_NEXT -->
175                                  <!-- ELSE --><li><a href="{topicrow.pagination.PAGE_URL}">{topicrow.pagination.PAGE_NUMBER}</a></li>
176                                  <!-- ENDIF -->
177                              <!-- END pagination -->
178                              </ul>
179                          </div>
180                          <!-- ENDIF -->
181   
182                          <div class="responsive-hide">
183                              <!-- IF topicrow.S_HAS_POLL -->{POLL_IMG} <!-- ENDIF -->
184                              <!-- IF topicrow.ATTACH_ICON_IMG -->{topicrow.ATTACH_ICON_IMG} <!-- ENDIF -->
185                              {L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} &raquo; {topicrow.FIRST_POST_TIME}
186                              <!-- 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 -->
187                          </div>
188   
189                          <!-- EVENT topiclist_row_append -->
190                      </div>
191                  </dt>
192                  <dd class="posts">{topicrow.REPLIES} <dfn>{L_REPLIES}</dfn></dd>
193                  <dd class="views">{topicrow.VIEWS} <dfn>{L_VIEWS}</dfn></dd>
194                  <dd class="lastpost"><span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL}
195                      <!-- 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>
196                  </dd>
197              </dl>
198          </li>
199   
200      <!-- IF topicrow.S_LAST_ROW -->
201              </ul>
202          </div>
203      </div>
204      <!-- ENDIF -->
205   
206  <!-- BEGINELSE -->
207      <!-- IF S_IS_POSTABLE -->
208      <div class="panel">
209          <div class="inner">
210          <strong>{L_NO_TOPICS}</strong>
211          </div>
212      </div>
213      <!-- ENDIF -->
214  <!-- END topicrow -->
215   
216  <!-- IF S_SELECT_SORT_DAYS and not S_DISPLAY_ACTIVE -->
217      <form method="post" action="{S_FORUM_ACTION}">
218          <fieldset class="display-options">
219      <!-- IF not S_IS_BOT -->
220              <label>{L_DISPLAY_TOPICS}{L_COLON} {S_SELECT_SORT_DAYS}</label>
221              <label>{L_SORT_BY} {S_SELECT_SORT_KEY}</label>
222              <label>{S_SELECT_SORT_DIR}</label>
223              <input type="submit" name="sort" value="{L_GO}" class="button2" />
224      <!-- ENDIF -->
225          </fieldset>
226      </form>
227      <hr />
228  <!-- ENDIF -->
229   
230  <!-- IF .topicrow and not S_DISPLAY_ACTIVE -->
231      <div class="action-bar bottom">
232          <!-- IF not S_IS_BOT and S_DISPLAY_POST_INFO -->
233              <div class="buttons">
234                  <!-- EVENT viewforum_buttons_bottom_before -->
235   
236                  <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 -->">
237                      <!-- IF S_IS_LOCKED -->{L_BUTTON_FORUM_LOCKED}<!-- ELSE -->{L_BUTTON_NEW_TOPIC}<!-- ENDIF -->
238                  </a>
239   
240                  <!-- EVENT viewforum_buttons_bottom_after -->
241              </div>
242          <!-- ENDIF -->
243   
244          <div class="pagination">
245              <!-- 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 -->
246              {TOTAL_TOPICS}
247              <!-- IF .pagination -->
248                  <!-- INCLUDE pagination.html -->
249              <!-- ELSE -->
250                   &bull; {PAGE_NUMBER}
251              <!-- ENDIF -->
252          </div>
253      </div>
254  <!-- ENDIF -->
255   
256  <!-- INCLUDE jumpbox.html -->
257   
258  <!-- IF S_DISPLAY_ONLINE_LIST -->
259      <div class="stat-block online-list">
260          <h3><!-- IF U_VIEWONLINE --><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a><!-- ELSE -->{L_WHO_IS_ONLINE}<!-- ENDIF --></h3>
261          <p>{LOGGED_IN_USER_LIST}</p>
262      </div>
263  <!-- ENDIF -->
264   
265  <!-- IF S_DISPLAY_POST_INFO -->
266      <div class="stat-block permissions">
267          <h3>{L_FORUM_PERMISSIONS}</h3>
268          <p><!-- BEGIN rules -->{rules.RULE}<br /><!-- END rules --></p>
269      </div>
270  <!-- ENDIF -->
271   
272  <!-- INCLUDE overall_footer.html -->
273