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 |
installer_form.html
01 <form id="<!-- IF FORM_ID -->{FORM_ID}<!-- ELSE -->install_install<!-- ENDIF -->" method="POST" action="{U_ACTION}">
02 <!-- IF .options -->
03 <!-- IF S_NOT_ONLY_BUTTON_FORM -->
04 <fieldset>
05 <!-- ENDIF -->
06
07 <!-- BEGIN options -->
08 <!-- IF options.S_LEGEND -->
09 <!-- IF not options.S_FIRST_ROW -->
10 </fieldset>
11
12 <fieldset>
13 <!-- ENDIF -->
14 <legend>{options.LEGEND}</legend>
15 <!-- ELSE -->
16 <dl>
17 <dt><label for="{options.KEY}">{options.TITLE}{L_COLON}</label><!-- IF options.S_EXPLAIN --><br /><span class="explain">{options.TITLE_EXPLAIN}</span><!-- ENDIF --></dt>
18 <dd>
19 <!-- IF options.TYPE == 'text' -->
20 <input type="text" name="{options.KEY}" value="{options.DEFAULT}" />
21 <!-- ENDIF -->
22 <!-- IF options.TYPE == 'email' -->
23 <input type="email" name="{options.KEY}" value="{options.DEFAULT}" />
24 <!-- ENDIF -->
25 <!-- IF options.TYPE == 'password' -->
26 <input type="password" name="{options.KEY}" />
27 <!-- ENDIF -->
28 <!-- IF options.TYPE == 'select' -->
29 <select name="{options.KEY}">
30 <!-- BEGIN options.OPTIONS -->
31 <option value="{options.OPTIONS.value}"<!-- IF options.OPTIONS.selected --> selected<!-- ENDIF -->>{options.OPTIONS.label}</option>
32 <!-- END options.OPTIONS -->
33 </select>
34 <!-- ENDIF -->
35 <!-- IF options.TYPE == 'radio' -->
36 <!-- BEGIN options.OPTIONS -->
37 <input type="radio" name="{options.KEY}" value="{options.OPTIONS.value}" <!-- IF options.OPTIONS.selected -->checked<!-- ENDIF --> /> {options.OPTIONS.label}
38 <!-- END options.OPTIONS -->
39 <!-- ENDIF -->
40 </dd>
41 </dl>
42 <!-- ENDIF-->
43 <!-- END options -->
44 <!-- IF S_NOT_ONLY_BUTTON_FORM -->
45 </fieldset>
46 <!-- ENDIF -->
47 <!-- ENDIF -->
48 <!-- IF .submit_buttons -->
49 <fieldset class="submit-buttons">
50 <legend>{L_SUBMIT}</legend>
51 <!-- BEGIN submit_buttons -->
52 <input class="button1" type="submit" name="{submit_buttons.KEY}" value="{submit_buttons.TITLE}" />
53 <!-- END submit_buttons -->
54 </fieldset>
55 <!-- ENDIF -->
56 </form>
57