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. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
acp_main.html
001 <!-- INCLUDE overall_header.html -->
002
003 <a id="maincontent"></a>
004
005 <!-- IF S_RESTORE_PERMISSIONS -->
006
007 <h1>{L_PERMISSIONS_TRANSFERRED}</h1>
008
009 <p>{L_PERMISSIONS_TRANSFERRED_EXPLAIN}</p>
010
011 <!-- ELSE -->
012
013 <h1>{L_WELCOME_PHPBB}</h1>
014
015 <p>{L_ADMIN_INTRO}</p>
016
017 <!-- IF S_VERSIONCHECK_FAIL -->
018 <div class="errorbox notice">
019 <p>{L_VERSIONCHECK_FAIL}</p>
020 <p>{VERSIONCHECK_FAIL_REASON}</p>
021 <p><a href="{U_VERSIONCHECK_FORCE}">{L_VERSIONCHECK_FORCE_UPDATE}</a> · <a href="{U_VERSIONCHECK}">{L_MORE_INFORMATION}</a></p>
022 </div>
023 <!-- ELSEIF not S_VERSION_UP_TO_DATE -->
024 <div class="errorbox">
025 <p>{L_VERSION_NOT_UP_TO_DATE_TITLE}</p>
026 <p><a href="{U_VERSIONCHECK_FORCE}">{L_VERSIONCHECK_FORCE_UPDATE}</a> · <a href="{U_VERSIONCHECK}">{L_MORE_INFORMATION}</a></p>
027 </div>
028 <!-- ENDIF -->
029
030 <!-- IF S_SEARCH_INDEX_MISSING -->
031 <div class="errorbox">
032 <h3>{L_WARNING}</h3>
033 <p>{L_NO_SEARCH_INDEX}</p>
034 </div>
035 <!-- ENDIF -->
036
037 <!-- IF S_REMOVE_INSTALL -->
038 <div class="errorbox">
039 <h3>{L_WARNING}</h3>
040 <p>{L_REMOVE_INSTALL}</p>
041 </div>
042 <!-- ENDIF -->
043
044 <!-- IF S_MBSTRING_LOADED -->
045 <!-- IF S_MBSTRING_FUNC_OVERLOAD_FAIL -->
046 <div class="errorbox">
047 <h3>{L_ERROR_MBSTRING_FUNC_OVERLOAD}</h3>
048 <p>{L_ERROR_MBSTRING_FUNC_OVERLOAD_EXPLAIN}</p>
049 </div>
050 <!-- ENDIF -->
051
052 <!-- IF S_MBSTRING_ENCODING_TRANSLATION_FAIL -->
053 <div class="errorbox">
054 <h3>{L_ERROR_MBSTRING_ENCODING_TRANSLATION}</h3>
055 <p>{L_ERROR_MBSTRING_ENCODING_TRANSLATION_EXPLAIN}</p>
056 </div>
057 <!-- ENDIF -->
058
059 <!-- IF S_MBSTRING_HTTP_INPUT_FAIL -->
060 <div class="errorbox">
061 <h3>{L_ERROR_MBSTRING_HTTP_INPUT}</h3>
062 <p>{L_ERROR_MBSTRING_HTTP_INPUT_EXPLAIN}</p>
063 </div>
064 <!-- ENDIF -->
065
066 <!-- IF S_MBSTRING_HTTP_OUTPUT_FAIL -->
067 <div class="errorbox">
068 <h3>{L_ERROR_MBSTRING_HTTP_OUTPUT}</h3>
069 <p>{L_ERROR_MBSTRING_HTTP_OUTPUT_EXPLAIN}</p>
070 </div>
071 <!-- ENDIF -->
072 <!-- ENDIF -->
073
074 <!-- IF S_WRITABLE_CONFIG -->
075 <div class="errorbox notice">
076 <p>{L_WRITABLE_CONFIG}</p>
077 </div>
078 <!-- ENDIF -->
079
080 <!-- IF S_PHP_VERSION_OLD -->
081 <div class="errorbox notice">
082 <p>{L_PHP_VERSION_OLD}</p>
083 </div>
084 <!-- ENDIF -->
085
086 <!-- EVENT acp_main_notice_after -->
087
088 <table class="table1 two-columns no-header" data-no-responsive-header="true">
089 <caption>{L_FORUM_STATS}</caption>
090 <col class="col1" /><col class="col2" /><col class="col1" /><col class="col2" />
091 <thead>
092 <tr>
093 <th>{L_STATISTIC}</th>
094 <th>{L_VALUE}</th>
095 <th>{L_STATISTIC}</th>
096 <th>{L_VALUE}</th>
097 </tr>
098 </thead>
099 <tbody>
100 <tr>
101 <td>{L_NUMBER_POSTS}{L_COLON} </td>
102 <td><strong>{TOTAL_POSTS}</strong></td>
103 <td>{L_POSTS_PER_DAY}{L_COLON} </td>
104 <td><strong>{POSTS_PER_DAY}</strong></td>
105 </tr>
106 <tr>
107 <td>{L_NUMBER_TOPICS}{L_COLON} </td>
108 <td><strong>{TOTAL_TOPICS}</strong></td>
109 <td>{L_TOPICS_PER_DAY}{L_COLON} </td>
110 <td><strong>{TOPICS_PER_DAY}</strong></td>
111 </tr>
112 <tr>
113 <td>{L_NUMBER_USERS}{L_COLON} </td>
114 <td><strong>{TOTAL_USERS}</strong></td>
115 <td>{L_USERS_PER_DAY}{L_COLON} </td>
116 <td><strong>{USERS_PER_DAY}</strong></td>
117 </tr>
118 <tr>
119 <td>{L_NUMBER_FILES}{L_COLON} </td>
120 <td><strong>{TOTAL_FILES}</strong></td>
121 <td>{L_FILES_PER_DAY}{L_COLON} </td>
122 <td><strong>{FILES_PER_DAY}</strong></td>
123 </tr>
124
125
126 <tr>
127 <td>{L_BOARD_STARTED}{L_COLON} </td>
128 <td><strong>{START_DATE}</strong></td>
129 <td>{L_AVATAR_DIR_SIZE}{L_COLON} </td>
130 <td><strong>{AVATAR_DIR_SIZE}</strong></td>
131 </tr>
132 <tr>
133 <td>{L_DATABASE_SIZE}{L_COLON} </td>
134 <td><strong>{DBSIZE}</strong></td>
135 <td>{L_UPLOAD_DIR_SIZE}{L_COLON} </td>
136 <td><strong>{UPLOAD_DIR_SIZE}</strong></td>
137 </tr>
138 <tr>
139 <td>{L_DATABASE_SERVER_INFO}{L_COLON} </td>
140 <td><strong>{DATABASE_INFO}</strong></td>
141 <td>{L_GZIP_COMPRESSION}{L_COLON} </td>
142 <td><strong>{GZIP_COMPRESSION}</strong></td>
143 </tr>
144 <tr>
145 <td>{L_BOARD_VERSION}{L_COLON} </td>
146 <td>
147 <strong><a href="{U_VERSIONCHECK}" <!-- IF S_VERSION_UP_TO_DATE -->style="color: #228822;"<!-- ELSE -->style="color: #BC2A4D;"<!-- ENDIF --> title="{L_MORE_INFORMATION}">{BOARD_VERSION}</a></strong> [ <a href="{U_VERSIONCHECK_FORCE}">{L_VERSIONCHECK_FORCE_UPDATE}</a> ]
148 </td>
149 <!-- IF S_TOTAL_ORPHAN -->
150 <td>{L_NUMBER_ORPHAN}{L_COLON} </td>
151 <td><strong>{TOTAL_ORPHAN}</strong></td>
152 <!-- ELSE -->
153 <td> </td>
154 <td> </td>
155 <!-- ENDIF -->
156 </tr>
157 </tbody>
158 </table>
159
160 <!-- IF S_ACTION_OPTIONS -->
161 <fieldset>
162 <legend>{L_STATISTIC_RESYNC_OPTIONS}</legend>
163
164 <form id="action_online_form" method="post" action="{U_ACTION}" data-ajax="true">
165 <dl>
166 <dt><label for="action_online">{L_RESET_ONLINE}</label><br /><span> </span></dt>
167 <dd><input type="hidden" name="action" value="online" /><input class="button2" type="submit" id="action_online" name="action_online" value="{L_RUN}" /></dd>
168 </dl>
169 </form>
170
171 <form id="action_date_form" method="post" action="{U_ACTION}" data-ajax="true">
172 <dl>
173 <dt><label for="action_date">{L_RESET_DATE}</label><br /><span> </span></dt>
174 <dd><input type="hidden" name="action" value="date" /><input class="button2" type="submit" id="action_date" name="action_date" value="{L_RUN}" /></dd>
175 </dl>
176 </form>
177
178 <form id="action_stats_form" method="post" action="{U_ACTION}">
179 <dl>
180 <dt><label for="action_stats">{L_RESYNC_STATS}</label><br /><span>{L_RESYNC_STATS_EXPLAIN}</span></dt>
181 <dd><input type="hidden" name="action" value="stats" /><input class="button2" type="submit" id="action_stats" name="action_stats" value="{L_RUN}" /></dd>
182 </dl>
183 </form>
184
185 <form id="action_user_form" method="post" action="{U_ACTION}">
186 <dl>
187 <dt><label for="action_user">{L_RESYNC_POSTCOUNTS}</label><br /><span>{L_RESYNC_POSTCOUNTS_EXPLAIN}</span></dt>
188 <dd><input type="hidden" name="action" value="user" /><input class="button2" type="submit" id="action_user" name="action_user" value="{L_RUN}" /></dd>
189 </dl>
190 </form>
191
192 <form id="action_db_track_form" method="post" action="{U_ACTION}">
193 <dl>
194 <dt><label for="action_db_track">{L_RESYNC_POST_MARKING}</label><br /><span>{L_RESYNC_POST_MARKING_EXPLAIN}</span></dt>
195 <dd><input type="hidden" name="action" value="db_track" /><input class="button2" type="submit" id="action_db_track" name="action_db_track" value="{L_RUN}" /></dd>
196 </dl>
197 </form>
198
199 <!-- IF S_FOUNDER -->
200 <form id="action_purge_sessions_form" method="post" action="{U_ACTION}" data-ajax="true">
201 <dl>
202 <dt><label for="action_purge_sessions">{L_PURGE_SESSIONS}</label><br /><span>{L_PURGE_SESSIONS_EXPLAIN}</span></dt>
203 <dd><input type="hidden" name="action" value="purge_sessions" /><input class="button2" type="submit" id="action_purge_sessions" name="action_purge_sessions" value="{L_RUN}" /></dd>
204 </dl>
205 </form>
206 <!-- ENDIF -->
207
208 <form id="action_purge_cache_form" method="post" action="{U_ACTION}" data-ajax="true">
209 <dl>
210 <dt><label for="action_purge_cache">{L_PURGE_CACHE}</label><br /><span>{L_PURGE_CACHE_EXPLAIN}</span></dt>
211 <dd><input type="hidden" name="action" value="purge_cache" /><input class="button2" type="submit" id="action_purge_cache" name="action_purge_cache" value="{L_RUN}" /></dd>
212 </dl>
213 </form>
214
215 <!-- EVENT acp_main_actions_append -->
216 </fieldset>
217 <!-- ENDIF -->
218
219 <!-- IF .log -->
220 <h2>{L_ADMIN_LOG}</h2>
221
222 <p>{L_ADMIN_LOG_INDEX_EXPLAIN}</p>
223
224 <div style="text-align: right;"><a href="{U_ADMIN_LOG}">» {L_VIEW_ADMIN_LOG}</a></div>
225
226 <table class="table1 zebra-table">
227 <thead>
228 <tr>
229 <th>{L_USERNAME}</th>
230 <th>{L_IP}</th>
231 <th>{L_TIME}</th>
232 <th>{L_ACTION}</th>
233 </tr>
234 </thead>
235 <tbody>
236 <!-- BEGIN log -->
237 <tr>
238 <td>{log.USERNAME}</td>
239 <td style="text-align: center;">{log.IP}</td>
240 <td style="text-align: center;">{log.DATE}</td>
241 <td>{log.ACTION}</td>
242 </tr>
243 <!-- END log -->
244 </tbody>
245 </table>
246 <!-- ENDIF -->
247
248 <!-- IF S_INACTIVE_USERS -->
249 <h2>{L_INACTIVE_USERS}</h2>
250
251 <p>{L_INACTIVE_USERS_EXPLAIN_INDEX}</p>
252
253 <div style="text-align: right;"><a href="{U_INACTIVE_USERS}">» {L_VIEW_INACTIVE_USERS}</a></div>
254
255 <table class="table1 zebra-table">
256 <thead>
257 <tr>
258 <th>{L_USERNAME}</th>
259 <th>{L_JOINED}</th>
260 <th>{L_INACTIVE_DATE}</th>
261 <th>{L_LAST_VISIT}</th>
262 <th>{L_INACTIVE_REASON}</th>
263 </tr>
264 </thead>
265 <tbody>
266 <!-- BEGIN inactive -->
267 <tr>
268 <td style="vertical-align: top;">
269 {inactive.USERNAME_FULL}
270 <!-- IF inactive.POSTS --><br />{L_POSTS}{L_COLON} <strong>{inactive.POSTS}</strong> [<a href="{inactive.U_SEARCH_USER}">{L_SEARCH_USER_POSTS}</a>]<!-- ENDIF -->
271 </td>
272 <td style="vertical-align: top;">{inactive.JOINED}</td>
273 <td style="vertical-align: top;">{inactive.INACTIVE_DATE}</td>
274 <td style="vertical-align: top;">{inactive.LAST_VISIT}</td>
275 <td style="vertical-align: top;">
276 {inactive.REASON}
277 <!-- IF inactive.REMINDED --><br />{inactive.REMINDED_EXPLAIN}<!-- ENDIF -->
278 </td>
279 </tr>
280 <!-- BEGINELSE -->
281 <tr>
282 <td colspan="5" style="text-align: center;">{L_NO_INACTIVE_USERS}</td>
283 </tr>
284 <!-- END inactive -->
285 </tbody>
286 </table>
287 <!-- ENDIF -->
288
289 <!-- ENDIF -->
290
291 <!-- INCLUDE overall_footer.html -->
292