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 |
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 <dl>
27 <dt><label for="sig1">{L_DEFAULT_ADD_SIG}{L_COLON}</label></dt>
28 <dd>
29 <label for="sig1"><input type="radio" name="sig" id="sig1" value="1"<!-- IF S_SIG --> checked="checked"<!-- ENDIF --> /> {L_YES}</label>
30 <label for="sig0"><input type="radio" name="sig" id="sig0" value="0"<!-- IF not S_SIG --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
31 </dd>
32 </dl>
33 <dl>
34 <dt><label for="notify1">{L_DEFAULT_NOTIFY}{L_COLON}</label></dt>
35 <dd>
36 <label for="notify1"><input type="radio" name="notify" id="notify1" value="1"<!-- IF S_NOTIFY --> checked="checked"<!-- ENDIF --> /> {L_YES}</label>
37 <label for="notify0"><input type="radio" name="notify" id="notify0" value="0"<!-- IF not S_NOTIFY --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
38 </dd>
39 </dl>
40 <!-- EVENT ucp_prefs_post_append -->
41 </fieldset>
42
43 </div>
44 </div>
45
46 <fieldset class="submit-buttons">
47 {S_HIDDEN_FIELDS}<input type="reset" value="{L_RESET}" name="reset" class="button2" />
48 <input type="submit" name="submit" value="{L_SUBMIT}" class="button1" />
49 {S_FORM_TOKEN}
50 </fieldset>
51 </form>
52
53 <!-- INCLUDE ucp_footer.html -->
54