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 |
ucp_prefs_post.html
01 <!-- INCLUDE ucp_header.html -->
02
03 <form id="ucp" method="post" action="{S_UCP_ACTION}"{S_FORM_ENCTYPE}>
04
05 <h2>{L_TITLE}</h2>
06 <div class="panel">
07 <div class="inner">
08
09 <fieldset>
10 <!-- IF ERROR --><p class="error">{ERROR}</p><!-- ENDIF -->
11 <!-- EVENT ucp_prefs_post_prepend -->
12 <dl>
13 <dt><label for="bbcode1">{L_DEFAULT_BBCODE}{L_COLON}</label></dt>
14 <dd>
15 <label for="bbcode1"><input type="radio" name="bbcode" id="bbcode1" value="1"<!-- IF S_BBCODE --> checked="checked"<!-- ENDIF --> /> {L_YES}</label>
16 <label for="bbcode0"><input type="radio" name="bbcode" id="bbcode0" value="0"<!-- IF not S_BBCODE --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
17 </dd>
18 </dl>
19 <dl>
20 <dt><label for="smilies1">{L_DEFAULT_SMILIES}{L_COLON}</label></dt>
21 <dd>
22 <label for="smilies1"><input type="radio" name="smilies" id="smilies1" value="1"<!-- IF S_SMILIES --> checked="checked"<!-- ENDIF --> /> {L_YES}</label>
23 <label for="smilies0"><input type="radio" name="smilies" id="smilies0" value="0"<!-- IF not S_SMILIES --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
24 </dd>
25 </dl>
26 {% if S_SIG_ALLOWED %}
27 <dl>
28 <dt><label for="sig1">{L_DEFAULT_ADD_SIG}{L_COLON}</label></dt>
29 <dd>
30 <label for="sig1"><input type="radio" name="sig" id="sig1" value="1"<!-- IF S_SIG --> checked="checked"<!-- ENDIF --> /> {L_YES}</label>
31 <label for="sig0"><input type="radio" name="sig" id="sig0" value="0"<!-- IF not S_SIG --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
32 </dd>
33 </dl>
34 {% endif %}
35 <dl>
36 <dt><label for="notify1">{L_DEFAULT_NOTIFY}{L_COLON}</label></dt>
37 <dd>
38 <label for="notify1"><input type="radio" name="notify" id="notify1" value="1"<!-- IF S_NOTIFY --> checked="checked"<!-- ENDIF --> /> {L_YES}</label>
39 <label for="notify0"><input type="radio" name="notify" id="notify0" value="0"<!-- IF not S_NOTIFY --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
40 </dd>
41 </dl>
42 <!-- EVENT ucp_prefs_post_append -->
43 </fieldset>
44
45 </div>
46 </div>
47
48 <fieldset class="submit-buttons">
49 {S_HIDDEN_FIELDS}
50 <input type="submit" name="submit" value="{L_SUBMIT}" class="button1" />
51 {S_FORM_TOKEN}
52 </fieldset>
53 </form>
54
55 <!-- INCLUDE ucp_footer.html -->
56