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 |
quickreply_editor.html
01 <form method="post" action="{U_QR_ACTION}" id="qr_postform">
02 <!-- EVENT quickreply_editor_panel_before -->
03 <div class="panel">
04 <div class="inner">
05 <h2 class="quickreply-title">{L_QUICKREPLY}</h2>
06 <fieldset class="fields1">
07 <!-- EVENT quickreply_editor_subject_before -->
08 <dl style="clear: left;">
09 <dt><label for="subject">{L_SUBJECT}{L_COLON}</label></dt>
10 <dd><input type="text" name="subject" id="subject" size="45" maxlength="124" tabindex="2" value="{SUBJECT}" class="inputbox autowidth" /></dd>
11 </dl>
12 <!-- EVENT quickreply_editor_message_before -->
13 <div id="message-box" class="message-box">
14 <textarea style="height: 9em;" name="message" rows="7" cols="76" tabindex="3" class="inputbox"></textarea>
15 </div>
16 <!-- EVENT quickreply_editor_message_after -->
17 </fieldset>
18 <fieldset class="submit-buttons">
19 {S_FORM_TOKEN}
20 {QR_HIDDEN_FIELDS}
21 <input type="submit" accesskey="f" tabindex="6" name="preview" value="{L_FULL_EDITOR}" class="button2" id="qr_full_editor" />
22 <input type="submit" accesskey="s" tabindex="7" name="post" value="{L_SUBMIT}" class="button1" />
23 </fieldset>
24 </div>
25 </div>
26 <!-- EVENT quickreply_editor_panel_after -->
27 </form>
28