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_notifications.html

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


001  <!-- INCLUDE ucp_header.html -->
002   
003  <form id="ucp" method="post" action="{S_UCP_ACTION}"{S_FORM_ENCTYPE}>
004   
005  <h2>{TITLE}</h2>
006  <div class="panel">
007      <div class="inner">
008   
009          <p>{TITLE_EXPLAIN}</p>
010   
011          <!-- IF MODE == 'notification_options' -->
012              <table class="table1">
013                  <thead>
014                      <tr>
015                          <th>{L_NOTIFICATION_TYPE}</th>
016                          <!-- BEGIN notification_methods -->
017                              <th class="mark">{notification_methods.NAME}</th>
018                          <!-- END notification_methods -->
019                      </tr>
020                  </thead>
021                  <tbody>
022                  <!-- BEGIN notification_types -->
023                      <!-- IF notification_types.GROUP_NAME -->
024                          <tr class="bg3">
025                              <td colspan="{NOTIFICATION_TYPES_COLS}">{notification_types.GROUP_NAME}</td>
026                          </tr>
027                      <!-- ELSE -->
028                          <tr class="<!-- IF notification_types.S_ROW_COUNT is odd -->bg1<!-- ELSE -->bg2<!-- ENDIF -->">
029                              <td>
030                                  {notification_types.NAME}
031                                  <!-- IF notification_types.EXPLAIN --><br />&nbsp; &nbsp;{notification_types.EXPLAIN}<!-- ENDIF -->
032                              </td>
033                              <!-- BEGIN notification_methods -->
034                                  <td class="mark"><input type="checkbox" name="{notification_types.TYPE}_{notification_methods.METHOD}"<!-- IF notification_methods.SUBSCRIBED --> checked="checked"<!-- ENDIF --> /></td>
035                              <!-- END notification_methods -->
036                          </tr>
037                      <!-- ENDIF -->
038                  <!-- END notification_types -->
039                  </tbody>
040              </table>
041          <!-- ELSE -->
042              <!-- IF .notification_list -->
043                  <div class="action-bar bar-top">
044                      <div class="pagination">
045                          <!-- IF U_MARK_ALL --><a href="{U_MARK_ALL}" class="mark">{L_NOTIFICATIONS_MARK_ALL_READ}</a> &bull; <!-- ENDIF -->
046                          {L_NOTIFICATIONS} [<strong>{TOTAL_COUNT}</strong>]
047                          <!-- IF .pagination -->
048                              <!-- INCLUDE pagination.html -->
049                          <!-- ELSE -->
050                               &bull; {PAGE_NUMBER}
051                          <!-- ENDIF -->
052                      </div>
053                  </div>
054   
055              <div class="notification_list">
056                  <ul class="topiclist two-columns">
057                      <li class="header">
058                          <dl>
059                              <dt><div class="list-inner">{L_NOTIFICATIONS}</div></dt>
060                              <dd class="mark">{L_MARK_READ}</dd>
061                          </dl>
062                      </li>
063                  </ul>
064                  <ul class="topiclist cplist two-columns">
065                      <!-- BEGIN notification_list -->
066                          <li class="row<!-- IF notification_list.UNREAD --> bg3<!-- ELSE --><!-- IF notification_list.S_ROW_COUNT is odd --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- ENDIF --><!-- IF notification_list.STYLING --> {notification_list.STYLING}<!-- ENDIF -->">
067                              <dl>
068                                  <dt>
069                                      <div class="list-inner">
070                                          <!-- IF notification_list.AVATAR -->{notification_list.AVATAR}<!-- ELSE --><img src="{T_THEME_PATH}/images/no_avatar.gif" alt="" /><!-- ENDIF -->
071                                          <div class="notifications">
072                                              <!-- IF notification_list.URL --><a href="<!-- IF notification_list.UNREAD -->{notification_list.U_MARK_READ}<!-- ELSE -->{notification_list.URL}<!-- ENDIF -->"><!-- ENDIF -->
073                                              <p class="notifications_title">{notification_list.FORMATTED_TITLE}<!-- IF notification_list.REFERENCE --> {notification_list.REFERENCE}<!-- ENDIF --></p>
074                                              <!-- IF notification_list.URL --></a><!-- ENDIF -->
075                                              <!-- IF notification_list.FORUM --><p class="notifications_forum">{notification_list.FORUM}</p><!-- ENDIF -->
076                                              <!-- IF notification_list.REASON --><p class="notifications_reason">{notification_list.REASON}</p><!-- ENDIF -->
077                                              <p class="notifications_time">{notification_list.TIME}</p>
078                                          </div>
079                                      </div>
080                                  </dt>
081   
082                                  <dd class="mark">&nbsp;<input type="checkbox" name="mark[]" value="{notification_list.NOTIFICATION_ID}"<!-- IF not notification_list.UNREAD --> disabled="disabled"<!-- ENDIF --> /> <dfn>{L_MARK_READ}</dfn>&nbsp;</dd>
083                              </dl>
084                          </li>
085                      <!-- END notification_list -->
086                  </ul>
087              </div>
088   
089              <div class="action-bar bar-bottom">
090                  <div class="pagination">
091                      {L_NOTIFICATIONS} [<strong>{TOTAL_COUNT}</strong>]
092                      <!-- IF .pagination -->
093                          <!-- INCLUDE pagination.html -->
094                      <!-- ELSE -->
095                            &bull; {PAGE_NUMBER}
096                      <!-- ENDIF -->
097                  </div>
098              </div>
099   
100              <!-- ELSE -->
101                  <p><strong>{L_NO_NOTIFICATIONS}</strong></p>
102              <!-- ENDIF -->
103   
104          <!-- ENDIF -->
105      </div>
106  </div>
107   
108  <!-- IF .notification_types or .notification_list -->
109  <fieldset class="display-actions">
110      <input type="hidden" name="form_time" value="{FORM_TIME}" />
111      {S_HIDDEN_FIELDS}
112      <input type="submit" name="submit" value="<!-- IF MODE == 'notification_options' -->{L_SUBMIT}<!-- ELSE -->{L_MARK_READ}<!-- ENDIF -->" class="button1" />
113      <div><a href="#" onclick="$('#ucp input:checkbox').prop('checked', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="$('#ucp input:checkbox').prop('checked', false); return false;">{L_UNMARK_ALL}</a></div>
114      {S_FORM_TOKEN}
115  </fieldset>
116  <!-- ENDIF -->
117   
118  </form>
119   
120  <!-- INCLUDE ucp_footer.html -->
121