Verzeichnisstruktur phpBB-3.1.0


Veröffentlicht
27.10.2014

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

acp_ext_list.html

Zuletzt modifiziert: 09.10.2024, 12:52 - Dateigröße: 4.00 KiB


001  <!-- INCLUDE overall_header.html -->
002   
003  <a id="maincontent"></a>
004   
005      <h1>{L_EXTENSIONS_ADMIN}</h1>
006   
007      <p>{L_EXTENSIONS_EXPLAIN}</p>
008   
009      <fieldset class="quick">
010          <span class="small"><a href="{U_VERSIONCHECK_FORCE}">{L_VERSIONCHECK_FORCE_UPDATE_ALL}</a> &bull; <a href="javascript:phpbb.toggleDisplay('version_check_settings');">{L_SETTINGS}</a></span>
011      </fieldset>
012   
013      <form id="version_check_settings" method="post" action="{U_ACTION}" style="display:none">
014   
015      <fieldset>
016          <legend>{L_EXTENSIONS_VERSION_CHECK_SETTINGS}</legend>
017          <dl>
018              <dt><label for="force_unstable">{L_FORCE_UNSTABLE}{L_COLON}</label></dt>
019              <dd>
020                  <label><input type="radio" id="force_unstable" name="force_unstable" class="radio" value="1"<!-- IF FORCE_UNSTABLE --> checked="checked"<!-- ENDIF --> /> {L_YES}</label>
021                  <label><input type="radio" name="force_unstable" class="radio" value="0"<!-- IF not FORCE_UNSTABLE --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
022              </dd>
023          </dl>
024   
025          <p class="submit-buttons">
026              <input class="button1" type="submit" name="update" value="{L_SUBMIT}" />&nbsp;
027              <input class="button2" type="reset" name="reset" value="{L_RESET}" />
028              <input type="hidden" name="action" value="set_config_version_check_force_unstable" />
029              {S_FORM_TOKEN}
030          </p>
031      </fieldset>
032      </form>
033   
034      <table class="table1">
035          <col class="row1" ><col class="row1" ><col class="row2" ><col class="row2" >
036      <thead>
037          <tr>
038              <th>{L_EXTENSION_NAME}</th>
039              <th style="text-align: center; width: 20%;">{L_CURRENT_VERSION}</th>
040              <th style="text-align: center; width: 10%;">{L_EXTENSION_OPTIONS}</th>
041              <th style="text-align: center; width: 25%;">{L_EXTENSION_ACTIONS}</th>
042          </tr>
043      </thead>
044      <tbody>
045          <!-- IF .enabled -->
046          <tr>
047              <td class="row3" colspan="4"><strong>{L_EXTENSIONS_ENABLED}</strong></td>
048          </tr>
049          <!-- BEGIN enabled -->
050          <tr class="ext_enabled">
051              <td><strong>{enabled.META_DISPLAY_NAME}</strong></td>
052              <td style="text-align: center;">
053                  <!-- IF enabled.S_VERSIONCHECK -->
054                  <strong <!-- IF enabled.S_UP_TO_DATE -->style="color: #228822;"<!-- ELSE -->style="color: #BC2A4D;"<!-- ENDIF -->>{enabled.META_VERSION}</strong>
055                  <!-- ELSE -->
056                  {enabled.META_VERSION}
057                  <!-- ENDIF -->
058              </td>
059              <td style="text-align: center;"><a href="{enabled.U_DETAILS}">{L_DETAILS}</a></td>
060              <td style="text-align: center;">
061                  <!-- BEGIN actions -->
062                      <a href="{enabled.actions.U_ACTION}"<!-- IF enabled.actions.L_ACTION_EXPLAIN --> title="{enabled.actions.L_ACTION_EXPLAIN}"<!-- ENDIF -->>{enabled.actions.L_ACTION}</a>
063                      <!-- IF not enabled.actions.S_LAST_ROW -->&nbsp;|&nbsp;<!-- ENDIF -->
064                  <!-- END actions -->
065              </td>
066          </tr>
067          <!-- END enabled -->
068          <!-- ENDIF -->
069   
070          <!-- IF .disabled -->
071          <tr>
072              <td class="row3" colspan="4"><strong>{L_EXTENSIONS_DISABLED}</strong></td>
073          </tr>
074          <!-- BEGIN disabled -->
075          <tr class="ext_disabled">
076              <td><strong>{disabled.META_DISPLAY_NAME}</strong></td>
077              <td style="text-align: center;">
078                  <!-- IF disabled.S_VERSIONCHECK -->
079                  <strong <!-- IF disabled.S_UP_TO_DATE -->style="color: #228822;"<!-- ELSE -->style="color: #BC2A4D;"<!-- ENDIF -->>{disabled.META_VERSION}</strong>
080                  <!-- ELSE -->
081                  {disabled.META_VERSION}
082                  <!-- ENDIF -->
083              </td>
084              <td style="text-align: center;">
085                  <!-- IF disabled.U_DETAILS --><a href="{disabled.U_DETAILS}">{L_DETAILS}</a><!-- ENDIF -->
086              </td>
087              <td style="text-align: center;">
088                  <!-- BEGIN actions -->
089                      <a href="{disabled.actions.U_ACTION}"<!-- IF disabled.actions.L_ACTION_EXPLAIN --> title="{disabled.actions.L_ACTION_EXPLAIN}"<!-- ENDIF -->>{disabled.actions.L_ACTION}</a>
090                      <!-- IF not disabled.actions.S_LAST_ROW -->&nbsp;|&nbsp;<!-- ENDIF -->
091                  <!-- END actions -->
092              </td>
093          </tr>
094          <!-- END disabled -->
095          <!-- ENDIF -->
096      </tbody>
097      </table>
098   
099      <table class="table1">
100      <tr>
101          <th>{L_EXTENSION_UPDATE_HEADLINE}</th>
102      </tr>
103      <tr>
104          <td class="row3">{L_EXTENSION_UPDATE_EXPLAIN}</td>
105      </tr>
106      <tr>
107          <th>{L_EXTENSION_REMOVE_HEADLINE}</th>
108      </tr>
109      <tr>
110          <td class="row3">{L_EXTENSION_REMOVE_EXPLAIN}</td>
111      </tr>
112      </tbody>
113      </table>
114   
115  <!-- INCLUDE overall_footer.html -->
116