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_users.html
001 <!-- INCLUDE overall_header.html -->
002
003 <a id="maincontent"></a>
004
005 <!-- IF S_SELECT_USER -->
006
007 <h1>{L_USER_ADMIN}</h1>
008
009 <p>{L_USER_ADMIN_EXPLAIN}</p>
010
011 <form id="select_user" method="post" action="{U_ACTION}">
012
013 <fieldset>
014 <legend>{L_SELECT_USER}</legend>
015 <dl>
016 <dt><label for="username">{L_ENTER_USERNAME}{L_COLON}</label></dt>
017 <dd><input class="text medium" type="text" id="username" name="username" /></dd>
018 <dd>[ <a href="{U_FIND_USERNAME}" onclick="find_username(this.href); return false;">{L_FIND_USERNAME}</a> ]</dd>
019 <dd class="full" style="text-align: left;"><label><input type="checkbox" class="radio" id="anonymous" name="u" value="{ANONYMOUS_USER_ID}" /> {L_SELECT_ANONYMOUS}</label></dd>
020 </dl>
021
022 <p class="quick">
023 <input type="submit" name="submituser" value="{L_SUBMIT}" class="button1" />
024 </p>
025 </fieldset>
026
027 </form>
028
029 <!-- ELSEIF S_SELECT_FORUM -->
030
031 <a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">« {L_BACK}</a>
032
033 <h1>{L_USER_ADMIN}</h1>
034
035 <p>{L_USER_ADMIN_EXPLAIN}</p>
036
037 <form id="select_forum" method="post" action="{U_ACTION}">
038
039 <fieldset>
040 <legend>{L_USER_ADMIN_MOVE_POSTS}</legend>
041 <dl>
042 <dt><label for="new_forum">{L_USER_ADMIN_MOVE_POSTS}</label><br /><span>{L_MOVE_POSTS_EXPLAIN}</span></dt>
043 <dd><select id="new_forum" name="new_f">{S_FORUM_OPTIONS}</select></dd>
044 </dl>
045 </fieldset>
046
047 <fieldset class="quick">
048 <input type="submit" name="update" value="{L_SUBMIT}" class="button1" />
049 {S_FORM_TOKEN}
050 </fieldset>
051 </form>
052
053 <!-- ELSE -->
054
055 <a href="{U_BACK}" style="float: {S_CONTENT_FLOW_END};">« {L_BACK}</a>
056
057 <h1>{L_USER_ADMIN} :: {MANAGED_USERNAME}</h1>
058
059 <p>{L_USER_ADMIN_EXPLAIN}</p>
060
061 <!-- IF S_ERROR -->
062 <div class="errorbox">
063 <h3>{L_WARNING}</h3>
064 <p>{ERROR_MSG}</p>
065 </div>
066 <!-- ENDIF -->
067
068 <form id="mode_select" method="post" action="{U_MODE_SELECT}">
069
070 <fieldset class="quick">
071 {L_SELECT_FORM}{L_COLON} <select name="mode" onchange="if (this.options[this.selectedIndex].value != '') this.form.submit();">{S_FORM_OPTIONS}</select> <input class="button2" type="submit" value="{L_GO}" />
072 {S_FORM_TOKEN}
073 </fieldset>
074 </form>
075
076 <!-- ENDIF -->
077
078 <!-- IF S_OVERVIEW -->
079
080 <!-- INCLUDE acp_users_overview.html -->
081
082 <!-- ELSEIF S_FEEDBACK -->
083
084 <!-- INCLUDE acp_users_feedback.html -->
085
086 <!-- ELSEIF S_WARNINGS -->
087
088 <!-- INCLUDE acp_users_warnings.html -->
089
090 <!-- ELSEIF S_PROFILE -->
091
092 <!-- INCLUDE acp_users_profile.html -->
093
094 <!-- ELSEIF S_PREFS -->
095
096 <!-- INCLUDE acp_users_prefs.html -->
097
098 <!-- ELSEIF S_AVATAR -->
099
100 <!-- INCLUDE acp_users_avatar.html -->
101
102 <!-- ELSEIF S_RANK -->
103
104 <form id="user_prefs" method="post" action="{U_ACTION}">
105
106 <fieldset>
107 <legend>{L_ACP_USER_RANK}</legend>
108 <dl>
109 <dt><label for="user_rank">{L_USER_RANK}{L_COLON}</label></dt>
110 <dd><select name="user_rank" id="user_rank">{S_RANK_OPTIONS}</select></dd>
111 </dl>
112 </fieldset>
113
114 <fieldset class="quick">
115 <input class="button1" type="submit" name="update" value="{L_SUBMIT}" />
116 {S_FORM_TOKEN}
117 </fieldset>
118 </form>
119
120 <!-- ELSEIF S_SIGNATURE -->
121
122 <!-- INCLUDE acp_users_signature.html -->
123
124 <!-- ELSEIF S_GROUPS -->
125
126 <form id="user_groups" method="post" action="{U_ACTION}">
127
128 <table class="table1 zebra-table">
129 <tbody>
130 <!-- BEGIN group -->
131 <!-- IF group.S_NEW_GROUP_TYPE -->
132 <tr>
133 <td class="row3" colspan="4"><strong>{group.GROUP_TYPE}</strong></td>
134 </tr>
135 <!-- ELSE -->
136 <tr>
137 <td><a href="{group.U_EDIT_GROUP}">{group.GROUP_NAME}</a></td>
138 <td><!-- IF group.S_IS_MEMBER --><!-- IF group.S_NO_DEFAULT --><a href="{group.U_DEFAULT}">{L_GROUP_DEFAULT}</a><!-- ELSE --><strong>{L_GROUP_DEFAULT}</strong><!-- ENDIF --><!-- ELSEIF not group.S_IS_MEMBER and group.U_APPROVE --><a href="{group.U_APPROVE}">{L_GROUP_APPROVE}</a><!-- ELSE --> <!-- ENDIF --></td>
139 <td><!-- IF group.S_IS_MEMBER and not group.S_SPECIAL_GROUP --><a href="{group.U_DEMOTE_PROMOTE}">{group.L_DEMOTE_PROMOTE}</a><!-- ELSE --> <!-- ENDIF --></td>
140 <td>{% if group.U_DELETE %}<a href="{{ group.U_DELETE }}">{{ lang('GROUP_DELETE') }}</a>{% endif %}</td>
141 </tr>
142 <!-- ENDIF -->
143 <!-- BEGINELSE -->
144 <tr>
145 <td class="row3 centered-text" colspan="4">{{ lang('NO_GROUP') }}</td>
146 </tr>
147 <!-- END group -->
148 </tbody>
149 </table>
150
151 <!-- IF S_GROUP_OPTIONS -->
152 <fieldset class="quick">
153 <!-- EVENT acp_users_select_group_before -->
154 {L_USER_GROUP_ADD}{L_COLON} <select name="g">{S_GROUP_OPTIONS}</select> <input class="button1" type="submit" name="update" value="{L_SUBMIT}" />
155 <!-- EVENT acp_users_select_group_after -->
156 {S_FORM_TOKEN}
157 </fieldset>
158 <!-- ENDIF -->
159 </form>
160
161 <!-- ELSEIF S_ATTACHMENTS -->
162
163 <form id="user_attachments" method="post" action="{U_ACTION}">
164
165
166 <div class="pagination">
167 <!-- IF .pagination -->
168 <!-- INCLUDE pagination.html -->
169 <!-- ENDIF -->
170 </div>
171
172 <!-- IF .attach -->
173 <table class="table1 zebra-table fixed-width-table">
174 <thead>
175 <tr>
176 <th>{L_FILENAME}</th>
177 <th style="width: 20%;">{L_POST_TIME}</th>
178 <th style="width: 20%;">{L_FILESIZE}</th>
179 <th style="width: 20%;">{L_DOWNLOADS}</th>
180 <th style="width: 50px;">{L_MARK}</th>
181 </tr>
182 </thead>
183 <tbody>
184 <!-- BEGIN attach -->
185 <tr>
186 <td><a href="{attach.U_DOWNLOAD}">{attach.REAL_FILENAME}</a><br /><span class="small"><!-- IF attach.S_IN_MESSAGE --><strong>{L_PM}{L_COLON} </strong><!-- ELSE --><strong>{L_POST}{L_COLON} </strong><!-- ENDIF --><a href="{attach.U_VIEW_TOPIC}">{attach.TOPIC_TITLE}</a></span></td>
187 <td style="text-align: center">{attach.POST_TIME}</td>
188 <td style="text-align: center">{attach.SIZE}</td>
189 <td style="text-align: center">{attach.DOWNLOAD_COUNT}</td>
190 <td style="text-align: center"><input type="checkbox" class="radio" name="mark[]" value="{attach.ATTACH_ID}" /></td>
191 </tr>
192 <!-- END attach -->
193 </tbody>
194 </table>
195 <!-- ELSE -->
196 <div class="errorbox">
197 <p>{L_USER_NO_ATTACHMENTS}</p>
198 </div>
199 <!-- ENDIF -->
200 <fieldset class="display-options">
201 {L_SORT_BY}{L_COLON} <select name="sk">{S_SORT_KEY}</select> <select name="sd">{S_SORT_DIR}</select>
202 <input class="button2" type="submit" value="{L_GO}" name="sort" />
203 </fieldset>
204 <hr />
205 <div class="pagination">
206 <!-- IF .pagination -->
207 <!-- INCLUDE pagination.html -->
208 <!-- ENDIF -->
209 </div>
210
211 <fieldset class="quick">
212 <input class="button2" type="submit" name="delmarked" value="{L_DELETE_MARKED}" />
213 <p class="small"><a href="#" onclick="marklist('user_attachments', 'mark', true);">{L_MARK_ALL}</a> • <a href="#" onclick="marklist('user_attachments', 'mark', false);">{L_UNMARK_ALL}</a></p>
214 {S_FORM_TOKEN}
215 </fieldset>
216 </form>
217
218 <!-- ELSEIF S_PERMISSIONS -->
219
220 <div style="float: {S_CONTENT_FLOW_END};">
221 <a href="{U_USER_PERMISSIONS}">» {L_SET_USERS_PERMISSIONS}</a><br />
222 <a href="{U_USER_FORUM_PERMISSIONS}">» {L_SET_USERS_FORUM_PERMISSIONS}</a>
223 </div>
224
225 <form id="select_forum" method="post" action="{U_ACTION}">
226
227 <fieldset class="quick" style="text-align: left;">
228 {L_SELECT_FORUM}{L_COLON} <select name="f">{S_FORUM_OPTIONS}</select>
229 <input class="button2" type="submit" value="{L_GO}" name="select" />
230 {S_FORM_TOKEN}
231 </fieldset>
232 </form>
233
234 <div class="clearfix"> </div>
235
236 <!-- INCLUDE permission_mask.html -->
237
238 <!-- ELSE -->
239
240 <!-- EVENT acp_users_mode_add -->
241
242 <!-- ENDIF -->
243
244 <!-- INCLUDE overall_footer.html -->
245