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 |
mcp_warn_list.html
01 <!-- INCLUDE mcp_header.html -->
02
03 <form method="post" id="mcp" action="{U_POST_ACTION}">
04
05 <h2>{L_WARNED_USERS}</h2>
06
07 <div class="panel">
08 <div class="inner">
09
10 <p>{L_WARNED_USERS_EXPLAIN}</p>
11
12 <!-- IF .user -->
13 <div class="action-bar top">
14 <div class="pagination">
15 {TOTAL_USERS}
16 <!-- IF .pagination -->
17 <!-- INCLUDE pagination.html -->
18 <!-- ELSE -->
19 • {PAGE_NUMBER}
20 <!-- ENDIF -->
21 </div>
22 </div>
23
24 <table class="table1">
25 <thead>
26 <tr>
27 <th class="name">{L_USERNAME}</th>
28 <th class="name">{L_WARNINGS}</th>
29 <th class="name">{L_LATEST_WARNING_TIME}</th>
30 <th></th>
31 </tr>
32 </thead>
33 <tbody>
34
35 <!-- BEGIN user -->
36 <tr class="<!-- IF user.S_ROW_COUNT is even -->bg1<!-- ELSE -->bg2<!-- ENDIF -->">
37 <td>{user.USERNAME_FULL}</td>
38 <td>{user.WARNINGS}</td>
39 <td>{user.WARNING_TIME}</td>
40 <td><a href="{user.U_NOTES}">{L_VIEW_NOTES}</a></td>
41 </tr>
42 <!-- END user -->
43 </tbody>
44 </table>
45
46 <fieldset class="display-options">
47 <label>{L_DISPLAY_POSTS}{L_COLON} {S_SELECT_SORT_DAYS}</label>
48 <label>{L_SORT_BY} {S_SELECT_SORT_KEY}</label><label>{S_SELECT_SORT_DIR}</label>
49 <input type="submit" name="sort" value="{L_GO}" class="button2" />
50 </fieldset>
51
52 <hr />
53
54 <div class="action-bar bottom">
55 <div class="pagination">
56 {TOTAL_USERS}
57 <!-- IF .pagination -->
58 <!-- INCLUDE pagination.html -->
59 <!-- ELSE -->
60 • {PAGE_NUMBER}
61 <!-- ENDIF -->
62 </div>
63 </div>
64
65 <!-- ELSE -->
66 <p><strong>{L_NO_WARNINGS}</strong></p>
67 <!-- ENDIF -->
68
69 </div>
70
71 {S_FORM_TOKEN}
72 </div>
73
74 </form>
75
76 <!-- INCLUDE mcp_footer.html -->
77