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 |
acp_email.html
01 <!-- INCLUDE overall_header.html -->
02
03 <a id="maincontent"></a>
04
05 <h1>{L_ACP_MASS_EMAIL}</h1>
06
07 <p>{L_ACP_MASS_EMAIL_EXPLAIN}</p>
08
09 <!-- IF S_WARNING -->
10 <div class="errorbox">
11 <h3>{L_WARNING}</h3>
12 <p>{WARNING_MSG}</p>
13 </div>
14 <!-- ENDIF -->
15
16 <form id="acp_email" method="post" action="{U_ACTION}">
17
18 <fieldset>
19 <legend>{L_COMPOSE}</legend>
20 <dl>
21 <dt><label for="group">{L_SEND_TO_GROUP}{L_COLON}</label></dt>
22 <dd><select id="group" name="g">{S_GROUP_OPTIONS}</select></dd>
23 </dl>
24 <dl>
25 <dt><label for="usernames">{L_SEND_TO_USERS}{L_COLON}</label><br /><span>{L_SEND_TO_USERS_EXPLAIN}</span></dt>
26 <dd><textarea name="usernames" id="usernames" rows="5" cols="40">{USERNAMES}</textarea></dd>
27 <dd>[ <a href="{U_FIND_USERNAME}" onclick="find_username(this.href); return false;">{L_FIND_USERNAME}</a> ]</dd>
28 </dl>
29 <dl>
30 <dt><label for="subject">{L_SUBJECT}{L_COLON}</label></dt>
31 <dd><input name="subject" type="text" id="subject" value="{SUBJECT}" /></dd>
32 </dl>
33 <dl>
34 <dt><label for="message">{L_MASS_MESSAGE}{L_COLON}</label><br /><span>{L_MASS_MESSAGE_EXPLAIN}</span></dt>
35 <dd><textarea id="message" name="message" rows="10" cols="60">{MESSAGE}</textarea></dd>
36 </dl>
37 <dl>
38 <dt><label for="priority">{L_MAIL_PRIORITY}{L_COLON}</label></dt>
39 <dd><select id="priority" name="mail_priority_flag">{S_PRIORITY_OPTIONS}</select></dd>
40 </dl>
41 <dl>
42 <dt><label for="banned">{L_MAIL_BANNED}{L_COLON}</label><br /><span>{L_MAIL_BANNED_EXPLAIN}</span></dt>
43 <dd><input id="banned" name="mail_banned_flag" type="checkbox" class="radio" /></dd>
44 </dl>
45 <dl>
46 <dt><label for="send">{L_SEND_IMMEDIATELY}{L_COLON}</label></dt>
47 <dd><input id="send" type="checkbox" class="radio" name="send_immediately" checked="checked" /></dd>
48 </dl>
49
50 <p class="submit-buttons">
51 <input class="button1" type="submit" id="submit" name="submit" value="{L_SEND_EMAIL}" />
52 <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
53 </p>
54 {S_FORM_TOKEN}
55 </fieldset>
56 </form>
57
58 <!-- INCLUDE overall_footer.html -->
59