Verzeichnisstruktur phpBB-3.3.15


Veröffentlicht
28.08.2024

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: 02.04.2025, 15:02 - Dateigröße: 3.92 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 -->
35                                  <button type="submit" name="remove_{to_recipient.TYPE}[{to_recipient.UG_ID}]">
36                                      <i class="icon fa-times icon-red" aria-hidden="true"></i><span class="sr-only">{L_REMOVE}</span>
37                                  </button>
38                              <!-- ENDIF -->
39                              <!-- IF to_recipient.IS_GROUP --><a href="{to_recipient.U_VIEW}" style="color: {{ to_recipient.COLOUR }}"><strong>{to_recipient.NAME}</strong></a><!-- ELSE -->{to_recipient.NAME_FULL}<!-- ENDIF -->
40                          </li>
41                          <!-- END to_recipient -->
42                      </ul>
43                      </dd>
44                  </dl>
45              <!-- ENDIF -->
46          </div>
47              <!-- IF .bcc_recipient -->
48              <div class="column2">
49                  <dl>
50                      <dt><label>{L_BCC}{L_COLON}</label></dt>
51                      <dd class="recipients">
52                      <ul class="recipients">
53                          <!-- BEGIN bcc_recipient -->
54                          <li>
55                              <!-- IF not S_EDIT_POST -->
56                                  <button type="submit" name="remove_{bcc_recipient.TYPE}[{bcc_recipient.UG_ID}]">
57                                      <i class="icon fa-times icon-red" aria-hidden="true"></i><span class="sr-only">{L_REMOVE}</span>
58                                  </button>
59                              <!-- ENDIF -->
60                              <!-- IF bcc_recipient.IS_GROUP --><a href="{bcc_recipient.U_VIEW}" style="color: {{ bcc_recipient.COLOUR }}"><strong>{bcc_recipient.NAME}</strong></a><!-- ELSE -->{bcc_recipient.NAME_FULL}<!-- ENDIF -->
61                          </li>
62                          <!-- END bcc_recipient -->
63                      </ul>
64                      </dd>
65                  </dl>
66              </div>
67              <!-- ENDIF -->
68          <!-- ELSE -->
69          <div class="column1">
70              <dl>
71                  <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>
72                  <!-- IF not S_EDIT_POST -->
73                  <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>
74                  <!-- ENDIF -->
75                  <!-- IF .to_recipient -->
76                      <dd class="recipients">
77                          <ul class="recipients">
78                              <!-- BEGIN to_recipient -->
79                              <li>
80                                  <!-- IF not S_EDIT_POST -->
81                                      <button type="submit" name="remove_{to_recipient.TYPE}[{to_recipient.UG_ID}]">
82                                          <i class="icon fa-times icon-red" aria-hidden="true"></i><span class="sr-only">{L_REMOVE}</span>
83                                      </button>
84                                  <!-- ENDIF -->
85                                  <!-- IF to_recipient.IS_GROUP --><a href="{to_recipient.U_VIEW}"><strong>{to_recipient.NAME}</strong></a><!-- ELSE -->{to_recipient.NAME_FULL}<!-- ENDIF -->
86                              </li>
87                              <!-- END to_recipient -->
88                          </ul>
89                      </dd>
90                  <!-- ENDIF -->
91              </dl>
92          </div>
93          <!-- ENDIF -->
94   
95      <!-- ENDIF -->
96      </fieldset>
97