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

mcp_reports.html

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


001  <!-- INCLUDE mcp_header.html -->
002   
003  <form id="mcp" method="post" action="{S_MCP_ACTION}">
004   
005  <!-- IF not S_PM -->
006  <fieldset class="forum-selection">
007      <label for="fo">{L_FORUM}{L_COLON} <select name="f" id="fo">{S_FORUM_OPTIONS}</select></label>
008      <input type="submit" name="sort" value="{L_GO}" class="button2" />
009      {S_FORM_TOKEN}
010  </fieldset>
011  <!-- ENDIF -->
012   
013  <h2>{L_TITLE}</h2>
014   
015  <div class="panel">
016      <div class="inner">
017   
018      <p>{L_EXPLAIN}</p>
019   
020      <!-- IF .postrow -->
021          <div class="action-bar bar-top">
022              <div class="pagination">
023                  {TOTAL_REPORTS}
024                  <!-- IF .pagination -->
025                      <!-- INCLUDE pagination.html -->
026                  <!-- ELSE -->
027                       &bull; {PAGE_NUMBER}
028                  <!-- ENDIF -->
029              </div>
030          </div>
031   
032          <ul class="topiclist missing-column">
033              <li class="header">
034                  <dl>
035                      <dt><div class="list-inner">{L_VIEW_DETAILS}</div></dt>
036                      <dd class="moderation"><span>{L_REPORTER}<!-- IF not S_PM --> &amp; {L_FORUM}<!-- ENDIF --></span></dd>
037                      <dd class="mark">{L_MARK}</dd>
038                  </dl>
039              </li>
040          </ul>
041          <ul class="topiclist cplist missing-column">
042   
043          <!-- BEGIN postrow -->
044              <li class="row<!-- IF postrow.S_ROW_COUNT is odd --> bg1<!-- ELSE --> bg2<!-- ENDIF -->">
045                  <dl>
046                      <!-- IF S_PM -->
047                      <dt>
048                          <div class="list-inner">
049                              <a href="{{ postrow.U_VIEW_DETAILS }}" class="topictitle">{{ postrow.PM_SUBJECT }}</a>
050                              {% if postrow.ATTACH_ICON_IMG %} <i class="icon fa-paperclip fa-fw" aria-hidden="true"></i>{% endif %}
051                              <br>
052                              <span>{L_MESSAGE_BY_AUTHOR} {postrow.PM_AUTHOR_FULL} &raquo; {postrow.PM_TIME}</span><br />
053                              <span>{L_MESSAGE_TO} {postrow.RECIPIENTS}</span>
054                              <div class="responsive-show" style="display: none;">
055                                  {L_REPORTER}{L_COLON} {postrow.REPORTER_FULL} &laquo; {postrow.REPORT_TIME}
056                              </div>
057                          </div>
058                      </dt>
059                      <dd class="moderation">
060                          <span>{postrow.REPORTER_FULL} &laquo; {postrow.REPORT_TIME}</span>
061                      </dd>
062                      <!-- ELSE -->
063                      <dt>
064                          <div class="list-inner">
065                              <a href="{{ postrow.U_VIEW_DETAILS }}" class="topictitle">{{ postrow.POST_SUBJECT }}</a>
066                              {% if postrow.ATTACH_ICON_IMG %} <i class="icon fa-paperclip fa-fw" aria-hidden="true"></i>{% endif %}
067                              <br>
068                              <span>{L_POSTED} {L_POST_BY_AUTHOR} {postrow.POST_AUTHOR_FULL} &raquo; {postrow.POST_TIME}</span>
069                              <div class="responsive-show" style="display: none;">
070                                  {L_REPORTER}{L_COLON} {postrow.REPORTER_FULL} &laquo; {postrow.REPORT_TIME}<br />
071                                  <!-- IF postrow.U_VIEWFORUM -->{L_FORUM}{L_COLON} <a href="{postrow.U_VIEWFORUM}">{postrow.FORUM_NAME}</a><!-- ELSE -->{postrow.FORUM_NAME}<!-- ENDIF -->
072                              </div>
073                          </div>
074                      </dt>
075                      <dd class="moderation">
076                          <span>{postrow.REPORTER_FULL} &laquo; {postrow.REPORT_TIME}<br />
077                          <!-- IF postrow.U_VIEWFORUM -->{L_FORUM}{L_COLON} <a href="{postrow.U_VIEWFORUM}">{postrow.FORUM_NAME}</a><!-- ELSE -->{postrow.FORUM_NAME}<!-- ENDIF --></span>
078                      </dd>
079                      <!-- ENDIF -->
080                      <dd class="mark"><input type="checkbox" name="report_id_list[]" value="{postrow.REPORT_ID}" /></dd>
081                  </dl>
082              </li>
083          <!-- END postrow -->
084          </ul>
085   
086          <div class="action-bar bottom">
087              <!-- INCLUDE display_options.html -->
088              <!-- IF TOPIC_ID -->
089                  <label>
090                      <input type="hidden" name="t" value="0">
091                      <input type="checkbox" class="radio" name="t" value="{TOPIC_ID}" checked="checked" onClick="document.getElementById('mcp').submit()" />
092                      <strong>{L_ONLY_TOPIC}</strong>
093                  </label>
094              <!-- ENDIF -->
095   
096              <div class="pagination">
097                  {TOTAL_REPORTS}
098                  <!-- IF .pagination -->
099                      <!-- INCLUDE pagination.html -->
100                  <!-- ELSE -->
101                       &bull; {PAGE_NUMBER}
102                  <!-- ENDIF -->
103              </div>
104          </div>
105   
106      <!-- ELSE -->
107          <p><strong>{L_NO_REPORTS}</strong></p>
108      <!-- ENDIF -->
109   
110      </div>
111  </div>
112   
113  <!-- IF .postrow -->
114      <fieldset class="display-actions">
115          <input class="button2" type="submit" value="{L_DELETE_REPORTS}" name="action[delete]" />
116          <!-- IF not S_CLOSED -->&nbsp;<input class="button1" type="submit" name="action[close]" value="{L_CLOSE_REPORTS}" /><!-- ENDIF -->
117          <div><a href="#" onclick="marklist('mcp', 'report_id_list', true); return false;">{L_MARK_ALL}</a> :: <a href="#" onclick="marklist('mcp', 'report_id_list', false); return false;">{L_UNMARK_ALL}</a></div>
118      </fieldset>
119  <!-- ENDIF -->
120  </form>
121   
122  <!-- INCLUDE mcp_footer.html -->
123