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

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

posting_attach_body.html

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


01  <div class="panel bg3 panel-container" id="attach-panel">
02      <div class="inner">
03   
04      <p>{L_ADD_ATTACHMENT_EXPLAIN} <span class="hidden" id="drag-n-drop-message">{L_PLUPLOAD_DRAG_TEXTAREA}</span></p>
05   
06      <fieldset class="fields2" id="attach-panel-basic">
07      <dl>
08          <dt><label for="fileupload">{L_FILENAME}{L_COLON}</label></dt>
09          <dd>
10              <input type="file" name="fileupload" id="fileupload" class="inputbox autowidth" />
11              <input type="submit" name="add_file" value="{L_ADD_FILE}" class="button2" onclick="upload = true;" />
12          </dd>
13      </dl>
14      <dl>
15          <dt><label for="filecomment">{L_FILE_COMMENT}{L_COLON}</label></dt>
16          <dd><textarea name="filecomment" id="filecomment" rows="1" cols="40" class="inputbox autowidth">{FILE_COMMENT}</textarea></dd>
17      </dl>
18      </fieldset>
19   
20      <div id="attach-panel-multi" class="attach-panel-multi">
21          <input type="button" class="button2" value="{L_PLUPLOAD_ADD_FILES}" id="add_files" />
22      </div>
23   
24      <div class="panel<!-- IF not .attach_row --> hidden<!-- ENDIF --> file-list-container" id="file-list-container">
25          <div class="inner">
26              <table class="table1 zebra-list fixed-width-table">
27                  <thead>
28                      <tr>
29                          <th class="attach-name">{L_PLUPLOAD_FILENAME}</th>
30                          <th class="attach-comment">{L_FILE_COMMENT}</th>
31                          <th class="attach-filesize">{L_PLUPLOAD_SIZE}</th>
32                          <th class="attach-status">{L_PLUPLOAD_STATUS}</th>
33                      </tr>
34                  </thead>
35                  <tbody class="responsive-skip-empty file-list" id="file-list">
36                      <tr class="attach-row" id="attach-row-tpl">
37                              <td class="attach-name">
38                                  <span class="file-name ellipsis-text"></span>
39                                  <span class="attach-controls">
40                                      <input type="button" value="{L_PLACE_INLINE}" class="button2 hidden file-inline-bbcode" />&nbsp;
41                                      <input type="button" value="{L_DELETE_FILE}" class="button2 file-delete" />
42                                  </span>
43                                  <span class="clear"></span>
44                              </td>
45                              <td class="attach-comment">
46                                  <textarea rows="1" cols="30" class="inputbox"></textarea>
47                              </td>
48                              <td class="attach-filesize">
49                                  <span class="file-size"></span>
50                              </td>
51                              <td class="attach-status">
52                                  <span class="file-progress">
53                                      <span class="file-progress-bar"></span>
54                                  </span>
55                                  <span class="file-status"></span>
56                              </td>
57                      </tr>
58                      <!-- BEGIN attach_row -->
59                          <tr class="attach-row" data-attach-id="{attach_row.ATTACH_ID}">
60                              <td class="attach-name">
61                                  <span class="file-name ellipsis-text"><a href="{attach_row.U_VIEW_ATTACHMENT}">{attach_row.FILENAME}</a></span>
62                                  <span class="attach-controls">
63                                      <!-- IF S_INLINE_ATTACHMENT_OPTIONS --><input type="button" value="{L_PLACE_INLINE}" class="button2 file-inline-bbcode" />&nbsp; <!-- ENDIF -->
64                                      <input type="submit" name="delete_file[{attach_row.ASSOC_INDEX}]" value="{L_DELETE_FILE}" class="button2 file-delete" />
65                                  </span>
66                                  <span class="clear"></span>
67                              </td>
68                              <td class="attach-comment">
69                                  <textarea name="comment_list[{attach_row.ASSOC_INDEX}]" rows="1" cols="30" class="inputbox">{attach_row.FILE_COMMENT}</textarea>
70                                  {attach_row.S_HIDDEN}
71                              </td>
72                              <td class="attach-filesize">
73                                  <span class="file-size">{attach_row.FILESIZE}</span>
74                              </td>
75                              <td class="attach-status">
76                                  <span class="file-status file-uploaded"></span>
77                              </td>
78                          </tr>
79                      <!-- END attach_row -->
80                  </tbody>
81              </table>
82          </div>
83      </div>
84      </div>
85  </div>
86