Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
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 <!-- EVENT acp_email_group_options_prepend -->
23 <dd><select id="group" name="g">{S_GROUP_OPTIONS}</select></dd>
24 <!-- EVENT acp_email_group_options_append -->
25 </dl>
26 <dl>
27 <dt><label for="usernames">{L_SEND_TO_USERS}{L_COLON}</label><br /><span>{L_SEND_TO_USERS_EXPLAIN}</span></dt>
28 <dd><textarea name="usernames" id="usernames" rows="5" cols="40">{USERNAMES}</textarea></dd>
29 <dd><!-- EVENT acp_email_find_username_prepend -->[ <a href="{U_FIND_USERNAME}" onclick="find_username(this.href); return false;">{L_FIND_USERNAME}</a> ]<!-- EVENT acp_email_find_username_append --></dd>
30 </dl>
31 <dl>
32 <dt><label for="subject">{L_SUBJECT}{L_COLON}</label></dt>
33 <dd><input name="subject" type="text" id="subject" value="{SUBJECT}" /></dd>
34 </dl>
35 <dl>
36 <dt><label for="message">{L_MASS_MESSAGE}{L_COLON}</label><br /><span>{L_MASS_MESSAGE_EXPLAIN}</span></dt>
37 <dd><textarea id="message" name="message" rows="10" cols="60">{MESSAGE}</textarea></dd>
38 </dl>
39 <dl>
40 <dt><label for="priority">{L_MAIL_PRIORITY}{L_COLON}</label></dt>
41 <dd><select id="priority" name="mail_priority_flag">{S_PRIORITY_OPTIONS}</select></dd>
42 </dl>
43 <dl>
44 <dt><label for="banned">{L_MAIL_BANNED}{L_COLON}</label><br /><span>{L_MAIL_BANNED_EXPLAIN}</span></dt>
45 <dd><input id="banned" name="mail_banned_flag" type="checkbox" class="radio" /></dd>
46 </dl>
47 <dl>
48 <dt><label for="send">{L_SEND_IMMEDIATELY}{L_COLON}</label></dt>
49 <dd><input id="send" type="checkbox" class="radio" name="send_immediately" checked="checked" /></dd>
50 </dl>
51
52 <!-- EVENT acp_email_options_after -->
53
54 <p class="submit-buttons">
55 <input class="button1" type="submit" id="submit" name="submit" value="{L_SEND_EMAIL}" />
56 <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
57 </p>
58 {S_FORM_TOKEN}
59 </fieldset>
60 </form>
61
62 <!-- INCLUDE overall_footer.html -->
63