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_users.html
01 <!-- INCLUDE overall_header.html -->
02
03 <a id="maincontent"></a>
04
05 <h1>{L_ACP_PRUNE_USERS}</h1>
06
07 <p>{L_ACP_PRUNE_USERS_EXPLAIN}</p>
08
09 <form id="acp_prune" method="post" action="{U_ACTION}">
10
11 <fieldset>
12 <legend>{L_CRITERIA}</legend>
13 <dl>
14 <dt><label for="username">{L_USERNAME}{L_COLON}</label></dt>
15 <dd><input type="text" id="username" name="username" /></dd>
16 </dl>
17 <dl>
18 <dt><label for="email">{L_EMAIL}{L_COLON}</label></dt>
19 <dd><input type="text" id="email" name="email" /></dd>
20 </dl>
21 <dl>
22 <dt><label for="joined_after">{L_JOINED}{L_COLON}</label><br /><span>{L_JOINED_EXPLAIN}</span></dt>
23 <dd>
24 <strong>{L_AFTER}</strong> <input type="text" id="joined_after" name="joined_after" />
25 <br /> <br /> <strong>{L_BEFORE}</strong> <input type="text" id="joined_before" name="joined_before" />
26 </dd>
27 </dl>
28 <dl>
29 <dt><label for="active">{L_LAST_ACTIVE}{L_COLON}</label><br /><span>{L_LAST_ACTIVE_EXPLAIN}</span></dt>
30 <dd><select name="active_select">{S_ACTIVE_OPTIONS}</select> <input type="text" id="active" name="active" /></dd>
31 </dl>
32 <dl>
33 <dt><label for="count">{L_POSTS}{L_COLON}</label></dt>
34 <dd><select name="count_select">{S_COUNT_OPTIONS}</select> <input type="number" id="count" name="count" /></dd>
35 </dl>
36 <dl>
37 <dt><label for="posts_on_queue">{L_POSTS_ON_QUEUE}{L_COLON}</label></dt>
38 <dd><select name="queue_select">{S_COUNT_OPTIONS}</select> <input type="number" id="posts_on_queue" name="posts_on_queue" /></dd>
39 </dl>
40 <!-- IF S_GROUP_LIST -->
41 <dl>
42 <dt><label for="group_id">{L_GROUP}{L_COLON}</label><br /><span>{L_PRUNE_USERS_GROUP_EXPLAIN}</span></dt>
43 <dd><select id="group_id" name="group_id">{S_GROUP_LIST}</select></dd>
44 </dl>
45 <!-- ENDIF -->
46 </fieldset>
47
48 <fieldset>
49 <legend>{L_USERNAMES}</legend>
50 <dl>
51 <dt><label for="users">{L_ACP_PRUNE_USERS}{L_COLON}</label><br /><span>{L_SELECT_USERS_EXPLAIN}</span></dt>
52 <dd><textarea id="users" name="users" cols="40" rows="5"></textarea></dd>
53 <dd><!-- EVENT acp_prune_users_find_username_prepend -->[ <a href="{U_FIND_USERNAME}" onclick="find_username(this.href); return false;">{L_FIND_USERNAME}</a> ]<!-- EVENT acp_prune_users_find_username_append --></dd>
54 </dl>
55 </fieldset>
56
57 <fieldset>
58 <legend>{L_OPTIONS}</legend>
59 <dl>
60 <dt><label for="deleteposts">{L_DELETE_USER_POSTS}{L_COLON}</label><br /><span>{L_DELETE_USER_POSTS_EXPLAIN}</span></dt>
61 <dd><label><input type="radio" class="radio" name="deleteposts" value="1" /> {L_YES}</label>
62 <label><input type="radio" class="radio" id="deleteposts" name="deleteposts" value="0" checked="checked" /> {L_NO}</label></dd>
63 </dl>
64 <dl>
65 <dt><label for="deactivate">{L_DEACTIVATE_DELETE}{L_COLON}</label><br /><span>{L_DEACTIVATE_DELETE_EXPLAIN}</span></dt>
66 <dd><label><input type="radio" class="radio" name="action" value="delete" /> {L_DELETE_USERS}</label>
67 <label><input type="radio" class="radio" id="deactivate" name="action" value="deactivate" checked="checked" /> {L_DEACTIVATE}</label></dd>
68 </dl>
69
70 <p class="submit-buttons">
71 <input type="hidden" name="prune" value="1" />
72
73 <input class="button1" type="submit" id="update" name="update" value="{L_SUBMIT}" />
74 <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
75 {S_FORM_TOKEN}
76 </p>
77 </fieldset>
78 </form>
79
80 <!-- INCLUDE overall_footer.html -->
81