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_styles.html
001 <!-- INCLUDE overall_header.html -->
002
003 <a id="maincontent"></a>
004
005 <!-- IF S_STYLE_DETAILS -->
006 <a href="{U_ACTION}" style="float: {S_CONTENT_FLOW_END};">« {L_BACK}</a>
007 <!-- ENDIF -->
008
009 <!-- IF S_CONFIRM_ACTION -->
010 <form id="confirm" method="post" action="{S_CONFIRM_ACTION}">
011
012 <fieldset>
013 <h1>{MESSAGE_TITLE}</h1>
014 <p>{MESSAGE_TEXT}</p>
015 <!-- IF S_CONFIRM_DELETE -->
016 <label><input type="checkbox" class="checkbox" name="confirm_delete_files" /> {L_DELETE_FROM_FS}</label>
017 <!-- ENDIF -->
018
019 {S_HIDDEN_FIELDS}
020
021 <div style="text-align: center;">
022 <input type="submit" name="confirm" value="{L_YES}" class="button2" />
023 <input type="submit" name="cancel" value="{L_NO}" class="button2" />
024 </div>
025
026 </fieldset>
027
028 </form>
029 <!-- ELSE -->
030
031 <!-- IF L_TITLE --><h1>{L_TITLE}</h1><!-- ENDIF -->
032
033 <!-- IF L_EXPLAIN --><p>{L_EXPLAIN}</p><!-- ENDIF -->
034
035 <fieldset class="quick">
036 <span class="small"><a href="https://www.phpbb.com/go/customise/styles/3.3" target="_blank">{L_BROWSE_STYLES_DATABASE}</a></span>
037 </fieldset>
038
039 <form id="acp_styles" method="post" action="{U_ACTION}">
040 {S_HIDDEN_FIELDS}
041 {S_FORM_TOKEN}
042
043 <!-- IF S_STYLE_DETAILS -->
044 <input type="hidden" name="id" value="{STYLE_ID}" />
045 <fieldset>
046 <dl>
047 <dt><label for="name">{L_STYLE_NAME}{L_COLON}</label></dt>
048 <dd><input type="text" id="name" name="style_name" value="{STYLE_NAME}" /></dd>
049 </dl>
050 <dl>
051 <dt><label>{L_STYLE_PATH}{L_COLON}</label></dt>
052 <dd><strong>{STYLE_PATH}</strong></dd>
053 </dl>
054 <dl>
055 <dt><label>{L_STYLE_VERSION}{L_COLON}</label></dt>
056 <dd><strong>{STYLE_VERSION}</strong></dd>
057 </dl>
058 <dl>
059 <dt><label for="name">{L_COPYRIGHT}{L_COLON}</label></dt>
060 <dd><strong>{STYLE_COPYRIGHT}</strong></dd>
061 </dl>
062 <dl>
063 <dt><label for="style_parent">{L_INHERITING_FROM}{L_COLON}</label></dt>
064 <dd><select id="style_parent" name="style_parent">
065 <option value=""<!-- IF STYLE_PARENT == 0 --> selected="selected"<!-- ENDIF -->> - </option>
066 <!-- BEGIN parent_styles -->
067 <option value="{parent_styles.STYLE_ID}"<!-- IF parent_styles.STYLE_ID == STYLE_PARENT --> selected="selected"<!-- ENDIF -->>{parent_styles.SPACER}{parent_styles.STYLE_NAME}</option>
068 <!-- END parent_styles -->
069 </select></dd>
070 </dl>
071 <dl>
072 <dt><label for="style_active">{L_STYLE_ACTIVE}{L_COLON}</label></dt>
073 <dd><label><input type="radio" class="radio" name="style_active" value="1"<!-- IF S_STYLE_ACTIVE --> id="style_active" checked="checked"<!-- ENDIF --> /> {L_YES}</label>
074 <label><input type="radio" class="radio" name="style_active" value="0"<!-- IF not S_STYLE_ACTIVE --> id="style_active" checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd>
075 </dl>
076 <!-- IF not S_STYLE_DEFAULT -->
077 <dl>
078 <dt><label for="style_default">{L_STYLE_DEFAULT}{L_COLON}</label></dt>
079 <dd><label><input type="radio" class="radio" name="style_default" value="1" /> {L_YES}</label>
080 <label><input type="radio" class="radio" id="style_default" name="style_default" value="0" checked="checked" /> {L_NO}</label></dd>
081 </dl>
082 <!-- ENDIF -->
083 </fieldset>
084
085 <fieldset class="submit-buttons">
086 <legend>{L_SUBMIT}</legend>
087 <input class="button1" type="submit" name="update" value="{L_SUBMIT}" />
088 <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
089 {S_FORM_TOKEN}
090 </fieldset>
091 <!-- ENDIF -->
092
093 <!-- IF .styles_list -->
094 <!-- EVENT acp_styles_list_before -->
095 <table class="table1 styles">
096 <thead>
097 <tr>
098 <th>{L_STYLE_NAME}</th>
099 <th style="width: 10%; white-space: nowrap; text-align: center;">{{ lang('STYLE_VERSION') }}</th>
100 <th style="width: 10%; white-space: nowrap; text-align: center;">{L_STYLE_PHPBB_VERSION}</th>
101 <!-- IF not STYLES_LIST_HIDE_COUNT --><th style="width: 10%; white-space: nowrap; text-align: center;">{L_STYLE_USED_BY}</th><!-- ENDIF -->
102 <th style="width: 25%; white-space: nowrap; text-align: center;">{L_ACTIONS}</th>
103 {STYLES_LIST_EXTRA}
104 <th> </th>
105 </tr>
106 </thead>
107 <!-- BEGIN styles_list -->
108 <tbody id="styles-list-{styles_list.S_ROW_COUNT}">
109 <tr class="row-highlight<!-- IF styles_list.STYLE_ID and not styles_list.STYLE_ACTIVE --> row-inactive<!-- ENDIF -->">
110 <!-- IF styles_list.LEVEL is odd -->
111 <!-- IF $ROW_CLASS == 'row1a' --><!-- DEFINE $ROW_CLASS = 'row1b' --><!-- ELSE --><!-- DEFINE $ROW_CLASS = 'row1a' --><!-- ENDIF -->
112 <!-- ELSE -->
113 <!-- IF $ROW_CLASS == 'row2a' --><!-- DEFINE $ROW_CLASS = 'row2b' --><!-- ELSE --><!-- DEFINE $ROW_CLASS = 'row2a' --><!-- ENDIF -->
114 <!-- ENDIF -->
115 <td class="{$ROW_CLASS}" style="padding-{S_CONTENT_FLOW_BEGIN}: {styles_list.PADDING}px;">
116 <!-- IF styles_list.STYLE_ID and styles_list.COMMENT == '' and styles_list.STYLE_ACTIVE -->
117 <div class="default-style" style="display: none; float: {S_CONTENT_FLOW_END};">
118 <input class="radio" type="radio" name="default" value="{styles_list.STYLE_ID}"<!-- IF styles_list.DEFAULT --> checked="checked"<!-- ELSE --><!-- DEFINE $S_DEFAULT = 1 --><!-- ENDIF --> title="{L_STYLE_DEFAULT}" />
119 </div>
120 <!-- ENDIF -->
121 <!-- IF styles_list.DEFAULT or styles_list.SHOW_COPYRIGHT -->
122 <strong>{styles_list.STYLE_NAME}</strong>
123 <!-- IF styles_list.SHOW_COPYRIGHT and styles_list.COMMENT == '' --><span><br />{styles_list.STYLE_COPYRIGHT}</span><!-- ENDIF -->
124 <!-- ELSE -->
125 <span>{styles_list.STYLE_NAME}</span>
126 <!-- ENDIF -->
127 <!-- IF styles_list.COMMENT != '' -->
128 <span class="error"><br />{styles_list.COMMENT}</span>
129 <!-- ENDIF -->
130 <!-- IF not styles_list.STYLE_ID and styles_list.COMMENT == '' -->
131 <span class="style-path"><br />{L_STYLE_PATH}{L_COLON} {styles_list.STYLE_PATH_FULL}</span>
132 <!-- ENDIF -->
133 </td>
134 <td class="{$ROW_CLASS} users">{{ styles_list.STYLE_VERSION }}</td>
135 <td class="{$ROW_CLASS} users">{styles_list.STYLE_PHPBB_VERSION}</td>
136 <!-- IF not STYLES_LIST_HIDE_COUNT -->
137 <td class="{$ROW_CLASS} users">{styles_list.USERS}</td>
138 <!-- ENDIF -->
139 <td class="{$ROW_CLASS} actions">
140 <!-- BEGIN actions -->
141 <!-- IF styles_list.actions.S_ROW_COUNT > 0 --> | <!-- ENDIF -->
142 <!-- IF styles_list.actions.U_ACTION -->
143 <a href="{styles_list.actions.U_ACTION}"{styles_list.actions.U_ACTION_ATTR}>{styles_list.actions.L_ACTION}</a>
144 <!-- ENDIF -->
145 {styles_list.actions.HTML}
146 <!-- END actions -->
147 </td>
148 {styles_list.EXTRA}
149 <td class="{$ROW_CLASS} mark" style="width: 20px;">
150 <!-- IF styles_list.STYLE_ID -->
151 {% if styles_list.STYLE_NAME !== 'prosilver' %}
152 <input class="checkbox" type="checkbox" name="ids[]" value="{styles_list.STYLE_ID}" />
153 {% endif %}
154 <!-- ELSE -->
155 <!-- IF styles_list.COMMENT != '' -->
156
157 <!-- ELSE -->
158 <input class="checkbox" type="checkbox" name="dirs[]" value="{styles_list.STYLE_PATH}" />
159 <!-- ENDIF -->
160 <!-- ENDIF -->
161 </td>
162 </tr>
163 </tbody>
164 <!-- END styles_list -->
165 </table>
166 <!-- ENDIF -->
167
168 <!-- IF .extra_actions -->
169 <fieldset class="quick">
170 <!-- BEGIN extra_actions -->
171 <input type="submit" name="{extra_actions.ACTION_NAME}" class="button2" value="{extra_actions.L_ACTION}" />
172 <!-- END extra_actions -->
173 </fieldset>
174 <!-- ENDIF -->
175
176 </form>
177
178 <!-- ENDIF -->
179
180 <!-- INCLUDE overall_footer.html -->
181