@@ -63,18 +63,19 @@ discard block |
||
63 | 63 | </dt> |
64 | 64 | <dd> |
65 | 65 | ', $modSettings['smileys_url'], '/'; |
66 | - if ($context['current_set']['id'] == 'default') |
|
67 | - echo '<strong>default</strong><input type="hidden" name="smiley_sets_path" id="smiley_sets_path" value="default">'; |
|
68 | - elseif (empty($context['smiley_set_dirs'])) |
|
69 | - echo ' |
|
66 | + if ($context['current_set']['id'] == 'default') { |
|
67 | + echo '<strong>default</strong><input type="hidden" name="smiley_sets_path" id="smiley_sets_path" value="default">'; |
|
68 | + } elseif (empty($context['smiley_set_dirs'])) { |
|
69 | + echo ' |
|
70 | 70 | <input type="text" name="smiley_sets_path" id="smiley_sets_path" value="', $context['current_set']['path'], '"> '; |
71 | - else |
|
71 | + } else |
|
72 | 72 | { |
73 | 73 | echo ' |
74 | 74 | <select name="smiley_sets_path" id="smiley_sets_path">'; |
75 | - foreach ($context['smiley_set_dirs'] as $smiley_set_dir) |
|
76 | - echo ' |
|
75 | + foreach ($context['smiley_set_dirs'] as $smiley_set_dir) { |
|
76 | + echo ' |
|
77 | 77 | <option value="', $smiley_set_dir['id'], '"', $smiley_set_dir['current'] ? ' selected' : '', $smiley_set_dir['selectable'] ? '' : ' disabled', '>', $smiley_set_dir['id'], '</option>'; |
78 | + } |
|
78 | 79 | echo ' |
79 | 80 | </select> '; |
80 | 81 | } |
@@ -89,14 +90,15 @@ discard block |
||
89 | 90 | </dd>'; |
90 | 91 | |
91 | 92 | // If this is a new smiley set they have the option to import smileys already in the directory. |
92 | - if ($context['current_set']['is_new'] && !empty($modSettings['smiley_enable'])) |
|
93 | - echo ' |
|
93 | + if ($context['current_set']['is_new'] && !empty($modSettings['smiley_enable'])) { |
|
94 | + echo ' |
|
94 | 95 | <dt> |
95 | 96 | <strong><label for="smiley_sets_import">', $txt['smiley_set_import_directory'], '</label>: </strong> |
96 | 97 | </dt> |
97 | 98 | <dd> |
98 | 99 | <input type="checkbox" name="smiley_sets_import" id="smiley_sets_import" value="1"> |
99 | 100 | </dd>'; |
101 | + } |
|
100 | 102 | |
101 | 103 | echo ' |
102 | 104 | </dl> |
@@ -130,9 +132,10 @@ discard block |
||
130 | 132 | <dd> |
131 | 133 | <img src="', $modSettings['smileys_url'], '/', $modSettings['smiley_sets_default'], '/', $context['current_smiley']['filename'], '" id="preview" alt=""> (', $txt['smiley_preview_using'], ': <select name="set" onchange="updatePreview();">'; |
132 | 134 | |
133 | - foreach ($context['smiley_sets'] as $smiley_set) |
|
134 | - echo ' |
|
135 | + foreach ($context['smiley_sets'] as $smiley_set) { |
|
136 | + echo ' |
|
135 | 137 | <option value="', $smiley_set['path'], '"', $context['selected_set'] == $smiley_set['path'] ? ' selected' : '', '>', $smiley_set['name'], '</option>'; |
138 | + } |
|
136 | 139 | |
137 | 140 | echo ' |
138 | 141 | </select>) |
@@ -147,16 +150,17 @@ discard block |
||
147 | 150 | <strong><label for="smiley_filename">', $txt['smileys_filename'], '</label>: </strong> |
148 | 151 | </dt> |
149 | 152 | <dd>'; |
150 | - if (empty($context['filenames'])) |
|
151 | - echo ' |
|
153 | + if (empty($context['filenames'])) { |
|
154 | + echo ' |
|
152 | 155 | <input type="text" name="smiley_filename" id="smiley_filename" value="', $context['current_smiley']['filename'], '">'; |
153 | - else |
|
156 | + } else |
|
154 | 157 | { |
155 | 158 | echo ' |
156 | 159 | <select name="smiley_filename" id="smiley_filename" onchange="updatePreview();">'; |
157 | - foreach ($context['filenames'] as $filename) |
|
158 | - echo ' |
|
160 | + foreach ($context['filenames'] as $filename) { |
|
161 | + echo ' |
|
159 | 162 | <option value="', $filename['id'], '"', $filename['selected'] ? ' selected' : '', '>', $filename['id'], '</option>'; |
163 | + } |
|
160 | 164 | echo ' |
161 | 165 | </select>'; |
162 | 166 | } |
@@ -225,9 +229,10 @@ discard block |
||
225 | 229 | <dd> |
226 | 230 | ', $txt['smiley_preview_using'], ': <select name="set" onchange="updatePreview();selectMethod(\'existing\');">'; |
227 | 231 | |
228 | - foreach ($context['smiley_sets'] as $smiley_set) |
|
229 | - echo ' |
|
232 | + foreach ($context['smiley_sets'] as $smiley_set) { |
|
233 | + echo ' |
|
230 | 234 | <option value="', $smiley_set['path'], '"', $context['selected_set'] == $smiley_set['path'] ? ' selected' : '', '>', $smiley_set['name'], '</option>'; |
235 | + } |
|
231 | 236 | |
232 | 237 | echo ' |
233 | 238 | </select> |
@@ -236,16 +241,17 @@ discard block |
||
236 | 241 | <strong><label for="smiley_filename">', $txt['smileys_filename'], '</label>: </strong> |
237 | 242 | </dt> |
238 | 243 | <dd>'; |
239 | - if (empty($context['filenames'])) |
|
240 | - echo ' |
|
244 | + if (empty($context['filenames'])) { |
|
245 | + echo ' |
|
241 | 246 | <input type="text" name="smiley_filename" id="smiley_filename" value="', $context['current_smiley']['filename'], '" onchange="selectMethod(\'existing\');">'; |
242 | - else |
|
247 | + } else |
|
243 | 248 | { |
244 | 249 | echo ' |
245 | 250 | <select name="smiley_filename" id="smiley_filename" onchange="updatePreview();selectMethod(\'existing\');">'; |
246 | - foreach ($context['filenames'] as $filename) |
|
247 | - echo ' |
|
251 | + foreach ($context['filenames'] as $filename) { |
|
252 | + echo ' |
|
248 | 253 | <option value="', $filename['id'], '"', $filename['selected'] ? ' selected' : '', '>', $filename['id'], '</option>'; |
254 | + } |
|
249 | 255 | echo ' |
250 | 256 | </select>'; |
251 | 257 | } |
@@ -273,14 +279,15 @@ discard block |
||
273 | 279 | </fieldset> |
274 | 280 | |
275 | 281 | <dl id="uploadMore" style="display: none;" class="settings">'; |
276 | - foreach ($context['smiley_sets'] as $smiley_set) |
|
277 | - echo ' |
|
282 | + foreach ($context['smiley_sets'] as $smiley_set) { |
|
283 | + echo ' |
|
278 | 284 | <dt> |
279 | 285 | ', $txt['smileys_add_upload_for1'], ' <strong>', $smiley_set['name'], '</strong> ', $txt['smileys_add_upload_for2'], ': |
280 | 286 | </dt> |
281 | 287 | <dd> |
282 | 288 | <input type="file" name="individual_', $smiley_set['name'], '" onchange="selectMethod(\'upload\');"> |
283 | 289 | </dd>'; |
290 | + } |
|
284 | 291 | echo ' |
285 | 292 | </dl> |
286 | 293 | </div> |
@@ -349,24 +356,27 @@ discard block |
||
349 | 356 | <strong>', empty($context['move_smiley']) ? $txt['smileys_move_select_smiley'] : $txt['smileys_move_select_destination'], '...</strong><br>'; |
350 | 357 | foreach ($location['rows'] as $row) |
351 | 358 | { |
352 | - if (!empty($context['move_smiley'])) |
|
353 | - echo ' |
|
359 | + if (!empty($context['move_smiley'])) { |
|
360 | + echo ' |
|
354 | 361 | <a href="', $scripturl, '?action=admin;area=smileys;sa=setorder;location=', $location['id'], ';source=', $context['move_smiley'], ';row=', $row[0]['row'], ';reorder=1;', $context['session_var'], '=', $context['session_id'], '"><span class="generic_icons select_below" title="', $txt['smileys_move_here'], '"></span></a>'; |
362 | + } |
|
355 | 363 | |
356 | 364 | foreach ($row as $smiley) |
357 | 365 | { |
358 | - if (empty($context['move_smiley'])) |
|
359 | - echo '<a href="', $scripturl, '?action=admin;area=smileys;sa=setorder;move=', $smiley['id'], '"><img src="', $modSettings['smileys_url'], '/', $modSettings['smiley_sets_default'], '/', $smiley['filename'], '" style="padding: 2px; border: 0px solid black;" alt="', $smiley['description'], '"></a>'; |
|
360 | - else |
|
361 | - echo '<img src="', $modSettings['smileys_url'], '/', $modSettings['smiley_sets_default'], '/', $smiley['filename'], '" style="padding: 2px;', $smiley['selected'] ? ' border: 2px solid red' : '', ';" alt="', $smiley['description'], '"><a href="', $scripturl, '?action=admin;area=smileys;sa=setorder;location=', $location['id'], ';source=', $context['move_smiley'], ';after=', $smiley['id'], ';reorder=1;', $context['session_var'], '=', $context['session_id'], '" title="', $txt['smileys_move_here'], '"><span class="generic_icons select_below" title="', $txt['smileys_move_here'], '"></span></a>'; |
|
366 | + if (empty($context['move_smiley'])) { |
|
367 | + echo '<a href="', $scripturl, '?action=admin;area=smileys;sa=setorder;move=', $smiley['id'], '"><img src="', $modSettings['smileys_url'], '/', $modSettings['smiley_sets_default'], '/', $smiley['filename'], '" style="padding: 2px; border: 0px solid black;" alt="', $smiley['description'], '"></a>'; |
|
368 | + } else { |
|
369 | + echo '<img src="', $modSettings['smileys_url'], '/', $modSettings['smiley_sets_default'], '/', $smiley['filename'], '" style="padding: 2px;', $smiley['selected'] ? ' border: 2px solid red' : '', ';" alt="', $smiley['description'], '"><a href="', $scripturl, '?action=admin;area=smileys;sa=setorder;location=', $location['id'], ';source=', $context['move_smiley'], ';after=', $smiley['id'], ';reorder=1;', $context['session_var'], '=', $context['session_id'], '" title="', $txt['smileys_move_here'], '"><span class="generic_icons select_below" title="', $txt['smileys_move_here'], '"></span></a>'; |
|
370 | + } |
|
362 | 371 | } |
363 | 372 | |
364 | 373 | echo ' |
365 | 374 | <br>'; |
366 | 375 | } |
367 | - if (!empty($context['move_smiley'])) |
|
368 | - echo ' |
|
376 | + if (!empty($context['move_smiley'])) { |
|
377 | + echo ' |
|
369 | 378 | <a href="', $scripturl, '?action=admin;area=smileys;sa=setorder;location=', $location['id'], ';source=', $context['move_smiley'], ';row=', $location['last_row'], ';reorder=1;', $context['session_var'], '=', $context['session_id'], '"><span class="generic_icons select_below" title="', $txt['smileys_move_here'], '"></span></a>'; |
379 | + } |
|
370 | 380 | echo ' |
371 | 381 | </div> |
372 | 382 | <input type="hidden" name="reorder" value="1"> |
@@ -402,14 +412,15 @@ discard block |
||
402 | 412 | </div> |
403 | 413 | <div class="windowbg2"> |
404 | 414 | <dl class="settings">'; |
405 | - if (!$context['new_icon']) |
|
406 | - echo ' |
|
415 | + if (!$context['new_icon']) { |
|
416 | + echo ' |
|
407 | 417 | <dt> |
408 | 418 | <strong>', $txt['smiley_preview'], ': </strong> |
409 | 419 | </dt> |
410 | 420 | <dd> |
411 | 421 | <img src="', $context['icon']['image_url'], '" alt="', $context['icon']['title'], '"> |
412 | 422 | </dd>'; |
423 | + } |
|
413 | 424 | echo ' |
414 | 425 | <dt> |
415 | 426 | <strong><label for="icon_filename">', $txt['smileys_filename'], '</label>: </strong><br><span class="smalltext">', $txt['icons_filename_all_png'], '</span> |
@@ -434,9 +445,10 @@ discard block |
||
434 | 445 | { |
435 | 446 | echo ' |
436 | 447 | <optgroup label="', $category['name'], '">'; |
437 | - foreach ($category['boards'] as $board) |
|
438 | - echo ' |
|
448 | + foreach ($category['boards'] as $board) { |
|
449 | + echo ' |
|
439 | 450 | <option value="', $board['id'], '"', $board['selected'] ? ' selected' : '', '>', $board['child_level'] > 0 ? str_repeat('==', $board['child_level'] - 1) . '=>' : '', ' ', $board['name'], '</option>'; |
451 | + } |
|
440 | 452 | echo ' |
441 | 453 | </optgroup>'; |
442 | 454 | } |
@@ -451,19 +463,21 @@ discard block |
||
451 | 463 | <option value="0"', empty($context['icon']['after']) ? ' selected' : '', '>', $txt['icons_location_first_icon'], '</option>'; |
452 | 464 | |
453 | 465 | // Print the list of all the icons it can be put after... |
454 | - foreach ($context['icons'] as $id => $data) |
|
455 | - if (empty($context['icon']['id']) || $id != $context['icon']['id']) |
|
466 | + foreach ($context['icons'] as $id => $data) { |
|
467 | + if (empty($context['icon']['id']) || $id != $context['icon']['id']) |
|
456 | 468 | echo ' |
457 | 469 | <option value="', $id, '"', !empty($context['icon']['after']) && $id == $context['icon']['after'] ? ' selected' : '', '>', $txt['icons_location_after'], ': ', $data['title'], '</option>'; |
470 | + } |
|
458 | 471 | |
459 | 472 | echo ' |
460 | 473 | </select> |
461 | 474 | </dd> |
462 | 475 | </dl>'; |
463 | 476 | |
464 | - if (!$context['new_icon']) |
|
465 | - echo ' |
|
477 | + if (!$context['new_icon']) { |
|
478 | + echo ' |
|
466 | 479 | <input type="hidden" name="icon" value="', $context['icon']['id'], '">'; |
480 | + } |
|
467 | 481 | |
468 | 482 | echo ' |
469 | 483 | <input type="submit" name="icons_save" value="', $txt['smileys_save'], '" class="button"> |
@@ -25,13 +25,15 @@ discard block |
||
25 | 25 | </h3> |
26 | 26 | </div>'; |
27 | 27 | |
28 | - if (!empty($context['search_errors'])) |
|
29 | - echo ' |
|
28 | + if (!empty($context['search_errors'])) { |
|
29 | + echo ' |
|
30 | 30 | <div class="errorbox">', implode('<br>', $context['search_errors']['messages']), '</div>'; |
31 | + } |
|
31 | 32 | |
32 | - if (!empty($context['search_ignored'])) |
|
33 | - echo ' |
|
33 | + if (!empty($context['search_ignored'])) { |
|
34 | + echo ' |
|
34 | 35 | <p class="noticebox">', $txt['search_warning_ignored_word' . (count($context['search_ignored']) == 1 ? '' : 's')], ': ', implode(', ', $context['search_ignored']), '</p>'; |
36 | + } |
|
35 | 37 | |
36 | 38 | echo ' |
37 | 39 | <div id="advanced_search" class="roundframe"> |
@@ -42,9 +44,10 @@ discard block |
||
42 | 44 | <dd> |
43 | 45 | <input type="search" name="search" id="searchfor" ', !empty($context['search_params']['search']) ? ' value="' . $context['search_params']['search'] . '"' : '', ' maxlength="', $context['search_string_limit'], '" size="40">'; |
44 | 46 | |
45 | - if (empty($modSettings['search_simple_fulltext'])) |
|
46 | - echo ' |
|
47 | + if (empty($modSettings['search_simple_fulltext'])) { |
|
48 | + echo ' |
|
47 | 49 | <br><em class="smalltext">', $txt['search_example'], '</em>'; |
50 | + } |
|
48 | 51 | |
49 | 52 | echo ' |
50 | 53 | </dd> |
@@ -115,11 +118,12 @@ discard block |
||
115 | 118 | } |
116 | 119 | |
117 | 120 | // If $context['search_params']['topic'] is set, that means we're searching just one topic. |
118 | - if (!empty($context['search_params']['topic'])) |
|
119 | - echo ' |
|
121 | + if (!empty($context['search_params']['topic'])) { |
|
122 | + echo ' |
|
120 | 123 | <p>', $txt['search_specific_topic'], ' "', $context['search_topic']['link'], '".</p> |
121 | 124 | <input type="hidden" name="topic" value="', $context['search_topic']['id'], '"> |
122 | 125 | <input type="submit" name="b_search" value="', $txt['search'], '" class="button">'; |
126 | + } |
|
123 | 127 | |
124 | 128 | echo ' |
125 | 129 | </div> |
@@ -150,14 +154,15 @@ discard block |
||
150 | 154 | |
151 | 155 | foreach ($category['boards'] as $board) |
152 | 156 | { |
153 | - if ($i == $limit) |
|
154 | - echo ' |
|
157 | + if ($i == $limit) { |
|
158 | + echo ' |
|
155 | 159 | </ul> |
156 | 160 | </li> |
157 | 161 | </ul> |
158 | 162 | <ul class="ignoreboards floatright"> |
159 | 163 | <li class="category"> |
160 | 164 | <ul>'; |
165 | + } |
|
161 | 166 | |
162 | 167 | echo ' |
163 | 168 | <li class="board"> |
@@ -245,13 +250,15 @@ discard block |
||
245 | 250 | <div class="roundframe">'; |
246 | 251 | |
247 | 252 | // Did they make any typos or mistakes, perhaps? |
248 | - if (isset($context['did_you_mean'])) |
|
249 | - echo ' |
|
253 | + if (isset($context['did_you_mean'])) { |
|
254 | + echo ' |
|
250 | 255 | <p>', $txt['search_did_you_mean'], ' <a href="', $scripturl, '?action=search2;params=', $context['did_you_mean_params'], '">', $context['did_you_mean'], '</a>.</p>'; |
256 | + } |
|
251 | 257 | |
252 | - if (!empty($context['search_ignored'])) |
|
253 | - echo ' |
|
258 | + if (!empty($context['search_ignored'])) { |
|
259 | + echo ' |
|
254 | 260 | <p>', $txt['search_warning_ignored_word' . (count($context['search_ignored']) == 1 ? '' : 's')], ': ', implode(', ', $context['search_ignored']), '</p>'; |
261 | + } |
|
255 | 262 | |
256 | 263 | echo ' |
257 | 264 | <form action="', $scripturl, '?action=search2" method="post" accept-charset="', $context['character_set'], '"> |
@@ -273,10 +280,11 @@ discard block |
||
273 | 280 | <input type="hidden" name="maxage" value="', !empty($context['search_params']['maxage']) ? $context['search_params']['maxage'] : '9999', '"> |
274 | 281 | <input type="hidden" name="sort" value="', !empty($context['search_params']['sort']) ? $context['search_params']['sort'] : 'relevance', '"> |
275 | 282 | </div>'; |
276 | - if (!empty($context['search_params']['brd'])) |
|
277 | - foreach ($context['search_params']['brd'] as $board_id) |
|
283 | + if (!empty($context['search_params']['brd'])) { |
|
284 | + foreach ($context['search_params']['brd'] as $board_id) |
|
278 | 285 | echo ' |
279 | 286 | <input type="hidden" name="brd[', $board_id, ']" value="', $board_id, '">'; |
287 | + } |
|
280 | 288 | |
281 | 289 | echo ' |
282 | 290 | </form> |
@@ -287,17 +295,19 @@ discard block |
||
287 | 295 | if ($context['compact']) |
288 | 296 | { |
289 | 297 | // Quick moderation set to checkboxes? Oh, how fun :/. |
290 | - if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1) |
|
291 | - echo ' |
|
298 | + if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1) { |
|
299 | + echo ' |
|
292 | 300 | <form action="', $scripturl, '?action=quickmod" method="post" accept-charset="', $context['character_set'], '" name="topicForm">'; |
301 | + } |
|
293 | 302 | |
294 | 303 | echo ' |
295 | 304 | <div class="cat_bar"> |
296 | 305 | <h3 class="catbg"> |
297 | 306 | <span class="floatright">'; |
298 | - if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1) |
|
299 | - echo ' |
|
307 | + if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1) { |
|
308 | + echo ' |
|
300 | 309 | <input type="checkbox" onclick="invertAll(this, this.form, \'topics[]\');">'; |
310 | + } |
|
301 | 311 | echo ' |
302 | 312 | </span> |
303 | 313 | <span class="generic_icons filter"></span> ', $txt['mlist_search_results'], ': ', $context['search_params']['search'], ' |
@@ -305,14 +315,15 @@ discard block |
||
305 | 315 | </div>'; |
306 | 316 | |
307 | 317 | // was anything even found? |
308 | - if (!empty($context['topics'])) |
|
309 | - echo' |
|
318 | + if (!empty($context['topics'])) { |
|
319 | + echo' |
|
310 | 320 | <div class="pagesection"> |
311 | 321 | <span>', $context['page_index'], '</span> |
312 | 322 | </div>'; |
313 | - else |
|
314 | - echo ' |
|
323 | + } else { |
|
324 | + echo ' |
|
315 | 325 | <div class="roundframe">', $txt['find_no_results'], '</div>'; |
326 | + } |
|
316 | 327 | |
317 | 328 | // while we have results to show ... |
318 | 329 | while ($topic = $context['get_topics']()) |
@@ -340,38 +351,43 @@ discard block |
||
340 | 351 | { |
341 | 352 | echo ' |
342 | 353 | <input type="checkbox" name="topics[]" value="', $topic['id'], '">'; |
343 | - } |
|
344 | - else |
|
354 | + } else |
|
345 | 355 | { |
346 | - if ($topic['quick_mod']['remove']) |
|
347 | - echo ' |
|
356 | + if ($topic['quick_mod']['remove']) { |
|
357 | + echo ' |
|
348 | 358 | <a href="', $scripturl, '?action=quickmod;board=' . $topic['board']['id'] . '.0;actions%5B', $topic['id'], '%5D=remove;', $context['session_var'], '=', $context['session_id'], '" class="you_sure"><span class="generic_icons delete" title="', $txt['remove_topic'], '"></span></a>'; |
359 | + } |
|
349 | 360 | |
350 | - if ($topic['quick_mod']['lock']) |
|
351 | - echo ' |
|
361 | + if ($topic['quick_mod']['lock']) { |
|
362 | + echo ' |
|
352 | 363 | <a href="', $scripturl, '?action=quickmod;board=' . $topic['board']['id'] . '.0;actions%5B', $topic['id'], '%5D=lock;', $context['session_var'], '=', $context['session_id'], '" class="you_sure"><span class="generic_icons lock" title="', $topic['is_locked'] ? $txt['set_unlock'] : $txt['set_lock'], '"></span></a>'; |
364 | + } |
|
353 | 365 | |
354 | - if ($topic['quick_mod']['lock'] || $topic['quick_mod']['remove']) |
|
355 | - echo ' |
|
366 | + if ($topic['quick_mod']['lock'] || $topic['quick_mod']['remove']) { |
|
367 | + echo ' |
|
356 | 368 | <br>'; |
369 | + } |
|
357 | 370 | |
358 | - if ($topic['quick_mod']['sticky']) |
|
359 | - echo ' |
|
371 | + if ($topic['quick_mod']['sticky']) { |
|
372 | + echo ' |
|
360 | 373 | <a href="', $scripturl, '?action=quickmod;board=' . $topic['board']['id'] . '.0;actions%5B', $topic['id'], '%5D=sticky;', $context['session_var'], '=', $context['session_id'], '" class="you_sure"><span class="generic_icons sticky" title="', $topic['is_sticky'] ? $txt['set_nonsticky'] : $txt['set_sticky'], '"></span></a>'; |
374 | + } |
|
361 | 375 | |
362 | - if ($topic['quick_mod']['move']) |
|
363 | - echo ' |
|
376 | + if ($topic['quick_mod']['move']) { |
|
377 | + echo ' |
|
364 | 378 | <a href="', $scripturl, '?action=movetopic;topic=', $topic['id'], '.0"><span class="generic_icons move" title="', $txt['move_topic'], '"></span></a>'; |
379 | + } |
|
365 | 380 | } |
366 | 381 | |
367 | 382 | echo ' |
368 | 383 | </div>'; |
369 | 384 | } |
370 | 385 | |
371 | - if ($message['body_highlighted'] != '') |
|
372 | - echo ' |
|
386 | + if ($message['body_highlighted'] != '') { |
|
387 | + echo ' |
|
373 | 388 | <br class="clear"> |
374 | 389 | <div class="list_posts double_height">', $message['body_highlighted'], '</div>'; |
390 | + } |
|
375 | 391 | } |
376 | 392 | |
377 | 393 | echo ' |
@@ -379,11 +395,12 @@ discard block |
||
379 | 395 | </div>'; |
380 | 396 | |
381 | 397 | } |
382 | - if (!empty($context['topics'])) |
|
383 | - echo ' |
|
398 | + if (!empty($context['topics'])) { |
|
399 | + echo ' |
|
384 | 400 | <div class="pagesection"> |
385 | 401 | <span>', $context['page_index'], '</span> |
386 | 402 | </div>'; |
403 | + } |
|
387 | 404 | |
388 | 405 | if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && !empty($context['topics'])) |
389 | 406 | { |
@@ -393,17 +410,19 @@ discard block |
||
393 | 410 | <select class="qaction" name="qaction"', $context['can_move'] ? ' onchange="this.form.move_to.disabled = (this.options[this.selectedIndex].value != \'move\');"' : '', '> |
394 | 411 | <option value="">--------</option>'; |
395 | 412 | |
396 | - foreach ($context['qmod_actions'] as $qmod_action) |
|
397 | - if ($context['can_' . $qmod_action]) |
|
413 | + foreach ($context['qmod_actions'] as $qmod_action) { |
|
414 | + if ($context['can_' . $qmod_action]) |
|
398 | 415 | echo ' |
399 | 416 | <option value="' . $qmod_action . '">' . $txt['quick_mod_' . $qmod_action] . '</option>'; |
417 | + } |
|
400 | 418 | |
401 | 419 | echo ' |
402 | 420 | </select>'; |
403 | 421 | |
404 | - if ($context['can_move']) |
|
405 | - echo ' |
|
422 | + if ($context['can_move']) { |
|
423 | + echo ' |
|
406 | 424 | <span id="quick_mod_jump_to"> </span>'; |
425 | + } |
|
407 | 426 | |
408 | 427 | echo ' |
409 | 428 | <input type="hidden" name="redirect_url" value="', $scripturl . '?action=search2;params=' . $context['params'], '"> |
@@ -413,13 +432,13 @@ discard block |
||
413 | 432 | } |
414 | 433 | |
415 | 434 | |
416 | - if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && !empty($context['topics'])) |
|
417 | - echo ' |
|
435 | + if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && !empty($context['topics'])) { |
|
436 | + echo ' |
|
418 | 437 | <input type="hidden" name="' . $context['session_var'] . '" value="' . $context['session_id'] . '"> |
419 | 438 | </form>'; |
439 | + } |
|
420 | 440 | |
421 | - } |
|
422 | - else |
|
441 | + } else |
|
423 | 442 | { |
424 | 443 | echo ' |
425 | 444 | <div class="cat_bar"> |
@@ -431,9 +450,10 @@ discard block |
||
431 | 450 | <span>', $context['page_index'], '</span> |
432 | 451 | </div>'; |
433 | 452 | |
434 | - if (empty($context['topics'])) |
|
435 | - echo ' |
|
453 | + if (empty($context['topics'])) { |
|
454 | + echo ' |
|
436 | 455 | <div class="information">(', $txt['search_no_results'], ')</div>'; |
456 | + } |
|
437 | 457 | |
438 | 458 | while ($topic = $context['get_topics']()) |
439 | 459 | { |
@@ -448,23 +468,27 @@ discard block |
||
448 | 468 | </div> |
449 | 469 | <div class="list_posts">', $message['body_highlighted'], '</div>'; |
450 | 470 | |
451 | - if ($topic['can_reply']) |
|
452 | - echo ' |
|
471 | + if ($topic['can_reply']) { |
|
472 | + echo ' |
|
453 | 473 | <ul class="quickbuttons">'; |
474 | + } |
|
454 | 475 | |
455 | 476 | // If they *can* reply? |
456 | - if ($topic['can_reply']) |
|
457 | - echo ' |
|
477 | + if ($topic['can_reply']) { |
|
478 | + echo ' |
|
458 | 479 | <li><a href="', $scripturl . '?action=post;topic=' . $topic['id'] . '.' . $message['start'], '"><span class="generic_icons reply_button"></span>', $txt['reply'], '</a></li>'; |
480 | + } |
|
459 | 481 | |
460 | 482 | // If they *can* quote? |
461 | - if ($topic['can_quote']) |
|
462 | - echo ' |
|
483 | + if ($topic['can_quote']) { |
|
484 | + echo ' |
|
463 | 485 | <li><a href="', $scripturl . '?action=post;topic=' . $topic['id'] . '.' . $message['start'] . ';quote=' . $message['id'] . '"><span class="generic_icons quote"></span>', $txt['quote_action'], '</a></li>'; |
486 | + } |
|
464 | 487 | |
465 | - if ($topic['can_reply']) |
|
466 | - echo ' |
|
488 | + if ($topic['can_reply']) { |
|
489 | + echo ' |
|
467 | 490 | </ul>'; |
491 | + } |
|
468 | 492 | echo ' |
469 | 493 | <br class="clear"> |
470 | 494 | </div>'; |
@@ -483,8 +507,8 @@ discard block |
||
483 | 507 | <div class="smalltext righttext" id="search_jump_to"> </div> |
484 | 508 | <script>'; |
485 | 509 | |
486 | - if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && !empty($context['topics']) && $context['can_move']) |
|
487 | - echo ' |
|
510 | + if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && !empty($context['topics']) && $context['can_move']) { |
|
511 | + echo ' |
|
488 | 512 | if (typeof(window.XMLHttpRequest) != "undefined") |
489 | 513 | aJumpTo[aJumpTo.length] = new JumpTo({ |
490 | 514 | sContainerId: "quick_mod_jump_to", |
@@ -499,6 +523,7 @@ discard block |
||
499 | 523 | bDisabled: true, |
500 | 524 | sCustomName: "move_to" |
501 | 525 | });'; |
526 | + } |
|
502 | 527 | |
503 | 528 | echo ' |
504 | 529 | if (typeof(window.XMLHttpRequest) != "undefined") |
@@ -28,14 +28,16 @@ discard block |
||
28 | 28 | <form class="login" action="', $context['login_url'], '" name="frmLogin" id="frmLogin" method="post" accept-charset="', $context['character_set'], '">'; |
29 | 29 | |
30 | 30 | // Did they make a mistake last time? |
31 | - if (!empty($context['login_errors'])) |
|
32 | - echo ' |
|
31 | + if (!empty($context['login_errors'])) { |
|
32 | + echo ' |
|
33 | 33 | <div class="errorbox">', implode('<br>', $context['login_errors']), '</div><br>'; |
34 | + } |
|
34 | 35 | |
35 | 36 | // Or perhaps there's some special description for this time? |
36 | - if (isset($context['description'])) |
|
37 | - echo ' |
|
37 | + if (isset($context['description'])) { |
|
38 | + echo ' |
|
38 | 39 | <div class="information">', $context['description'], '</div>'; |
40 | + } |
|
39 | 41 | |
40 | 42 | // Now just get the basic information - username, password, etc. |
41 | 43 | echo ' |
@@ -51,10 +53,11 @@ discard block |
||
51 | 53 | <dt>', $txt['always_logged_in'], ':</dt> |
52 | 54 | <dd><input type="checkbox" name="cookieneverexp"', $context['never_expire'] ? ' checked' : '', ' onclick="this.form.cookielength.disabled = this.checked;"></dd>'; |
53 | 55 | // If they have deleted their account, give them a chance to change their mind. |
54 | - if (isset($context['login_show_undelete'])) |
|
55 | - echo ' |
|
56 | + if (isset($context['login_show_undelete'])) { |
|
57 | + echo ' |
|
56 | 58 | <dt class="alert">', $txt['undelete_account'], ':</dt> |
57 | 59 | <dd><input type="checkbox" name="undelete"></dd>'; |
60 | + } |
|
58 | 61 | echo ' |
59 | 62 | </dl> |
60 | 63 | <p><input type="submit" value="', $txt['login'], '" class="button"></p> |
@@ -66,8 +69,8 @@ discard block |
||
66 | 69 | setTimeout(function() { |
67 | 70 | document.getElementById("', !empty($context['from_ajax']) ? 'ajax_' : '', isset($context['default_username']) && $context['default_username'] != '' ? 'loginpass' : 'loginuser', '").focus(); |
68 | 71 | }, 150);'; |
69 | - if (!empty($context['from_ajax']) && (empty($modSettings['force_ssl']) || $modSettings['force_ssl'] == 2)) |
|
70 | - echo ' |
|
72 | + if (!empty($context['from_ajax']) && (empty($modSettings['force_ssl']) || $modSettings['force_ssl'] == 2)) { |
|
73 | + echo ' |
|
71 | 74 | form = $("#frmLogin"); |
72 | 75 | form.submit(function(e) { |
73 | 76 | e.preventDefault(); |
@@ -100,16 +103,18 @@ discard block |
||
100 | 103 | |
101 | 104 | return false; |
102 | 105 | });'; |
106 | + } |
|
103 | 107 | |
104 | 108 | echo ' |
105 | 109 | </script> |
106 | 110 | </form>'; |
107 | 111 | |
108 | 112 | // It is a long story as to why we have this when we're clearly not going to use it. |
109 | - if (!empty($context['from_ajax'])) |
|
110 | - echo ' |
|
113 | + if (!empty($context['from_ajax'])) { |
|
114 | + echo ' |
|
111 | 115 | <br> |
112 | 116 | <a href="javascript:self.close();"></a>'; |
117 | + } |
|
113 | 118 | echo ' |
114 | 119 | </div> |
115 | 120 | </div>'; |
@@ -130,9 +135,10 @@ discard block |
||
130 | 135 | </h3> |
131 | 136 | </div> |
132 | 137 | <div class="roundframe noup">'; |
133 | - if (!empty($context['tfa_error']) || !empty($context['tfa_backup_error'])) |
|
134 | - echo ' |
|
138 | + if (!empty($context['tfa_error']) || !empty($context['tfa_backup_error'])) { |
|
139 | + echo ' |
|
135 | 140 | <div class="error">', $txt['tfa_' . (!empty($context['tfa_error']) ? 'code_' : 'backup_') . 'invalid'], '</div>'; |
141 | + } |
|
136 | 142 | echo ' |
137 | 143 | <form action="', $context['tfa_url'], '" method="post" id="frmTfa"> |
138 | 144 | <div id="tfaCode"> |
@@ -155,8 +161,8 @@ discard block |
||
155 | 161 | </form> |
156 | 162 | <script> |
157 | 163 | form = $("#frmTfa");'; |
158 | - if (!empty($context['from_ajax'])) |
|
159 | - echo ' |
|
164 | + if (!empty($context['from_ajax'])) { |
|
165 | + echo ' |
|
160 | 166 | form.submit(function(e) { |
161 | 167 | // If we are submitting backup code, let normal workflow follow since it redirects a couple times into a different page |
162 | 168 | if (form.find("input[name=tfa_backup]:first").val().length > 0) |
@@ -175,6 +181,7 @@ discard block |
||
175 | 181 | |
176 | 182 | return false; |
177 | 183 | });'; |
184 | + } |
|
178 | 185 | echo ' |
179 | 186 | form.find("input[name=backup]").click(function(e) { |
180 | 187 | $("#tfaBackup").show(); |
@@ -206,10 +213,11 @@ discard block |
||
206 | 213 | ', empty($context['kick_message']) ? $txt['only_members_can_access'] : $context['kick_message'], '<br>'; |
207 | 214 | |
208 | 215 | |
209 | - if ($context['can_register']) |
|
210 | - echo sprintf($txt['login_below_or_register'], $scripturl . '?action=signup', $context['forum_name_html_safe']); |
|
211 | - else |
|
212 | - echo $txt['login_below']; |
|
216 | + if ($context['can_register']) { |
|
217 | + echo sprintf($txt['login_below_or_register'], $scripturl . '?action=signup', $context['forum_name_html_safe']); |
|
218 | + } else { |
|
219 | + echo $txt['login_below']; |
|
220 | + } |
|
213 | 221 | |
214 | 222 | // And now the login information. |
215 | 223 | echo ' |
@@ -305,9 +313,10 @@ discard block |
||
305 | 313 | </div> |
306 | 314 | <div class="roundframe centertext noup">'; |
307 | 315 | |
308 | - if (!empty($context['incorrect_password'])) |
|
309 | - echo ' |
|
316 | + if (!empty($context['incorrect_password'])) { |
|
317 | + echo ' |
|
310 | 318 | <div class="error">', $txt['admin_incorrect_password'], '</div>'; |
319 | + } |
|
311 | 320 | |
312 | 321 | echo ' |
313 | 322 | <strong>', $txt['password'], ':</strong> |
@@ -347,11 +356,12 @@ discard block |
||
347 | 356 | <div class="roundframe">'; |
348 | 357 | |
349 | 358 | // You didn't even have an ID? |
350 | - if (empty($context['member_id'])) |
|
351 | - echo ' |
|
359 | + if (empty($context['member_id'])) { |
|
360 | + echo ' |
|
352 | 361 | <dl> |
353 | 362 | <dt>', $txt['invalid_activation_username'], ':</dt> |
354 | 363 | <dd><input type="text" name="user" size="30"></dd>'; |
364 | + } |
|
355 | 365 | |
356 | 366 | echo ' |
357 | 367 | <dt>', $txt['invalid_activation_retry'], ':</dt> |
@@ -388,13 +398,14 @@ discard block |
||
388 | 398 | <dd><input type="password" name="passwd" size="30"></dd> |
389 | 399 | </dl>'; |
390 | 400 | |
391 | - if ($context['can_activate']) |
|
392 | - echo ' |
|
401 | + if ($context['can_activate']) { |
|
402 | + echo ' |
|
393 | 403 | <p>', $txt['invalid_activation_known'], '</p> |
394 | 404 | <dl> |
395 | 405 | <dt>', $txt['invalid_activation_retry'], ':</dt> |
396 | 406 | <dd><input type="text" name="code" size="30"></dd> |
397 | 407 | </dl>'; |
408 | + } |
|
398 | 409 | |
399 | 410 | echo ' |
400 | 411 | <p><input type="submit" value="', $txt['invalid_activation_resend'], '" class="button"></p> |
@@ -52,9 +52,10 @@ discard block |
||
52 | 52 | <legend>', $txt['membergroups_edit_select_group_type'], '</legend> |
53 | 53 | <label for="group_type_private"><input type="radio" name="group_type" id="group_type_private" value="0" checked onclick="swapPostGroup(0);">', $txt['membergroups_group_type_private'], '</label><br>'; |
54 | 54 | |
55 | - if ($context['allow_protected']) |
|
56 | - echo ' |
|
55 | + if ($context['allow_protected']) { |
|
56 | + echo ' |
|
57 | 57 | <label for="group_type_protected"><input type="radio" name="group_type" id="group_type_protected" value="1" onclick="swapPostGroup(0);">', $txt['membergroups_group_type_protected'], '</label><br>'; |
58 | + } |
|
58 | 59 | |
59 | 60 | echo ' |
60 | 61 | <label for="group_type_request"><input type="radio" name="group_type" id="group_type_request" value="2" onclick="swapPostGroup(0);">', $txt['membergroups_group_type_request'], '</label><br> |
@@ -64,14 +65,15 @@ discard block |
||
64 | 65 | </dd>'; |
65 | 66 | } |
66 | 67 | |
67 | - if ($context['post_group'] || $context['undefined_group']) |
|
68 | - echo ' |
|
68 | + if ($context['post_group'] || $context['undefined_group']) { |
|
69 | + echo ' |
|
69 | 70 | <dt id="min_posts_text"> |
70 | 71 | <strong>', $txt['membergroups_min_posts'], ':</strong> |
71 | 72 | </dt> |
72 | 73 | <dd> |
73 | 74 | <input type="number" name="min_posts" id="min_posts_input" size="5"> |
74 | 75 | </dd>'; |
76 | + } |
|
75 | 77 | if (!$context['post_group'] || !empty($modSettings['permission_enable_postgroups'])) |
76 | 78 | { |
77 | 79 | echo ' |
@@ -87,9 +89,10 @@ discard block |
||
87 | 89 | <select name="inheritperm" id="inheritperm_select" onclick="document.getElementById(\'perm_type_inherit\').checked = true;"> |
88 | 90 | <option value="-1">', $txt['membergroups_guests'], '</option> |
89 | 91 | <option value="0" selected>', $txt['membergroups_members'], '</option>'; |
90 | - foreach ($context['groups'] as $group) |
|
91 | - echo ' |
|
92 | + foreach ($context['groups'] as $group) { |
|
93 | + echo ' |
|
92 | 94 | <option value="', $group['id'], '">', $group['name'], '</option>'; |
95 | + } |
|
93 | 96 | echo ' |
94 | 97 | </select> |
95 | 98 | <br> |
@@ -98,9 +101,10 @@ discard block |
||
98 | 101 | <select name="copyperm" id="copyperm_select" onclick="document.getElementById(\'perm_type_copy\').checked = true;"> |
99 | 102 | <option value="-1">', $txt['membergroups_guests'], '</option> |
100 | 103 | <option value="0" selected>', $txt['membergroups_members'], '</option>'; |
101 | - foreach ($context['groups'] as $group) |
|
102 | - echo ' |
|
104 | + foreach ($context['groups'] as $group) { |
|
105 | + echo ' |
|
103 | 106 | <option value="', $group['id'], '">', $group['name'], '</option>'; |
107 | + } |
|
104 | 108 | echo ' |
105 | 109 | </select> |
106 | 110 | <br> |
@@ -173,8 +177,8 @@ discard block |
||
173 | 177 | <input type="text" name="group_name" id="group_name_input" value="', $context['group']['editable_name'], '" size="30"> |
174 | 178 | </dd>'; |
175 | 179 | |
176 | - if ($context['group']['id'] != 3 && $context['group']['id'] != 4) |
|
177 | - echo ' |
|
180 | + if ($context['group']['id'] != 3 && $context['group']['id'] != 4) { |
|
181 | + echo ' |
|
178 | 182 | |
179 | 183 | <dt id="group_desc_text"> |
180 | 184 | <label for="group_desc_input"><strong>', $txt['membergroups_edit_desc'], ':</strong></label> |
@@ -182,6 +186,7 @@ discard block |
||
182 | 186 | <dd> |
183 | 187 | <textarea name="group_desc" id="group_desc_input" rows="4" cols="40">', $context['group']['description'], '</textarea> |
184 | 188 | </dd>'; |
189 | + } |
|
185 | 190 | |
186 | 191 | // Group type... |
187 | 192 | if ($context['group']['allow_post_group']) |
@@ -195,9 +200,10 @@ discard block |
||
195 | 200 | <legend>', $txt['membergroups_edit_select_group_type'], '</legend> |
196 | 201 | <label for="group_type_private"><input type="radio" name="group_type" id="group_type_private" value="0"', !$context['group']['is_post_group'] && $context['group']['type'] == 0 ? ' checked' : '', ' onclick="swapPostGroup(0);">', $txt['membergroups_group_type_private'], '</label><br>'; |
197 | 202 | |
198 | - if ($context['group']['allow_protected']) |
|
199 | - echo ' |
|
203 | + if ($context['group']['allow_protected']) { |
|
204 | + echo ' |
|
200 | 205 | <label for="group_type_protected"><input type="radio" name="group_type" id="group_type_protected" value="1"', $context['group']['type'] == 1 ? ' checked' : '', ' onclick="swapPostGroup(0);">', $txt['membergroups_group_type_protected'], '</label><br>'; |
206 | + } |
|
201 | 207 | |
202 | 208 | echo ' |
203 | 209 | <label for="group_type_request"><input type="radio" name="group_type" id="group_type_request" value="2"', $context['group']['type'] == 2 ? ' checked' : '', ' onclick="swapPostGroup(0);">', $txt['membergroups_group_type_request'], '</label><br> |
@@ -207,8 +213,8 @@ discard block |
||
207 | 213 | </dd>'; |
208 | 214 | } |
209 | 215 | |
210 | - if ($context['group']['id'] != 3 && $context['group']['id'] != 4) |
|
211 | - echo ' |
|
216 | + if ($context['group']['id'] != 3 && $context['group']['id'] != 4) { |
|
217 | + echo ' |
|
212 | 218 | <dt id="group_moderators_text"> |
213 | 219 | <label for="group_moderators"><strong>', $txt['moderators'], ':</strong></label> |
214 | 220 | </dt> |
@@ -226,6 +232,7 @@ discard block |
||
226 | 232 | <option value="2"', $context['group']['hidden'] == 2 ? ' selected' : '', '>', $txt['membergroups_edit_hidden_all'], '</option> |
227 | 233 | </select> |
228 | 234 | </dd>'; |
235 | + } |
|
229 | 236 | |
230 | 237 | // Can they inherit permissions? |
231 | 238 | if ($context['group']['id'] > 1 && $context['group']['id'] != 3) |
@@ -242,9 +249,10 @@ discard block |
||
242 | 249 | <option value="0"', $context['group']['inherited_from'] == 0 ? ' selected' : '', '>', $txt['membergroups_edit_inherit_permissions_from'], ': ', $txt['membergroups_members'], '</option>'; |
243 | 250 | |
244 | 251 | // For all the inheritable groups show an option. |
245 | - foreach ($context['inheritable_groups'] as $id => $group) |
|
246 | - echo ' |
|
252 | + foreach ($context['inheritable_groups'] as $id => $group) { |
|
253 | + echo ' |
|
247 | 254 | <option value="', $id, '"', $context['group']['inherited_from'] == $id ? ' selected' : '', '>', $txt['membergroups_edit_inherit_permissions_from'], ': ', $group, '</option>'; |
255 | + } |
|
248 | 256 | |
249 | 257 | echo ' |
250 | 258 | </select> |
@@ -252,8 +260,8 @@ discard block |
||
252 | 260 | </dd>'; |
253 | 261 | } |
254 | 262 | |
255 | - if ($context['group']['allow_post_group']) |
|
256 | - echo ' |
|
263 | + if ($context['group']['allow_post_group']) { |
|
264 | + echo ' |
|
257 | 265 | |
258 | 266 | <dt id="min_posts_text"> |
259 | 267 | <label for="min_posts_input"><strong>', $txt['membergroups_min_posts'], ':</strong></label> |
@@ -261,6 +269,7 @@ discard block |
||
261 | 269 | <dd> |
262 | 270 | <input type="number" name="min_posts" id="min_posts_input"', $context['group']['is_post_group'] ? ' value="' . $context['group']['min_posts'] . '"' : '', ' size="6"> |
263 | 271 | </dd>'; |
272 | + } |
|
264 | 273 | echo ' |
265 | 274 | <dt> |
266 | 275 | <label for="online_color_input"><strong>', $txt['membergroups_online_color'], ':</strong></label> |
@@ -302,9 +311,10 @@ discard block |
||
302 | 311 | } |
303 | 312 | |
304 | 313 | // No? Hide the entire control. |
305 | - else |
|
306 | - echo ' |
|
314 | + else { |
|
315 | + echo ' |
|
307 | 316 | <input type="hidden" name="icon_image" value="">'; |
317 | + } |
|
308 | 318 | |
309 | 319 | echo ' |
310 | 320 | <dt> |
@@ -315,8 +325,8 @@ discard block |
||
315 | 325 | <input type="text" name="max_messages" id="max_messages_input" value="', $context['group']['id'] == 1 ? 0 : $context['group']['max_messages'], '" size="6"', $context['group']['id'] == 1 ? ' disabled' : '', '> |
316 | 326 | </dd>'; |
317 | 327 | //Force 2FA for this membergroup? |
318 | - if (!empty($modSettings['tfa_mode']) && $modSettings['tfa_mode'] == 2) |
|
319 | - echo ' |
|
328 | + if (!empty($modSettings['tfa_mode']) && $modSettings['tfa_mode'] == 2) { |
|
329 | + echo ' |
|
320 | 330 | <dt> |
321 | 331 | <label for="group_tfa_force_input"><strong>', $txt['membergroups_tfa_force'], ':</strong></label><br> |
322 | 332 | <span class="smalltext">', $txt['membergroups_tfa_force_note'], '</span> |
@@ -324,6 +334,7 @@ discard block |
||
324 | 334 | <dd> |
325 | 335 | <input type="checkbox" name="group_tfa_force"', $context['group']['tfa_required'] ? ' checked' : '', '> |
326 | 336 | </dd>'; |
337 | + } |
|
327 | 338 | |
328 | 339 | if (!empty($context['categories'])) |
329 | 340 | { |
@@ -333,10 +344,11 @@ discard block |
||
333 | 344 | <span class="smalltext">' . $txt['membergroups_new_board_post_groups'] . '</span>' : '', ' |
334 | 345 | </dt> |
335 | 346 | <dd>'; |
336 | - if (!empty($context['can_manage_boards'])) |
|
337 | - echo $txt['membergroups_can_manage_access']; |
|
338 | - else |
|
339 | - template_add_edit_group_boards_list(); |
|
347 | + if (!empty($context['can_manage_boards'])) { |
|
348 | + echo $txt['membergroups_can_manage_access']; |
|
349 | + } else { |
|
350 | + template_add_edit_group_boards_list(); |
|
351 | + } |
|
340 | 352 | |
341 | 353 | echo ' |
342 | 354 | </dd>'; |
@@ -365,20 +377,21 @@ discard block |
||
365 | 377 | sItemListContainerId: \'moderator_container\', |
366 | 378 | aListItems: ['; |
367 | 379 | |
368 | - foreach ($context['group']['moderators'] as $id_member => $member_name) |
|
369 | - echo ' |
|
380 | + foreach ($context['group']['moderators'] as $id_member => $member_name) { |
|
381 | + echo ' |
|
370 | 382 | { |
371 | 383 | sItemId: ', JavaScriptEscape($id_member), ', |
372 | 384 | sItemName: ', JavaScriptEscape($member_name), ' |
373 | 385 | }', $id_member == $context['group']['last_moderator_id'] ? '' : ','; |
386 | + } |
|
374 | 387 | |
375 | 388 | echo ' |
376 | 389 | ] |
377 | 390 | }); |
378 | 391 | </script>'; |
379 | 392 | |
380 | - if ($context['group']['allow_post_group']) |
|
381 | - echo ' |
|
393 | + if ($context['group']['allow_post_group']) { |
|
394 | + echo ' |
|
382 | 395 | <script> |
383 | 396 | function swapPostGroup(isChecked) |
384 | 397 | { |
@@ -426,7 +439,8 @@ discard block |
||
426 | 439 | |
427 | 440 | swapPostGroup(', $context['group']['is_post_group'] ? 'true' : 'false', '); |
428 | 441 | </script>'; |
429 | -} |
|
442 | + } |
|
443 | + } |
|
430 | 444 | |
431 | 445 | /** |
432 | 446 | * The template for determining which boards a group has access to. |
@@ -443,13 +457,13 @@ discard block |
||
443 | 457 | |
444 | 458 | foreach ($context['categories'] as $category) |
445 | 459 | { |
446 | - if (empty($modSettings['deny_boards_access'])) |
|
447 | - echo ' |
|
460 | + if (empty($modSettings['deny_boards_access'])) { |
|
461 | + echo ' |
|
448 | 462 | <li class="category"> |
449 | 463 | <a href="javascript:void(0);" onclick="selectBoards([', implode(', ', $category['child_ids']), '], \'new_group\'); return false;"><strong>', $category['name'], '</strong></a> |
450 | 464 | <ul style="width:100%">'; |
451 | - else |
|
452 | - echo ' |
|
465 | + } else { |
|
466 | + echo ' |
|
453 | 467 | <li class="category"> |
454 | 468 | <strong>', $category['name'], '</strong> |
455 | 469 | <span class="select_all_box"> |
@@ -462,16 +476,17 @@ discard block |
||
462 | 476 | </select> |
463 | 477 | </span> |
464 | 478 | <ul style="width:100%" id="boards_list_', $category['id'], '">'; |
479 | + } |
|
465 | 480 | |
466 | 481 | foreach ($category['boards'] as $board) |
467 | 482 | { |
468 | - if (empty($modSettings['deny_boards_access'])) |
|
469 | - echo ' |
|
483 | + if (empty($modSettings['deny_boards_access'])) { |
|
484 | + echo ' |
|
470 | 485 | <li class="board" style="margin-', $context['right_to_left'] ? 'right' : 'left', ': ', $board['child_level'], 'em;"> |
471 | 486 | <input type="checkbox" name="boardaccess[', $board['id'], ']" id="brd', $board['id'], '" value="allow"', $board['allow'] ? ' checked' : '', '> <label for="brd', $board['id'], '">', $board['name'], '</label> |
472 | 487 | </li>'; |
473 | - else |
|
474 | - echo ' |
|
488 | + } else { |
|
489 | + echo ' |
|
475 | 490 | <li class="board" style="width:100%"> |
476 | 491 | <span style="margin-', $context['right_to_left'] ? 'right' : 'left', ': ', $board['child_level'], 'em;">', $board['name'], ': </span> |
477 | 492 | <span style="width:50%;float:right"> |
@@ -480,6 +495,7 @@ discard block |
||
480 | 495 | <input type="radio" name="boardaccess[', $board['id'], ']" id="deny_brd', $board['id'], '" value="deny"', $board['deny'] ? ' checked' : '', '> <label for="deny_brd', $board['id'], '">', $txt['permissions_option_deny'], '</label> |
481 | 496 | </span> |
482 | 497 | </li>'; |
498 | + } |
|
483 | 499 | } |
484 | 500 | |
485 | 501 | echo ' |
@@ -490,13 +506,13 @@ discard block |
||
490 | 506 | echo ' |
491 | 507 | </ul>'; |
492 | 508 | |
493 | - if (empty($modSettings['deny_boards_access'])) |
|
494 | - echo ' |
|
509 | + if (empty($modSettings['deny_boards_access'])) { |
|
510 | + echo ' |
|
495 | 511 | <br class="clear"><br> |
496 | 512 | <input type="checkbox" id="checkall_check" onclick="invertAll(this, this.form, \'boardaccess\');"> <label for="checkall_check"><em>', $txt['check_all'], '</em></label> |
497 | 513 | </fieldset>'; |
498 | - else |
|
499 | - echo ' |
|
514 | + } else { |
|
515 | + echo ' |
|
500 | 516 | <br class="clear"> |
501 | 517 | <span class="select_all_box"> |
502 | 518 | <em>', $txt['all'], ': </em> |
@@ -512,15 +528,17 @@ discard block |
||
512 | 528 | }); |
513 | 529 | }); |
514 | 530 | </script>'; |
531 | + } |
|
515 | 532 | |
516 | - if ($collapse) |
|
517 | - echo ' |
|
533 | + if ($collapse) { |
|
534 | + echo ' |
|
518 | 535 | <a href="javascript:void(0);" onclick="document.getElementById(\'visible_boards\').style.display = \'block\'; document.getElementById(\'visible_boards_link\').style.display = \'none\'; return false;" id="visible_boards_link" style="display: none;">[ ', $txt['membergroups_select_visible_boards'], ' ]</a> |
519 | 536 | <script> |
520 | 537 | document.getElementById("visible_boards_link").style.display = ""; |
521 | 538 | document.getElementById("visible_boards").style.display = "none"; |
522 | 539 | </script>'; |
523 | -} |
|
540 | + } |
|
541 | + } |
|
524 | 542 | |
525 | 543 | /** |
526 | 544 | * Templatine for viewing the members of a group. |
@@ -544,14 +562,15 @@ discard block |
||
544 | 562 | <span ', $context['group']['online_color'] ? 'style="color: ' . $context['group']['online_color'] . ';"' : '', '>', $context['group']['name'], '</span> ', $context['group']['icons'], ' |
545 | 563 | </dd>'; |
546 | 564 | //Any description to show? |
547 | - if (!empty($context['group']['description'])) |
|
548 | - echo ' |
|
565 | + if (!empty($context['group']['description'])) { |
|
566 | + echo ' |
|
549 | 567 | <dt> |
550 | 568 | <strong>' . $txt['membergroups_members_description'] . ':</strong> |
551 | 569 | </dt> |
552 | 570 | <dd> |
553 | 571 | ', $context['group']['description'], ' |
554 | 572 | </dd>'; |
573 | + } |
|
555 | 574 | |
556 | 575 | echo ' |
557 | 576 | <dt> |
@@ -564,8 +583,9 @@ discard block |
||
564 | 583 | if (!empty($context['group']['moderators'])) |
565 | 584 | { |
566 | 585 | $moderators = array(); |
567 | - foreach ($context['group']['moderators'] as $moderator) |
|
568 | - $moderators[] = '<a href="' . $scripturl . '?action=profile;u=' . $moderator['id'] . '">' . $moderator['name'] . '</a>'; |
|
586 | + foreach ($context['group']['moderators'] as $moderator) { |
|
587 | + $moderators[] = '<a href="' . $scripturl . '?action=profile;u=' . $moderator['id'] . '">' . $moderator['name'] . '</a>'; |
|
588 | + } |
|
569 | 589 | |
570 | 590 | echo ' |
571 | 591 | <dt> |
@@ -591,27 +611,30 @@ discard block |
||
591 | 611 | <tr class="title_bar"> |
592 | 612 | <th><a href="', $scripturl, '?action=', $context['current_action'], (isset($context['admin_area']) ? ';area=' . $context['admin_area'] : ''), ';sa=members;start=', $context['start'], ';sort=name', $context['sort_by'] == 'name' && $context['sort_direction'] == 'up' ? ';desc' : '', ';group=', $context['group']['id'], '">', $txt['name'], $context['sort_by'] == 'name' ? ' <span class="generic_icons sort_' . $context['sort_direction'] . '"></span>' : '', '</a></th>'; |
593 | 613 | |
594 | - if ($context['can_send_email']) |
|
595 | - echo ' |
|
614 | + if ($context['can_send_email']) { |
|
615 | + echo ' |
|
596 | 616 | <th><a href="', $scripturl, '?action=', $context['current_action'], (isset($context['admin_area']) ? ';area=' . $context['admin_area'] : ''), ';sa=members;start=', $context['start'], ';sort=email', $context['sort_by'] == 'email' && $context['sort_direction'] == 'up' ? ';desc' : '', ';group=', $context['group']['id'], '">', $txt['email'], $context['sort_by'] == 'email' ? ' <span class="generic_icons sort_' . $context['sort_direction'] . '"></span>' : '', '</a></th>'; |
617 | + } |
|
597 | 618 | |
598 | 619 | echo ' |
599 | 620 | <th><a href="', $scripturl, '?action=', $context['current_action'], (isset($context['admin_area']) ? ';area=' . $context['admin_area'] : ''), ';sa=members;start=', $context['start'], ';sort=active', $context['sort_by'] == 'active' && $context['sort_direction'] == 'up' ? ';desc' : '', ';group=', $context['group']['id'], '">', $txt['membergroups_members_last_active'], $context['sort_by'] == 'active' ? '<span class="generic_icons sort_' . $context['sort_direction'] . '"></span>' : '', '</a></th> |
600 | 621 | <th><a href="', $scripturl, '?action=', $context['current_action'], (isset($context['admin_area']) ? ';area=' . $context['admin_area'] : ''), ';sa=members;start=', $context['start'], ';sort=registered', $context['sort_by'] == 'registered' && $context['sort_direction'] == 'up' ? ';desc' : '', ';group=', $context['group']['id'], '">', $txt['date_registered'], $context['sort_by'] == 'registered' ? '<span class="generic_icons sort_' . $context['sort_direction'] . '"></span>' : '', '</a></th> |
601 | 622 | <th ', empty($context['group']['assignable']) ? ' colspan="2"' : '', '><a href="', $scripturl, '?action=', $context['current_action'], (isset($context['admin_area']) ? ';area=' . $context['admin_area'] : ''), ';sa=members;start=', $context['start'], ';sort=posts', $context['sort_by'] == 'posts' && $context['sort_direction'] == 'up' ? ';desc' : '', ';group=', $context['group']['id'], '">', $txt['posts'], $context['sort_by'] == 'posts' ? ' <span class="generic_icons sort_' . $context['sort_direction'] . '"></span>' : '', '</a></th>'; |
602 | - if (!empty($context['group']['assignable'])) |
|
603 | - echo ' |
|
623 | + if (!empty($context['group']['assignable'])) { |
|
624 | + echo ' |
|
604 | 625 | <th style="width: 4%"><input type="checkbox" onclick="invertAll(this, this.form);"></th>'; |
626 | + } |
|
605 | 627 | echo ' |
606 | 628 | </tr> |
607 | 629 | </thead> |
608 | 630 | <tbody>'; |
609 | 631 | |
610 | - if (empty($context['members'])) |
|
611 | - echo ' |
|
632 | + if (empty($context['members'])) { |
|
633 | + echo ' |
|
612 | 634 | <tr class="windowbg"> |
613 | 635 | <td colspan="6">', $txt['membergroups_members_no_members'], '</td> |
614 | 636 | </tr>'; |
637 | + } |
|
615 | 638 | |
616 | 639 | foreach ($context['members'] as $member) |
617 | 640 | { |
@@ -630,9 +653,10 @@ discard block |
||
630 | 653 | <td>', $member['last_online'], '</td> |
631 | 654 | <td>', $member['registered'], '</td> |
632 | 655 | <td', empty($context['group']['assignable']) ? ' colspan="2"' : '', '>', $member['posts'], '</td>'; |
633 | - if (!empty($context['group']['assignable'])) |
|
634 | - echo ' |
|
656 | + if (!empty($context['group']['assignable'])) { |
|
657 | + echo ' |
|
635 | 658 | <td style="width: 4%"><input type="checkbox" name="rem[]" value="', $member['id'], '" ', ($context['user']['id'] == $member['id'] && $context['group']['id'] == 1 ? 'onclick="if (this.checked) return confirm(\'' . $txt['membergroups_members_deadmin_confirm'] . '\')" ' : ''), '/></td>'; |
659 | + } |
|
636 | 660 | echo ' |
637 | 661 | </tr>'; |
638 | 662 | } |
@@ -641,11 +665,12 @@ discard block |
||
641 | 665 | </tbody> |
642 | 666 | </table>'; |
643 | 667 | |
644 | - if (!empty($context['group']['assignable'])) |
|
645 | - echo ' |
|
668 | + if (!empty($context['group']['assignable'])) { |
|
669 | + echo ' |
|
646 | 670 | <div class="floatright"> |
647 | 671 | <input type="submit" name="remove" value="', $txt['membergroups_members_remove'], '" class="button "> |
648 | 672 | </div>'; |
673 | + } |
|
649 | 674 | |
650 | 675 | echo ' |
651 | 676 | <div class="pagesection flow_hidden"> |
@@ -679,8 +704,8 @@ discard block |
||
679 | 704 | </form> |
680 | 705 | </div>'; |
681 | 706 | |
682 | - if (!empty($context['group']['assignable'])) |
|
683 | - echo ' |
|
707 | + if (!empty($context['group']['assignable'])) { |
|
708 | + echo ' |
|
684 | 709 | <script> |
685 | 710 | var oAddMemberSuggest = new smc_AutoSuggest({ |
686 | 711 | sSelf: \'oAddMemberSuggest\', |
@@ -696,7 +721,8 @@ discard block |
||
696 | 721 | sItemListContainerId: \'toAddItemContainer\' |
697 | 722 | }); |
698 | 723 | </script>'; |
699 | -} |
|
724 | + } |
|
725 | + } |
|
700 | 726 | |
701 | 727 | /** |
702 | 728 | * Allow the moderator to enter a reason to each user being rejected. |
@@ -716,8 +742,8 @@ discard block |
||
716 | 742 | <dl class="settings">'; |
717 | 743 | |
718 | 744 | // Loop through and print out a reason box for each... |
719 | - foreach ($context['group_requests'] as $request) |
|
720 | - echo ' |
|
745 | + foreach ($context['group_requests'] as $request) { |
|
746 | + echo ' |
|
721 | 747 | <dt> |
722 | 748 | <strong>', sprintf($txt['mc_groupr_reason_desc'], $request['member_link'], $request['group_link']), ':</strong> |
723 | 749 | </dt> |
@@ -725,6 +751,7 @@ discard block |
||
725 | 751 | <input type="hidden" name="groupr[]" value="', $request['id'], '"> |
726 | 752 | <textarea name="groupreason[', $request['id'], ']" rows="3" cols="40" style="min-width: 80%; max-width: 99%;"></textarea> |
727 | 753 | </dd>'; |
754 | + } |
|
728 | 755 | |
729 | 756 | echo ' |
730 | 757 | </dl> |
@@ -26,9 +26,10 @@ discard block |
||
26 | 26 | <div class="cat_bar"> |
27 | 27 | <h3 class="catbg"> |
28 | 28 | <span class="floatleft">', $txt['members_list'], '</span>'; |
29 | - if (!isset($context['old_search'])) |
|
30 | - echo ' |
|
29 | + if (!isset($context['old_search'])) { |
|
30 | + echo ' |
|
31 | 31 | <span class="floatright">', $context['letter_links'], '</span>'; |
32 | + } |
|
32 | 33 | echo ' |
33 | 34 | </h3> |
34 | 35 | </div>'; |
@@ -43,19 +44,22 @@ discard block |
||
43 | 44 | foreach ($context['columns'] as $key => $column) |
44 | 45 | { |
45 | 46 | // @TODO maybe find something nicer? |
46 | - if ($key == 'email_address' && !$context['can_send_email']) |
|
47 | - continue; |
|
47 | + if ($key == 'email_address' && !$context['can_send_email']) { |
|
48 | + continue; |
|
49 | + } |
|
48 | 50 | |
49 | 51 | // This is a selected column, so underline it or some such. |
50 | - if ($column['selected']) |
|
51 | - echo ' |
|
52 | + if ($column['selected']) { |
|
53 | + echo ' |
|
52 | 54 | <th scope="col" class="', $key, isset($column['class']) ? ' ' . $column['class'] : '', ' selected" style="width: auto;"' . (isset($column['colspan']) ? ' colspan="' . $column['colspan'] . '"' : '') . '> |
53 | 55 | <a href="' . $column['href'] . '" rel="nofollow">' . $column['label'] . '</a><span class="generic_icons sort_' . $context['sort_direction'] . '"></span></th>'; |
56 | + } |
|
54 | 57 | // This is just some column... show the link and be done with it. |
55 | - else |
|
56 | - echo ' |
|
58 | + else { |
|
59 | + echo ' |
|
57 | 60 | <th scope="col" class="', $key, isset($column['class']) ? ' ' . $column['class'] : '', '"', isset($column['width']) ? ' style="width: ' . $column['width'] . '"' : '', isset($column['colspan']) ? ' colspan="' . $column['colspan'] . '"' : '', '> |
58 | 61 | ', $column['link'], '</th>'; |
62 | + } |
|
59 | 63 | } |
60 | 64 | echo ' |
61 | 65 | </tr> |
@@ -74,9 +78,10 @@ discard block |
||
74 | 78 | </td> |
75 | 79 | <td class="lefttext">', $member['link'], '</td>'; |
76 | 80 | |
77 | - if (!isset($context['disabled_fields']['website'])) |
|
78 | - echo ' |
|
81 | + if (!isset($context['disabled_fields']['website'])) { |
|
82 | + echo ' |
|
79 | 83 | <td class="centertext website_url">', $member['website']['url'] != '' ? '<a href="' . $member['website']['url'] . '" target="_blank"><span class="generic_icons www" title="' . $member['website']['title'] . '"></span></a>' : '', '</td>'; |
84 | + } |
|
80 | 85 | |
81 | 86 | // Group and date. |
82 | 87 | echo ' |
@@ -89,11 +94,12 @@ discard block |
||
89 | 94 | <td class="centertext" style="white-space: nowrap; width: 15px">', $member['posts'], '</td> |
90 | 95 | <td class="centertext statsbar" style="width: 120px">'; |
91 | 96 | |
92 | - if (!empty($member['post_percent'])) |
|
93 | - echo ' |
|
97 | + if (!empty($member['post_percent'])) { |
|
98 | + echo ' |
|
94 | 99 | <div class="bar" style="width: ', $member['post_percent'] + 4, 'px;"> |
95 | 100 | <div style="width: ', $member['post_percent'], 'px;"></div> |
96 | 101 | </div>'; |
102 | + } |
|
97 | 103 | |
98 | 104 | echo ' |
99 | 105 | </td>'; |
@@ -102,9 +108,10 @@ discard block |
||
102 | 108 | // Show custom fields marked to be shown here |
103 | 109 | if (!empty($context['custom_profile_fields']['columns'])) |
104 | 110 | { |
105 | - foreach ($context['custom_profile_fields']['columns'] as $key => $column) |
|
106 | - echo ' |
|
111 | + foreach ($context['custom_profile_fields']['columns'] as $key => $column) { |
|
112 | + echo ' |
|
107 | 113 | <td class="righttext">', $member['options'][$key], '</td>'; |
114 | + } |
|
108 | 115 | } |
109 | 116 | |
110 | 117 | echo ' |
@@ -112,11 +119,12 @@ discard block |
||
112 | 119 | } |
113 | 120 | } |
114 | 121 | // No members? |
115 | - else |
|
116 | - echo ' |
|
122 | + else { |
|
123 | + echo ' |
|
117 | 124 | <tr> |
118 | 125 | <td colspan="', $context['colspan'], '" class="windowbg">', $txt['search_no_results'], '</td> |
119 | 126 | </tr>'; |
127 | + } |
|
120 | 128 | |
121 | 129 | echo ' |
122 | 130 | </tbody> |
@@ -129,9 +137,10 @@ discard block |
||
129 | 137 | <div class="pagelinks floatleft">', $context['page_index'], '</div>'; |
130 | 138 | |
131 | 139 | // If it is displaying the result of a search show a "search again" link to edit their criteria. |
132 | - if (isset($context['old_search'])) |
|
133 | - echo ' |
|
140 | + if (isset($context['old_search'])) { |
|
141 | + echo ' |
|
134 | 142 | <a class="button" href="', $scripturl, '?action=mlist;sa=search;search=', $context['old_search_value'], '">', $txt['mlist_search_again'], '</a>'; |
143 | + } |
|
135 | 144 | echo ' |
136 | 145 | </div> |
137 | 146 | </div>'; |