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 |
posting_preview.html
01 <div class="post <!-- IF S_PRIVMSGS -->pm<!-- ELSE -->bg2<!-- ENDIF -->" id="preview">
02 <div class="inner">
03
04 <!-- IF S_HAS_POLL_OPTIONS -->
05 <div class="content">
06 <h2>{L_PREVIEW}{L_COLON} {POLL_QUESTION}</h2>
07 <p class="author"><!-- IF L_POLL_LENGTH -->{L_POLL_LENGTH}<br /><!-- ENDIF -->{L_MAX_VOTES}</p>
08
09 <fieldset class="polls">
10 <!-- BEGIN poll_option -->
11 <dl>
12 <dt><label for="vote_{poll_option.POLL_OPTION_ID}">{poll_option.POLL_OPTION_CAPTION}</label></dt>
13 <dd style="width: auto;"><!-- IF S_IS_MULTI_CHOICE --><input type="checkbox" name="vote_id[]" id="vote_{poll_option.POLL_OPTION_ID}" value="{poll_option.POLL_OPTION_ID}"<!-- IF poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> /><!-- ELSE --><input type="radio" name="vote_id[]" id="vote_{poll_option.POLL_OPTION_ID}" value="{poll_option.POLL_OPTION_ID}"<!-- IF poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> /><!-- ENDIF --></dd>
14 </dl>
15 <!-- END poll_option -->
16 </fieldset>
17 </div>
18
19 </div>
20 </div>
21
22 <div class="post bg2">
23 <div class="inner">
24
25 <!-- ENDIF -->
26
27 <!-- EVENT posting_preview_poll_after -->
28
29 <div class="postbody">
30 <h3>{L_PREVIEW}{L_COLON} {PREVIEW_SUBJECT}</h3>
31
32 <div class="content">{PREVIEW_MESSAGE}</div>
33
34 <!-- IF .attachment -->
35 <dl class="attachbox">
36 <dt>{L_ATTACHMENTS}</dt>
37 <!-- BEGIN attachment -->
38 <dd>{attachment.DISPLAY_ATTACHMENT}</dd>
39 <!-- END attachment -->
40 </dl>
41 <!-- ENDIF -->
42
43 <!-- IF PREVIEW_SIGNATURE --><div class="signature">{PREVIEW_SIGNATURE}</div><!-- ENDIF -->
44 </div>
45
46 </div>
47 </div>
48
49 <hr />
50