Verzeichnisstruktur phpBB-3.0.0
- Veröffentlicht
- 12.12.2007
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_viewlogs.html
01 <!-- INCLUDE mcp_header.html -->
02
03 <form method="post" id="mcp" action="{S_MCP_ACTION}">
04
05 <table class="tablebg" width="100%" cellspacing="1" cellpadding="2" border="0">
06 <tr>
07 <th colspan="<!-- IF S_TOPIC_ID -->4<!-- ELSE -->5<!-- ENDIF -->" height="28" nowrap="nowrap">{L_DISPLAY_OPTIONS}</th>
08 </tr>
09 <tr>
10 <td colspan="<!-- IF S_TOPIC_ID -->4<!-- ELSE -->5<!-- ENDIF -->" class="cat" height="28" align="center"><span class="gensmall">{L_DISPLAY_LOG}:</span> {S_SELECT_SORT_DAYS} <span class="gensmall">{L_SORT_BY}</span> {S_SELECT_SORT_KEY} {S_SELECT_SORT_DIR} <input class="btnlite" type="submit" name="sort" value="{L_GO}" /></span></td>
11 </tr>
12 <tr>
13 <th width="15%" height="28" nowrap="nowrap">{L_USERNAME}</th>
14 <th width="12%" nowrap="nowrap">{L_IP}</th>
15 <th width="18%" nowrap="nowrap">{L_TIME}</th>
16 <th width="45%" nowrap="nowrap">{L_ACTION}</th>
17 <!-- IF not S_TOPIC_ID --><th width="8%" nowrap="nowrap"></th><!-- ENDIF -->
18 </tr>
19 <!-- IF S_TOPIC_ID -->
20 <tr>
21 <td class="bg3" colspan="5"><span class="gensmall">{L_LOGS_CURRENT_TOPIC} <a href="{U_VIEW_TOPIC}"><strong>{TOPIC_NAME}</strong></a></td>
22 </tr>
23 <!-- ENDIF -->
24
25 <!-- BEGIN log -->
26 <tr>
27 <td class="bg1" nowrap="nowrap"><span class="gen">{log.USERNAME}</span></td>
28 <td class="bg1" align="center" nowrap="nowrap"><span class="gen">{log.IP}</span></td>
29 <td class="bg1" align="center" nowrap="nowrap"><span class="gensmall">{log.TIME}</span></td>
30 <td class="bg1"><span class="gen">{log.ACTION}</span></td>
31 <!-- IF not S_TOPIC_ID -->
32 <td class="bg1" align="center" nowrap="nowrap"><span class="gensmall"><!-- IF log.U_VIEW_TOPIC --><a href="{log.U_VIEW_TOPIC}">{L_VIEW_TOPIC}</a><!-- IF log.U_VIEWLOGS --> | <!-- ENDIF --><!-- ENDIF --><!-- IF log.U_VIEWLOGS --><a href="{log.U_VIEWLOGS}">{L_VIEW_TOPIC_LOGS}</a><!-- ENDIF --></span></td>
33 <!-- ENDIF -->
34 </tr>
35 <!-- BEGINELSE -->
36 <tr>
37 <td class="bg1" colspan="<!-- IF S_TOPIC_ID -->4<!-- ELSE -->5<!-- ENDIF -->" align="center"><span class="gen">{L_NO_ENTRIES}</span></td>
38 </tr>
39 <!-- END log -->
40 <div>
41 {S_FORM_TOKEN}
42 </div>
43 </table>
44 </form>
45
46 <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
47 <tr>
48 <td class="nav" align="left" valign="middle">{PAGE_NUMBER}</td>
49 <td align="right" valign="top" nowrap="nowrap"><!-- IF PAGINATION --><strong><a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{L_GOTO_PAGE}</a> <!-- IF PREVIOUS_PAGE --><a href="{PREVIOUS_PAGE}">{L_PREVIOUS}</a> <!-- ENDIF -->{PAGINATION}<!-- IF NEXT_PAGE --> <a href="{NEXT_PAGE}">{L_NEXT}</a><!-- ENDIF --></strong><!-- ENDIF --></td>
50 </tr>
51 </table>
52
53 <!-- INCLUDE mcp_footer.html -->