Verzeichnisstruktur phpBB-3.1.0


Veröffentlicht
27.10.2014

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.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

posting_pm_header.html

Zuletzt modifiziert: 09.10.2024, 12:54 - Dateigröße: 3.49 KiB


01  <fieldset class="fields1">
02      <!-- IF not S_SHOW_DRAFTS -->
03   
04          <!-- IF S_GROUP_OPTIONS -->
05              <div class="column2">
06                  <label for="group_list"><strong>{L_TO_ADD_GROUPS}{L_COLON}</strong></label><br />
07                  <select name="group_list[]" id="group_list" multiple="multiple" size="3" class="inputbox">{S_GROUP_OPTIONS}</select><br />
08              </div>
09          <!-- ENDIF -->
10          <!-- IF S_ALLOW_MASS_PM -->
11          <div class="column1">
12              <!-- IF not S_EDIT_POST -->
13              <dl class="pmlist">
14                  <dt><label><strong>{L_TO_ADD_MASS}{L_COLON}</strong><textarea id="username_list" name="username_list" class="inputbox" cols="50" rows="2" tabindex="1"></textarea></label></dt>
15                  <dd class="recipients">
16                  <input type="submit" name="add_to" value="{L_ADD}" class="button2" tabindex="1" />
17                  <input type="submit" name="add_bcc" value="{L_ADD_BCC}" class="button2" tabindex="1" />
18                  <!-- EVENT posting_pm_header_find_username_before -->
19                  <span><a href="{U_FIND_USERNAME}" onclick="find_username(this.href); return false;">{L_FIND_USERNAME}</a></span>
20                  <!-- EVENT posting_pm_header_find_username_after -->
21                  </dd>
22              </dl>
23              <!-- ENDIF -->
24          </div>
25          <!-- IF .to_recipient or .bcc_recipient --><hr /><!-- ENDIF -->
26          <div class="column1">
27              <!-- IF .to_recipient -->
28                  <dl>
29                      <dt><label>{L_TO_MASS}{L_COLON}</label></dt>
30                      <dd class="recipients">
31                      <ul class="recipients">
32                          <!-- BEGIN to_recipient -->
33                          <li>
34                              <!-- IF not S_EDIT_POST --><input type="submit" name="remove_{to_recipient.TYPE}[{to_recipient.UG_ID}]" value="x" class="button2" /><!-- ENDIF -->
35                              <!-- IF to_recipient.IS_GROUP --><a href="{to_recipient.U_VIEW}"><strong>{to_recipient.NAME}</strong></a><!-- ELSE -->{to_recipient.NAME_FULL}<!-- ENDIF -->
36                          </li>
37                          <!-- END to_recipient -->
38                      </ul>
39                      </dd>
40                  </dl>
41              <!-- ENDIF -->
42          </div>
43              <!-- IF .bcc_recipient -->
44              <div class="column2">
45                  <dl>
46                      <dt><label>{L_BCC}{L_COLON}</label></dt>
47                      <dd class="recipients">
48                      <ul class="recipients">
49                          <!-- BEGIN bcc_recipient -->
50                          <li>
51                              <!-- IF not S_EDIT_POST --><input type="submit" name="remove_{bcc_recipient.TYPE}[{bcc_recipient.UG_ID}]" value="x" class="button2" /><!-- ENDIF -->
52                              <!-- IF bcc_recipient.IS_GROUP --><a href="{bcc_recipient.U_VIEW}"><strong>{bcc_recipient.NAME}</strong></a><!-- ELSE -->{bcc_recipient.NAME_FULL}<!-- ENDIF -->
53                          </li>
54                          <!-- END bcc_recipient -->
55                      </ul>
56                      </dd>
57                  </dl>
58              </div>
59              <!-- ENDIF -->
60          <!-- ELSE -->
61          <div class="column1">
62              <dl>
63                  <dt><label for="username_list">{L_TO_ADD}{L_COLON}</label><!-- IF not S_EDIT_POST --><br /><span><a href="{U_FIND_USERNAME}" onclick="find_username(this.href); return false">{L_FIND_USERNAME}</a></span><!-- ENDIF --></dt>
64                  <!-- IF not S_EDIT_POST -->
65                  <dd><input class="inputbox" type="text" name="username_list" id="username_list" size="20" value="" /> <input type="submit" name="add_to" value="{L_ADD}" class="button2" /></dd>
66                  <!-- ENDIF -->
67                  <!-- IF .to_recipient -->
68                      <dd class="recipients">
69                      <ul class="recipients">
70                          <!-- BEGIN to_recipient -->
71                          <li>
72                              <!-- IF to_recipient.IS_GROUP --><a href="{to_recipient.U_VIEW}"><strong>{to_recipient.NAME}</strong></a><!-- ELSE -->{to_recipient.NAME_FULL}<!-- ENDIF -->&nbsp;
73                              <!-- IF not S_EDIT_POST --><input type="submit" name="remove_{to_recipient.TYPE}[{to_recipient.UG_ID}]" value="x" class="button2" /><!-- ENDIF -->
74                          </li>
75                          <!-- END to_recipient -->
76                      </dd>
77                  <!-- ENDIF -->
78              </dl>
79          </div>
80          <!-- ENDIF -->
81   
82      <!-- ENDIF -->
83      </fieldset>
84