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

mcp_reports.html

Zuletzt modifiziert: 09.10.2024, 12:54 - Dateigröße: 4.00 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> <i class="icon fa-paperclip fa-fw" aria-hidden="true"></i> <br />
050                              <span>{L_MESSAGE_BY_AUTHOR} {postrow.PM_AUTHOR_FULL} &raquo; {postrow.PM_TIME}</span><br />
051                              <span>{L_MESSAGE_TO} {postrow.RECIPIENTS}</span>
052                              <div class="responsive-show" style="display: none;">
053                                  {L_REPORTER}{L_COLON} {postrow.REPORTER_FULL} &laquo; {postrow.REPORT_TIME}
054                              </div>
055                          </div>
056                      </dt>
057                      <dd class="moderation">
058                          <span>{postrow.REPORTER_FULL} &laquo; {postrow.REPORT_TIME}</span>
059                      </dd>
060                      <!-- ELSE -->
061                      <dt>
062                          <div class="list-inner">
063                              <a href="{postrow.U_VIEW_DETAILS}" class="topictitle">{postrow.POST_SUBJECT}</a><i class="icon fa-paperclip fa-fw" aria-hidden="true"></i> <br />
064                              <span>{L_POSTED} {L_POST_BY_AUTHOR} {postrow.POST_AUTHOR_FULL} &raquo; {postrow.POST_TIME}</span>
065                              <div class="responsive-show" style="display: none;">
066                                  {L_REPORTER}{L_COLON} {postrow.REPORTER_FULL} &laquo; {postrow.REPORT_TIME}<br />
067                                  <!-- IF postrow.U_VIEWFORUM -->{L_FORUM}{L_COLON} <a href="{postrow.U_VIEWFORUM}">{postrow.FORUM_NAME}</a><!-- ELSE -->{postrow.FORUM_NAME}<!-- ENDIF -->
068                              </div>
069                          </div>
070                      </dt>
071                      <dd class="moderation">
072                          <span>{postrow.REPORTER_FULL} &laquo; {postrow.REPORT_TIME}<br />
073                          <!-- IF postrow.U_VIEWFORUM -->{L_FORUM}{L_COLON} <a href="{postrow.U_VIEWFORUM}">{postrow.FORUM_NAME}</a><!-- ELSE -->{postrow.FORUM_NAME}<!-- ENDIF --></span>
074                      </dd>
075                      <!-- ENDIF -->
076                      <dd class="mark"><input type="checkbox" name="report_id_list[]" value="{postrow.REPORT_ID}" /></dd>
077                  </dl>
078              </li>
079          <!-- END postrow -->
080          </ul>
081   
082          <div class="action-bar bottom">
083              <!-- INCLUDE display_options.html -->
084              <!-- IF TOPIC_ID --><label><input type="checkbox" class="radio" name="t" value="{TOPIC_ID}" checked="checked" onClick="document.getElementById('mcp').submit()" /> <strong>{L_ONLY_TOPIC}</strong></label><!-- ENDIF -->
085   
086              <div class="pagination">
087                  {TOTAL_REPORTS}
088                  <!-- IF .pagination -->
089                      <!-- INCLUDE pagination.html -->
090                  <!-- ELSE -->
091                       &bull; {PAGE_NUMBER}
092                  <!-- ENDIF -->
093              </div>
094          </div>
095   
096      <!-- ELSE -->
097          <p><strong>{L_NO_REPORTS}</strong></p>
098      <!-- ENDIF -->
099   
100      </div>
101  </div>
102   
103  <!-- IF .postrow -->
104      <fieldset class="display-actions">
105          <input class="button2" type="submit" value="{L_DELETE_REPORTS}" name="action[delete]" />
106          <!-- IF not S_CLOSED -->&nbsp;<input class="button1" type="submit" name="action[close]" value="{L_CLOSE_REPORTS}" /><!-- ENDIF -->
107          <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>
108      </fieldset>
109  <!-- ENDIF -->
110  </form>
111   
112  <!-- INCLUDE mcp_footer.html -->
113