Verzeichnisstruktur phpBB-3.2.0
- Veröffentlicht
- 06.01.2017
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. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
viewforum_body.html
001 <!-- INCLUDE overall_header.html -->
002 <!-- EVENT viewforum_forum_title_before -->
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 <!-- EVENT viewforum_forum_title_after -->
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 bar-top">
039
040 <!-- IF not S_IS_BOT and S_DISPLAY_POST_INFO -->
041 <!-- EVENT viewforum_buttons_top_before -->
042
043 <a href="{U_POST_NEW_TOPIC}" class="button" title="<!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF -->">
044 <!-- IF S_IS_LOCKED -->
045 <span>{L_BUTTON_FORUM_LOCKED}</span> <i class="icon fa-lock fa-fw" aria-hidden="true"></i>
046 <!-- ELSE -->
047 <span>{L_BUTTON_NEW_TOPIC}</span> <i class="icon fa-pencil fa-fw" aria-hidden="true"></i>
048 <!-- ENDIF -->
049 </a>
050 <!-- EVENT viewforum_buttons_top_after -->
051 <!-- ENDIF -->
052
053 <!-- IF S_DISPLAY_SEARCHBOX -->
054 <div class="search-box" role="search">
055 <form method="get" id="forum-search" action="{S_SEARCHBOX_ACTION}">
056 <fieldset>
057 <input class="inputbox search tiny" type="search" name="keywords" id="search_keywords" size="20" placeholder="{L_SEARCH_FORUM}" />
058 <button class="button button-search" type="submit" title="{L_SEARCH}">
059 <i class="icon fa-search fa-fw" aria-hidden="true"></i><span class="sr-only">{L_SEARCH}</span>
060 </button>
061 <a href="{U_SEARCH}" class="button button-search-end" title="{L_SEARCH_ADV}">
062 <i class="icon fa-cog fa-fw" aria-hidden="true"></i><span class="sr-only">{L_SEARCH_ADV}</span>
063 </a>
064 {S_SEARCH_LOCAL_HIDDEN_FIELDS}
065 </fieldset>
066 </form>
067 </div>
068 <!-- ENDIF -->
069
070 <div class="pagination">
071 <!-- 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> • <!-- ENDIF -->
072 {TOTAL_TOPICS}
073 <!-- IF .pagination -->
074 <!-- INCLUDE pagination.html -->
075 <!-- ELSE -->
076 • {PAGE_NUMBER}
077 <!-- ENDIF -->
078 </div>
079
080 </div>
081 <!-- ENDIF -->
082
083 <!-- IF S_NO_READ_ACCESS -->
084
085 <div class="panel">
086 <div class="inner">
087 <strong>{L_NO_READ_ACCESS}</strong>
088 </div>
089 </div>
090
091 <!-- IF not S_USER_LOGGED_IN and not S_IS_BOT -->
092
093 <form action="{S_LOGIN_ACTION}" method="post">
094
095 <div class="panel">
096 <div class="inner">
097
098 <div class="content">
099 <h3><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a><!-- IF S_REGISTER_ENABLED --> • <a href="{U_REGISTER}">{L_REGISTER}</a><!-- ENDIF --></h3>
100
101 <fieldset class="fields1">
102 <dl>
103 <dt><label for="username">{L_USERNAME}{L_COLON}</label></dt>
104 <dd><input type="text" tabindex="1" name="username" id="username" size="25" value="{USERNAME}" class="inputbox autowidth" /></dd>
105 </dl>
106 <dl>
107 <dt><label for="password">{L_PASSWORD}{L_COLON}</label></dt>
108 <dd><input type="password" tabindex="2" id="password" name="password" size="25" class="inputbox autowidth" autocomplete="off" /></dd>
109 <!-- IF S_AUTOLOGIN_ENABLED --><dd><label for="autologin"><input type="checkbox" name="autologin" id="autologin" tabindex="3" /> {L_LOG_ME_IN}</label></dd><!-- ENDIF -->
110 <dd><label for="viewonline"><input type="checkbox" name="viewonline" id="viewonline" tabindex="4" /> {L_HIDE_ME}</label></dd>
111 </dl>
112 <dl>
113 <dt> </dt>
114 <dd><input type="submit" name="login" tabindex="5" value="{L_LOGIN}" class="button1" /></dd>
115 </dl>
116 {S_LOGIN_REDIRECT}
117 </fieldset>
118 </div>
119
120 </div>
121 </div>
122
123 </form>
124
125 <!-- ENDIF -->
126
127 <!-- ENDIF -->
128
129 <!-- EVENT viewforum_body_topic_row_before -->
130
131 <!-- BEGIN topicrow -->
132
133 <!-- IF not topicrow.S_TOPIC_TYPE_SWITCH and not topicrow.S_FIRST_ROW -->
134 </ul>
135 </div>
136 </div>
137 <!-- ENDIF -->
138
139 <!-- IF topicrow.S_FIRST_ROW or not topicrow.S_TOPIC_TYPE_SWITCH -->
140 <div class="forumbg<!-- IF topicrow.S_TOPIC_TYPE_SWITCH and (topicrow.S_POST_ANNOUNCE or topicrow.S_POST_GLOBAL) --> announcement<!-- ENDIF -->">
141 <div class="inner">
142 <ul class="topiclist">
143 <li class="header">
144 <dl class="row-item">
145 <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>
146 <dd class="posts">{L_REPLIES}</dd>
147 <dd class="views">{L_VIEWS}</dd>
148 <dd class="lastpost"><span>{L_LAST_POST}</span></dd>
149 </dl>
150 </li>
151 </ul>
152 <ul class="topiclist topics">
153 <!-- ENDIF -->
154
155 <!-- EVENT viewforum_body_topicrow_row_before -->
156 <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 -->">
157 <!-- EVENT viewforum_body_topic_row_prepend -->
158 <dl class="row-item {topicrow.TOPIC_IMG_STYLE}">
159 <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}">
160 <!-- IF topicrow.S_UNREAD_TOPIC and not S_IS_BOT --><a href="{topicrow.U_NEWEST_POST}" class="row-item-link"></a><!-- ENDIF -->
161 <div class="list-inner">
162 <!-- EVENT topiclist_row_prepend -->
163 <!-- IF topicrow.S_UNREAD_TOPIC and not S_IS_BOT -->
164 <a class="unread" href="{topicrow.U_NEWEST_POST}">
165 <i class="icon fa-file fa-fw icon-red icon-md" aria-hidden="true"></i><span class="sr-only">{NEW_POST}</span>
166 </a>
167 <!-- ENDIF -->
168 <a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a>
169 <!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED -->
170 <a href="{topicrow.U_MCP_QUEUE}" title="{L_TOPIC_UNAPPROVED}">
171 <i class="icon fa-question fa-fw icon-blue" aria-hidden="true"></i><span class="sr-only">{L_TOPIC_UNAPPROVED}</span>
172 </a>
173 <!-- ENDIF -->
174 <!-- IF topicrow.S_TOPIC_DELETED -->
175 <a href="{topicrow.U_MCP_QUEUE}" title="{L_TOPIC_DELETED}">
176 <i class="icon fa-recycle fa-fw icon-green" aria-hidden="true"></i><span class="sr-only">{L_TOPIC_DELETED}</span>
177 </a>
178 <!-- ENDIF -->
179 <!-- IF topicrow.S_TOPIC_REPORTED -->
180 <a href="{topicrow.U_MCP_REPORT}" title="{L_TOPIC_REPORTED}">
181 <i class="icon fa-exclamation fa-fw icon-red" aria-hidden="true"></i><span class="sr-only">{L_TOPIC_REPORTED}</span>
182 </a>
183 <!-- ENDIF -->
184 <br />
185 <!-- EVENT topiclist_row_topic_title_after -->
186
187 <!-- IF not S_IS_BOT -->
188 <div class="responsive-show" style="display: none;">
189 {L_LAST_POST} {L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL} « <a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}">{topicrow.LAST_POST_TIME}</a>
190 <!-- 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 -->
191 </div>
192 <!-- IF topicrow.REPLIES --><span class="responsive-show left-box" style="display: none;">{L_REPLIES}{L_COLON} <strong>{topicrow.REPLIES}</strong></span><!-- ENDIF -->
193 <!-- ENDIF -->
194
195 <div class="topic-poster responsive-hide">
196 <!-- IF topicrow.S_HAS_POLL --><i class="icon fa-bar-chart fa-fw" aria-hidden="true"></i><!-- ENDIF -->
197 <!-- IF topicrow.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw" aria-hidden="true"></i><!-- ENDIF -->
198 {L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} » {topicrow.FIRST_POST_TIME}
199 <!-- IF topicrow.S_POST_GLOBAL and FORUM_ID != topicrow.FORUM_ID --> » {L_IN} <a href="{topicrow.U_VIEW_FORUM}">{topicrow.FORUM_NAME}</a><!-- ENDIF -->
200 </div>
201
202 <!-- IF .topicrow.pagination -->
203 <div class="pagination">
204 <span><i class="icon fa-clone fa-fw" aria-hidden="true"></i></span>
205 <ul>
206 <!-- BEGIN pagination -->
207 <!-- IF topicrow.pagination.S_IS_PREV -->
208 <!-- ELSEIF topicrow.pagination.S_IS_CURRENT --><li class="active"><span>{topicrow.pagination.PAGE_NUMBER}</span></li>
209 <!-- ELSEIF topicrow.pagination.S_IS_ELLIPSIS --><li class="ellipsis"><span>{L_ELLIPSIS}</span></li>
210 <!-- ELSEIF topicrow.pagination.S_IS_NEXT -->
211 <!-- ELSE --><li><a class="button" href="{topicrow.pagination.PAGE_URL}">{topicrow.pagination.PAGE_NUMBER}</a></li>
212 <!-- ENDIF -->
213 <!-- END pagination -->
214 </ul>
215 </div>
216 <!-- ENDIF -->
217
218 <!-- EVENT topiclist_row_append -->
219 </div>
220 </dt>
221 <dd class="posts">{topicrow.REPLIES} <dfn>{L_REPLIES}</dfn></dd>
222 <dd class="views">{topicrow.VIEWS} <dfn>{L_VIEWS}</dfn></dd>
223 <dd class="lastpost">
224 <span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL}
225 <!-- IF not S_IS_BOT -->
226 <a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}">
227 <i class="icon fa-external-link-square fa-fw icon-lightgray icon-md" aria-hidden="true"></i><span class="sr-only">{VIEW_LATEST_POST}</span>
228 </a>
229 <!-- ENDIF -->
230 <br />{topicrow.LAST_POST_TIME}
231 </span>
232 </dd>
233 </dl>
234 <!-- EVENT viewforum_body_topic_row_append -->
235 </li>
236 <!-- EVENT viewforum_body_topic_row_after -->
237
238 <!-- IF topicrow.S_LAST_ROW -->
239 </ul>
240 </div>
241 </div>
242 <!-- ENDIF -->
243
244 <!-- BEGINELSE -->
245 <!-- IF S_IS_POSTABLE -->
246 <div class="panel">
247 <div class="inner">
248 <strong>{L_NO_TOPICS}</strong>
249 </div>
250 </div>
251 <!-- ENDIF -->
252 <!-- END topicrow -->
253
254 <!-- IF .topicrow and not S_DISPLAY_ACTIVE -->
255 <div class="action-bar bar-bottom">
256 <!-- IF not S_IS_BOT and S_DISPLAY_POST_INFO -->
257 <!-- EVENT viewforum_buttons_bottom_before -->
258
259 <a href="{U_POST_NEW_TOPIC}" class="button" title="<!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF -->">
260 <!-- IF S_IS_LOCKED -->
261 <span>{L_BUTTON_FORUM_LOCKED}</span> <i class="icon fa-lock fa-fw" aria-hidden="true"></i>
262 <!-- ELSE -->
263 <span>{L_BUTTON_NEW_TOPIC}</span> <i class="icon fa-pencil fa-fw" aria-hidden="true"></i>
264 <!-- ENDIF -->
265 </a>
266
267 <!-- EVENT viewforum_buttons_bottom_after -->
268 <!-- ENDIF -->
269
270 <!-- IF S_SELECT_SORT_DAYS and not S_IS_BOT -->
271 <form method="post" action="{S_FORUM_ACTION}">
272 <!-- INCLUDE display_options.html -->
273 </form>
274 <!-- ENDIF -->
275
276 <div class="pagination">
277 <!-- 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> • <!-- ENDIF -->
278 {TOTAL_TOPICS}
279 <!-- IF .pagination -->
280 <!-- INCLUDE pagination.html -->
281 <!-- ELSE -->
282 • {PAGE_NUMBER}
283 <!-- ENDIF -->
284 </div>
285 </div>
286 <!-- ENDIF -->
287
288 <!-- INCLUDE jumpbox.html -->
289
290 <!-- IF S_DISPLAY_ONLINE_LIST -->
291 <div class="stat-block online-list">
292 <h3><!-- IF U_VIEWONLINE --><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a><!-- ELSE -->{L_WHO_IS_ONLINE}<!-- ENDIF --></h3>
293 <p>{LOGGED_IN_USER_LIST}</p>
294 </div>
295 <!-- ENDIF -->
296
297 <!-- IF S_DISPLAY_POST_INFO -->
298 <div class="stat-block permissions">
299 <h3>{L_FORUM_PERMISSIONS}</h3>
300 <p><!-- BEGIN rules -->{rules.RULE}<br /><!-- END rules --></p>
301 </div>
302 <!-- ENDIF -->
303
304 <!-- INCLUDE overall_footer.html -->
305