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

ucp_pm_message_header.html

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


01  <h2>{L_TITLE}<!-- IF CUR_FOLDER_NAME -->{L_COLON} {CUR_FOLDER_NAME}<!-- ENDIF --></h2>
02   
03  <form id="viewfolder" method="post" action="{S_PM_ACTION}">
04   
05  <div class="panel">
06      <div class="inner">
07      <!-- IF FOLDER_STATUS and FOLDER_MAX_MESSAGES neq 0 --><p>{FOLDER_STATUS}</p><!-- ENDIF -->
08   
09      <div class="action-bar bar-top">
10      <!-- IF U_POST_REPLY_PM or U_POST_NEW_TOPIC or U_FORWARD_PM -->
11          <!-- IF U_POST_REPLY_PM -->
12              <a title="{L_POST_REPLY_PM}" href="{U_POST_REPLY_PM}" class="button">
13                  <span>{L_BUTTON_PM_REPLY}</span> <i class="icon fa-reply fa-fw" aria-hidden="true"></i>
14              </a>
15          <!-- ELSEIF U_POST_NEW_TOPIC -->
16              <a href="{U_POST_NEW_TOPIC}" accesskey="n" title="{L_UCP_PM_COMPOSE}" class="button">
17                  <span>{L_BUTTON_PM_NEW}</span> <i class="icon fa-pencil fa-fw" aria-hidden="true"></i>
18              </a>
19          <!-- ENDIF -->
20          <!-- IF U_FORWARD_PM -->
21              <a title="{L_POST_FORWARD_PM}" href="{U_FORWARD_PM}" class="button">
22                  <span>{L_BUTTON_PM_FORWARD}</span> <i class="icon fa-mail-forward fa-fw" aria-hidden="true"></i>
23              </a>
24          <!-- ENDIF -->
25          <!-- IF U_POST_REPLY_PM and S_PM_RECIPIENTS gt 1 -->
26              <a title="{L_REPLY_TO_ALL}" href="{U_POST_REPLY_ALL}" class="button">
27                  <span>{L_BUTTON_PM_REPLY_ALL}</span> <i class="icon fa-pencil fa-fw" aria-hidden="true"></i>
28              </a>
29          <!-- ENDIF -->
30      <!-- ENDIF -->
31   
32      <!-- IF not S_IS_BOT and U_PRINT_PM -->
33          <div class="dropdown-container dropdown-button-control topic-tools">
34              <span title="{L_PM_TOOLS}" class="button button-secondary dropdown-trigger dropdown-select">
35                  <i class="icon fa-wrench fa-fw" aria-hidden="true"></i>
36                  <span class="caret"><i class="icon fa-sort-down fa-fw" aria-hidden="true"></i></span>
37              </span>
38              <div class="dropdown">
39                  <div class="pointer"><div class="pointer-inner"></div></div>
40                  <ul class="dropdown-contents">
41                      <!-- IF U_PRINT_PM -->
42                          <li>
43                              <a href="{U_PRINT_PM}" title="{L_PRINT_PM}" accesskey="p">
44                                  <i class="icon fa-print fa-fw" aria-hidden="true"></i><span>{L_PRINT_PM}</span>
45                              </a>
46                          </li>
47                      <!-- ENDIF -->
48                  </ul>
49              </div>
50          </div>
51      <!-- ENDIF -->
52   
53      <!-- IF TOTAL_MESSAGES or S_VIEW_MESSAGE -->
54          <div class="pagination">
55              <!-- IF S_VIEW_MESSAGE -->
56                  <a class="arrow-{S_CONTENT_FLOW_BEGIN}" href="{U_CURRENT_FOLDER}">
57                      <i class="icon fa-angle-{S_CONTENT_FLOW_BEGIN} fa-fw icon-black" aria-hidden="true"></i><span>{L_RETURN_TO_FOLDER}</span>
58                  </a>
59              <!-- ELSEIF FOLDER_CUR_MESSAGES neq 0 -->
60                  <!-- IF U_MARK_ALL --><a href="{U_MARK_ALL}" class="mark">{L_PM_MARK_ALL_READ}</a> &bull; <!-- ENDIF -->
61                  {TOTAL_MESSAGES}
62                  <!-- IF .pagination -->
63                      <!-- INCLUDE pagination.html -->
64                  <!-- ELSE -->
65                       &bull; {PAGE_NUMBER}
66                  <!-- ENDIF -->
67              <!-- ENDIF -->
68          </div>
69      <!-- ENDIF -->
70      </div>
71