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

notification_dropdown.html

Zuletzt modifiziert: 02.04.2025, 15:02 - Dateigröße: 2.38 KiB


01  <div id="notification_list" class="dropdown dropdown-extended notification_list">
02      <div class="pointer"><div class="pointer-inner"></div></div>
03      <div class="dropdown-contents">
04          <div class="header">
05              {L_NOTIFICATIONS}
06              <span class="header_settings">
07                  <a href="{U_NOTIFICATION_SETTINGS}">{L_SETTINGS}</a>
08                  <!-- IF NOTIFICATIONS_COUNT -->
09                      <span id="mark_all_notifications"> &bull; <a href="{U_MARK_ALL_NOTIFICATIONS}" data-ajax="notification.mark_all_read">{L_MARK_ALL_READ}</a></span>
10                  <!-- ENDIF -->
11              </span>
12          </div>
13   
14          <ul>
15              <!-- IF not .notifications -->
16                  <li class="no_notifications">
17                      {L_NO_NOTIFICATIONS}
18                  </li>
19              <!-- ENDIF -->
20              <!-- BEGIN notifications -->
21                  <li class="<!-- IF notifications.UNREAD --> bg2<!-- ENDIF --><!-- IF notifications.STYLING --> {notifications.STYLING}<!-- ENDIF --><!-- IF not notifications.URL --> no-url<!-- ENDIF -->">
22                      <!-- IF notifications.URL -->
23                          <a class="notification-block" href="<!-- IF notifications.UNREAD -->{notifications.U_MARK_READ}" data-real-url="{notifications.URL}<!-- ELSE -->{notifications.URL}<!-- ENDIF -->">
24                      <!-- ENDIF -->
25                          <!-- IF notifications.AVATAR -->{notifications.AVATAR}<!-- ELSE --><img src="{T_THEME_PATH}/images/no_avatar.gif" alt="" /><!-- ENDIF -->
26                          <div class="notification_text">
27                              <p class="notification-title">{notifications.FORMATTED_TITLE}</p>
28                              <!-- IF notifications.REFERENCE --><p class="notification-reference">{notifications.REFERENCE}</p><!-- ENDIF -->
29                              <!-- IF notifications.FORUM --><p class="notification-forum">{notifications.FORUM}</p><!-- ENDIF -->
30                              <!-- IF notifications.REASON --><p class="notification-reason">{notifications.REASON}</p><!-- ENDIF -->
31                              <p class="notification-time">{notifications.TIME}</p>
32                          </div>
33                      <!-- IF notifications.URL --></a><!-- ENDIF -->
34                      <!-- IF notifications.UNREAD -->
35                          <a href="{notifications.U_MARK_READ}" class="mark_read icon-mark" data-ajax="notification.mark_read" title="{L_MARK_READ}">
36                               <i class="icon fa-check-circle icon-xl fa-fw" aria-hidden="true"></i><span class="sr-only">{L_MARK_READ}</span>
37                          </a>
38                      <!-- ENDIF -->
39                  </li>
40              <!-- END notifications -->
41          </ul>
42   
43          {% EVENT notification_dropdown_footer_before %}
44          <div class="footer">
45              <a href="{U_VIEW_ALL_NOTIFICATIONS}"><span>{L_SEE_ALL}</span></a>
46          </div>
47          {% EVENT notification_dropdown_footer_after %}
48      </div>
49  </div>
50