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 |
acp_prune_forums.html
001 <!-- INCLUDE overall_header.html -->
002
003 <a id="maincontent"></a>
004
005 <!-- IF S_PRUNED -->
006
007 <h1>{L_FORUM_PRUNE}</h1>
008
009 <p>{L_PRUNE_SUCCESS}</p>
010
011 <table class="table1 zebra-table">
012 <thead>
013 <tr>
014 <th>{L_FORUM}</th>
015 <th>{L_TOPICS_PRUNED}</th>
016 <th>{L_POSTS_PRUNED}</th>
017 </tr>
018 </thead>
019 <tbody>
020 <!-- BEGIN pruned -->
021 <tr>
022 <td style="text-align: center;">{pruned.FORUM_NAME}</td>
023 <td style="text-align: center;">{pruned.NUM_TOPICS}</td>
024 <td style="text-align: center;">{pruned.NUM_POSTS}</td>
025 </tr>
026 <!-- BEGINELSE -->
027 <tr>
028 <td colspan="3" class="row3" style="text-align: center;">{L_NO_PRUNE}</td>
029 </tr>
030 <!-- END pruned -->
031 </tbody>
032 </table>
033
034 <!-- ELSEIF S_SELECT_FORUM -->
035
036 <h1>{L_ACP_PRUNE_FORUMS}</h1>
037
038 <p>{L_ACP_PRUNE_FORUMS_EXPLAIN}</p>
039
040 <form id="acp_prune" method="post" action="{U_ACTION}">
041
042 <fieldset>
043 <legend>{L_SELECT_FORUM}</legend>
044 <p>{L_LOOK_UP_FORUMS_EXPLAIN}</p>
045 <dl>
046 <dt><!-- EVENT acp_prune_forums_prepend --><label for="forum">{L_LOOK_UP_FORUM}{L_COLON}</label><!-- EVENT acp_prune_forums_append --></dt>
047 <dd><select id="forum" name="f[]" multiple="multiple" size="10">{S_FORUM_OPTIONS}</select></dd>
048 <dd><label><input type="checkbox" class="radio" name="all_forums" value="1" /> {L_ALL_FORUMS}</label></dd>
049 </dl>
050
051 <p class="quick">
052 <input class="button1" type="submit" value="{L_LOOK_UP_FORUM}" />
053 </p>
054 </fieldset>
055
056 </form>
057
058 <!-- ELSE -->
059
060 <a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">« {L_BACK}</a>
061
062 <h1>{L_ACP_PRUNE_FORUMS}</h1>
063
064 <p>{L_ACP_PRUNE_FORUMS_EXPLAIN}</p>
065
066 <h2>{L_FORUM}</h2>
067
068 <p>{L_SELECTED_FORUMS}{L_COLON} {FORUM_LIST}</p>
069
070 <form id="acp_prune" method="post" action="{U_ACTION}">
071
072 <fieldset>
073 <legend>{L_FORUM_PRUNE}</legend>
074 <dl>
075 <dt><label for="prune_days">{L_PRUNE_NOT_POSTED}{L_COLON}</label></dt>
076 <dd><input type="number" id="prune_days" name="prune_days" /></dd>
077 </dl>
078 <dl>
079 <dt><label for="prune_vieweddays">{L_PRUNE_NOT_VIEWED}{L_COLON}</label></dt>
080 <dd><input type="number" id="prune_vieweddays" name="prune_vieweddays" /></dd>
081 </dl>
082 <dl>
083 <dt><label for="polls">{L_PRUNE_OLD_POLLS}{L_COLON}</label><br /><span>{L_PRUNE_OLD_POLLS_EXPLAIN}</span></dt>
084 <dd><label><input type="radio" class="radio" name="prune_old_polls" value="1" /> {L_YES}</label>
085 <label><input type="radio" class="radio" id="polls" name="prune_old_polls" value="0" checked="checked" /> {L_NO}</label></dd>
086 </dl>
087 <dl>
088 <dt><label for="announce">{L_PRUNE_ANNOUNCEMENTS}{L_COLON}</label></dt>
089 <dd><label><input type="radio" class="radio" name="prune_announce" value="1" /> {L_YES}</label>
090 <label><input type="radio" class="radio" id="announce" name="prune_announce" value="0" checked="checked" /> {L_NO}</label></dd>
091 </dl>
092 <dl>
093 <dt><label for="sticky">{L_PRUNE_STICKY}{L_COLON}</label></dt>
094 <dd><label><input type="radio" class="radio" name="prune_sticky" value="1" /> {L_YES}</label>
095 <label><input type="radio" class="radio" id="sticky" name="prune_sticky" value="0" checked="checked" /> {L_NO}</label></dd>
096 </dl>
097
098 <p class="quick">
099 {S_HIDDEN_FIELDS}
100 {S_FORM_TOKEN}
101 <input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />
102 </p>
103 </fieldset>
104 </form>
105
106 <!-- ENDIF -->
107
108 <!-- INCLUDE overall_footer.html -->
109