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. |
|
(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 <form id="acp_styles" method="post" action="{U_ACTION}">
036 {S_HIDDEN_FIELDS}
037 {S_FORM_TOKEN}
038
039 <!-- IF S_STYLE_DETAILS -->
040 <input type="hidden" name="id" value="{STYLE_ID}" />
041 <fieldset>
042 <dl>
043 <dt><label for="name">{L_STYLE_NAME}{L_COLON}</label></dt>
044 <dd><input type="text" id="name" name="style_name" value="{STYLE_NAME}" /></dd>
045 </dl>
046 <dl>
047 <dt><label>{L_STYLE_PATH}{L_COLON}</label></dt>
048 <dd><strong>{STYLE_PATH}</strong></dd>
049 </dl>
050 <dl>
051 <dt><label for="name">{L_COPYRIGHT}{L_COLON}</label></dt>
052 <dd><strong>{STYLE_COPYRIGHT}</strong></dd>
053 </dl>
054 <dl>
055 <dt><label for="style_parent">{L_INHERITING_FROM}{L_COLON}</label></dt>
056 <dd><select id="style_parent" name="style_parent">
057 <option value=""<!-- IF STYLE_PARENT == 0 --> selected="selected"<!-- ENDIF -->> - </option>
058 <!-- BEGIN parent_styles -->
059 <option value="{parent_styles.STYLE_ID}"<!-- IF parent_styles.STYLE_ID == STYLE_PARENT --> selected="selected"<!-- ENDIF -->>{parent_styles.SPACER}{parent_styles.STYLE_NAME}</option>
060 <!-- END parent_styles -->
061 </select></dd>
062 </dl>
063 <dl>
064 <dt><label for="style_active">{L_STYLE_ACTIVE}{L_COLON}</label></dt>
065 <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>
066 <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>
067 </dl>
068 <!-- IF not S_STYLE_DEFAULT -->
069 <dl>
070 <dt><label for="style_default">{L_STYLE_DEFAULT}{L_COLON}</label></dt>
071 <dd><label><input type="radio" class="radio" name="style_default" value="1" /> {L_YES}</label>
072 <label><input type="radio" class="radio" id="style_default" name="style_default" value="0" checked="checked" /> {L_NO}</label></dd>
073 </dl>
074 <!-- ENDIF -->
075 </fieldset>
076
077 <fieldset class="submit-buttons">
078 <legend>{L_SUBMIT}</legend>
079 <input class="button1" type="submit" name="update" value="{L_SUBMIT}" />
080 <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
081 {S_FORM_TOKEN}
082 </fieldset>
083 <!-- ENDIF -->
084
085 <!-- IF .styles_list -->
086 <table class="table1 styles">
087 <thead>
088 <tr>
089 <th>{L_STYLE_NAME}</th>
090 <!-- IF not STYLES_LIST_HIDE_COUNT --><th width="10%" style="white-space: nowrap; text-align: center;">{L_STYLE_USED_BY}</th><!-- ENDIF -->
091 <th width="25%" style="white-space: nowrap; text-align: center;">{L_ACTIONS}</th>
092 {STYLES_LIST_EXTRA}
093 <th> </th>
094 </tr>
095 </thead>
096 <!-- BEGIN styles_list -->
097 <tbody id="styles-list-{styles_list.S_ROW_COUNT}">
098 <tr<!-- IF styles_list.STYLE_ID and not styles_list.STYLE_ACTIVE --> class="row-inactive"<!-- ENDIF -->>
099 <!-- IF styles_list.LEVEL is odd -->
100 <!-- IF $ROW_CLASS == 'row1a' --><!-- DEFINE $ROW_CLASS = 'row1b' --><!-- ELSE --><!-- DEFINE $ROW_CLASS = 'row1a' --><!-- ENDIF -->
101 <!-- ELSE -->
102 <!-- IF $ROW_CLASS == 'row2a' --><!-- DEFINE $ROW_CLASS = 'row2b' --><!-- ELSE --><!-- DEFINE $ROW_CLASS = 'row2a' --><!-- ENDIF -->
103 <!-- ENDIF -->
104 <td class="{$ROW_CLASS}" style="padding-{S_CONTENT_FLOW_BEGIN}: {styles_list.PADDING}px;">
105 <!-- IF styles_list.STYLE_ID and styles_list.COMMENT == '' and styles_list.STYLE_ACTIVE -->
106 <div class="default-style" style="display: none; float: {S_CONTENT_FLOW_END};">
107 <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}" />
108 </div>
109 <!-- ENDIF -->
110 <!-- IF styles_list.DEFAULT or styles_list.SHOW_COPYRIGHT -->
111 <strong>{styles_list.STYLE_NAME}</strong>
112 <!-- IF styles_list.SHOW_COPYRIGHT and styles_list.COMMENT == '' --><span><br />{styles_list.STYLE_COPYRIGHT}</span><!-- ENDIF -->
113 <!-- ELSE -->
114 <span>{styles_list.STYLE_NAME}</span>
115 <!-- ENDIF -->
116 <!-- IF styles_list.COMMENT != '' -->
117 <span class="error"><br />{styles_list.COMMENT}</span>
118 <!-- ENDIF -->
119 <!-- IF not styles_list.STYLE_ID and styles_list.COMMENT == '' -->
120 <span class="style-path"><br />{L_STYLE_PATH}{L_COLON} {styles_list.STYLE_PATH_FULL}</span>
121 <!-- ENDIF -->
122 </td>
123 <!-- IF not STYLES_LIST_HIDE_COUNT -->
124 <td class="{$ROW_CLASS} users">{styles_list.USERS}</td>
125 <!-- ENDIF -->
126 <td class="{$ROW_CLASS} actions">
127 <!-- BEGIN actions -->
128 <!-- IF styles_list.actions.S_ROW_COUNT > 0 --> | <!-- ENDIF -->
129 <!-- IF styles_list.actions.U_ACTION -->
130 <a href="{styles_list.actions.U_ACTION}"{styles_list.actions.U_ACTION_ATTR}>{styles_list.actions.L_ACTION}</a>
131 <!-- ENDIF -->
132 {styles_list.actions.HTML}
133 <!-- END actions -->
134 </td>
135 {styles_list.EXTRA}
136 <td class="{$ROW_CLASS} mark" width="20">
137 <!-- IF styles_list.STYLE_ID -->
138 <input class="checkbox" type="checkbox" name="ids[]" value="{styles_list.STYLE_ID}" />
139 <!-- ELSE -->
140 <!-- IF styles_list.COMMENT != '' -->
141
142 <!-- ELSE -->
143 <input class="checkbox" type="checkbox" name="dirs[]" value="{styles_list.STYLE_PATH}" />
144 <!-- ENDIF -->
145 <!-- ENDIF -->
146 </td>
147 </tr>
148 </tbody>
149 <!-- END styles_list -->
150 </table>
151 <!-- ENDIF -->
152
153 <!-- IF .extra_actions -->
154 <fieldset class="quick">
155 <!-- BEGIN extra_actions -->
156 <input type="submit" name="{extra_actions.ACTION_NAME}" class="button2" value="{extra_actions.L_ACTION}" />
157 <!-- END extra_actions -->
158 </fieldset>
159 <!-- ENDIF -->
160
161 </form>
162
163 <!-- ENDIF -->
164
165 <!-- INCLUDE overall_footer.html -->
166