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. |
|
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
acp_ext_list.html
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="https://www.phpbb.com/go/customise/extensions/3.3" target="_blank">{L_BROWSE_EXTENSIONS_DATABASE}</a> • <a href="{U_VERSIONCHECK_FORCE}">{L_VERSIONCHECK_FORCE_UPDATE_ALL}</a> • <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}" />
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 {% for list in ['enabled', 'disabled', 'not_installed'] %}
046 {% set blockname = attribute(loops, list) %}
047 {% if blockname|length %}
048 <tr>
049 <td class="row3" colspan="4"><strong>{{ lang('EXTENSIONS_' ~ list|upper) }}</strong>
050 {% if list == 'enabled' %}
051 {% EVENT acp_ext_list_enabled_title_after %}
052 {% elseif list == 'disabled' %}
053 {% EVENT acp_ext_list_disabled_title_after %}
054 {% elseif list == 'not_installed' %}
055 {% EVENT acp_ext_list_not_installed_title_after %}
056 {% endif %}
057 </td>
058 </tr>
059 {% for data in blockname %}
060 <tr class="ext_{{ list }} row-highlight">
061 <td><strong title="{{ data.NAME }}">{{ data.META_DISPLAY_NAME }}</strong>
062 {% if list == 'enabled' %}
063 {% EVENT acp_ext_list_enabled_name_after %}
064 {% elseif list == 'disabled' %}
065 {% EVENT acp_ext_list_disabled_name_after %}
066 {% elseif list == 'not_installed' %}
067 {% EVENT acp_ext_list_not_installed_name_after %}
068 {% endif %}
069 </td>
070 <td style="text-align: center;">
071 {% if data.S_VERSIONCHECK %}
072 <strong class="{% if data.S_UP_TO_DATE %}current-ext{% else %}outdated-ext{% endif %}">{{ data.META_VERSION }}</strong>
073 {% if not data.S_UP_TO_DATE %}<i class="fa fa-exclamation-circle outdated-ext" aria-hidden="true"></i>{% endif %}
074 {% else %}
075 {{ data.META_VERSION }}
076 {% endif %}
077 </td>
078 <td style="text-align: center;">
079 {% if data.U_DETAILS %}<a href="{{ data.U_DETAILS }}">{{ lang ('DETAILS') }}</a>{% endif %}
080 </td>
081 <td style="text-align: center;">
082 {% for actions in data.actions %}
083 <a href="{{ actions.U_ACTION }}"{% if actions.L_ACTION_EXPLAIN %} title="{{ actions.L_ACTION_EXPLAIN }}"{% endif %}>{{ actions.L_ACTION }}</a>
084 {% if not actions.S_LAST_ROW %} | {% endif %}
085 {% endfor %}
086 </td>
087 </tr>
088 {% endfor %}
089 {% endif %}
090 {% endfor %}
091 </tbody>
092 </table>
093
094 <table class="table1">
095 <tr>
096 <th>{L_EXTENSION_INSTALL_HEADLINE}</th>
097 </tr>
098 <tr>
099 <td class="row3">{L_EXTENSION_INSTALL_EXPLAIN}</td>
100 </tr>
101 <tr>
102 <th>{L_EXTENSION_UPDATE_HEADLINE}</th>
103 </tr>
104 <tr>
105 <td class="row3">{L_EXTENSION_UPDATE_EXPLAIN}</td>
106 </tr>
107 <tr>
108 <th>{L_EXTENSION_REMOVE_HEADLINE}</th>
109 </tr>
110 <tr>
111 <td class="row3">{L_EXTENSION_REMOVE_EXPLAIN}</td>
112 </tr>
113 </tbody>
114 </table>
115
116 <!-- INCLUDE overall_footer.html -->
117