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.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

mcp_front.html

Zuletzt modifiziert: 09.10.2024, 12:53 - Dateigröße: 5.80 KiB


001  <!-- INCLUDE mcp_header.html -->
002   
003  <!-- IF S_SHOW_UNAPPROVED -->
004      <form name="mcp_queue" method="post" action="{S_MCP_QUEUE_ACTION}">
005   
006      <table class="tablebg" width="100%" cellspacing="1">
007      <tr>
008          <td class="row3" colspan="6" align="center"><b class="gen">{L_LATEST_UNAPPROVED}</b></td>
009      </tr>
010      <tr>
011          <th>&nbsp;{L_FORUM}&nbsp;</th>
012          <th>&nbsp;{L_TOPIC}&nbsp;</th>
013          <th>&nbsp;{L_SUBJECT}&nbsp;</th>
014          <th>&nbsp;{L_AUTHOR}&nbsp;</th>
015          <th>&nbsp;{L_POST_TIME}&nbsp;</th>
016          <th width="5%">&nbsp;{L_SELECT}&nbsp;</th>
017      </tr>
018      <!-- BEGIN unapproved -->
019          <tr>
020              <td class="row1" width="15%" valign="top"><span class="gen"><!-- IF unapproved.U_FORUM --><a href="{unapproved.U_FORUM}">{unapproved.FORUM_NAME}</a><!-- ELSE -->{unapproved.FORUM_NAME}<!-- ENDIF --></span><!-- IF unapproved.U_MCP_FORUM --><br /><span class="gensmall">[ <a href="{unapproved.U_MCP_FORUM}">{L_MODERATE}</a> ]</span><!-- ENDIF --></td>
021              <td class="row2" valign="top"><span class="gen"><a href="{unapproved.U_TOPIC}">{unapproved.TOPIC_TITLE}</a></span><br /><span class="gensmall">[ <a href="{unapproved.U_MCP_TOPIC}">{L_MODERATE}</a> ]</span></td>
022              <td class="row1" valign="top"><span class="gen">{unapproved.SUBJECT}</span><br /><span class="gensmall">[ <a href="{unapproved.U_POST_DETAILS}">{L_VIEW_DETAILS}</a> ]</span></td>
023              <td class="row2" align="center" width="15%" nowrap="nowrap" valign="top"><span class="gen"><!-- IF unapproved.U_AUTHOR --><a href="{unapproved.U_AUTHOR}">{unapproved.AUTHOR}</a><!-- ELSE -->{unapproved.AUTHOR}<!-- ENDIF --></span></td>
024              <td class="row1" align="center" width="15%" nowrap="nowrap" valign="top"><span class="gensmall">{unapproved.POST_TIME}</span></td>
025              <td class="row2" align="center"><input type="checkbox" class="radio" name="post_id_list[]" value="{unapproved.POST_ID}" /></td>
026          </tr>
027      <!-- BEGINELSE -->
028          <tr>
029              <td class="row1" colspan="6" align="center"><span class="gen">{L_UNAPPROVED_POSTS_ZERO_TOTAL}</span></td>
030          </tr>
031      <!-- END unapproved -->
032      <!-- IF S_HAS_UNAPPROVED_POSTS -->
033          <tr>
034              <td class="row3" colspan="6"><span class="gensmall">{L_UNAPPROVED_TOTAL}</span></td>
035          </tr>
036      <!-- ENDIF -->
037      <tr>
038          <td class="cat" colspan="6" align="center"><input class="btnmain" type="submit" name="action[approve]" value="{L_APPROVE}" />&nbsp;&nbsp;<input class="btnlite" type="submit" name="action[disapprove]" value="{L_DISAPPROVE}" /></td>
039      </tr>
040      </table>
041      {S_FORM_TOKEN}
042      </form>
043      
044      <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
045      <tr>
046          <td align="{S_CONTENT_FLOW_END}" valign="top" nowrap="nowrap"><b class="gensmall"><a href="#" onclick="marklist('mcp_queue', '', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="marklist('mcp_queue', '', false); return false;">{L_UNMARK_ALL}</a></b></td>
047      </tr>
048      </table>
049   
050      <br clear="all" /><br />
051  <!-- ENDIF -->
052   
053  <!-- IF S_SHOW_REPORTS -->
054      <table class="tablebg" width="100%" cellspacing="1">
055      <tr>
056          <td class="row3" colspan="5" align="center"><b class="gen">{L_LATEST_REPORTED}</b></td>
057      </tr>
058      <tr>
059          <th>&nbsp;{L_FORUM}&nbsp;</th>
060          <th>&nbsp;{L_TOPIC}&nbsp;</th>
061          <th>&nbsp;{L_SUBJECT}&nbsp;</th>
062          <th>&nbsp;{L_REPORTER}&nbsp;</th>
063          <th>&nbsp;{L_REPORT_TIME}&nbsp;</th>
064      </tr>
065      <!-- BEGIN report -->
066          <tr>
067              <td class="row1" width="15%" valign="top"><span class="gen"><!-- IF report.U_FORUM --><a href="{report.U_FORUM}">{report.FORUM_NAME}</a><!-- ELSE -->{report.FORUM_NAME}<!-- ENDIF --></span><!-- IF report.U_MCP_FORUM --><br /><span class="gensmall">[ <a href="{report.U_MCP_FORUM}">{L_MODERATE}</a> ]</span><!-- ENDIF --></td>
068              <td class="row2" valign="top"><span class="gen"><a href="{report.U_TOPIC}">{report.TOPIC_TITLE}</a></span><br /><span class="gensmall">[ <a href="{report.U_MCP_TOPIC}">{L_MODERATE}</a> ]</span></td>
069              <td class="row1" valign="top"><span class="gen">{report.SUBJECT}</span><br /><span class="gensmall">[ <a href="{report.U_POST_DETAILS}">{L_VIEW_DETAILS}</a> ]</span></td>
070              <td class="row2" align="center" width="15%" nowrap="nowrap" valign="top"><span class="gen">{report.REPORTER_FULL}</span></td>
071              <td class="row1" align="center" width="15%" nowrap="nowrap" valign="top"><span class="gensmall">{report.REPORT_TIME}</span></td>
072          </tr>
073      <!-- BEGINELSE -->
074          <tr>
075              <td class="row1" colspan="5" align="center"><span class="gen">{L_REPORTS_ZERO_TOTAL}</span></td>
076          </tr>
077      <!-- END report -->
078      <!-- IF S_HAS_REPORTS -->
079          <tr>
080              <td class="row3" colspan="5"><span class="gensmall">{L_REPORTS_TOTAL}</span></td>
081          </tr>
082      <!-- ENDIF -->
083      </table>
084   
085      <br clear="all" /><br />
086  <!-- ENDIF -->
087   
088  <!-- IF S_SHOW_LOGS -->
089      <table class="tablebg" width="100%" cellspacing="1" cellpadding="4" border="0" align="{S_CONTENT_FLOW_END}">
090      <tr>
091          <td class="row3" colspan="5" align="center"><b class="gen">{L_LATEST_LOGS}</b></td>
092      </tr>
093      <tr>
094          <th width="15%" nowrap="nowrap">{L_USERNAME}</th>
095          <th width="12%" nowrap="nowrap">{L_IP}</th>
096          <th width="45%" nowrap="nowrap">{L_ACTION}</th>
097          <th nowrap="nowrap"></th>
098          <th width="18%" nowrap="nowrap">{L_TIME}</th>
099      </tr>
100      <!-- BEGIN log -->
101          <tr>
102              <td class="row1" nowrap="nowrap"><span class="gen">{log.USERNAME}</span></td>
103              <td class="row1" align="center" nowrap="nowrap"><span class="gen">{log.IP}</span></td>
104              <td class="row1"><span class="genmed">{log.ACTION}</span></td>
105              <td class="row1" 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>
106              <td class="row1" align="center" nowrap="nowrap"><span class="gensmall">{log.TIME}</span></td>
107          </tr>
108      <!-- BEGINELSE -->
109          <tr>
110              <td class="row1" colspan="5" align="center"><span class="gen">{L_NO_ENTRIES}</span></td>
111          </tr>
112      <!-- END log -->
113      </table>
114   
115      <br clear="all" />
116  <!-- ENDIF -->
117   
118  <!-- INCLUDE mcp_footer.html -->