@@ -19,26 +19,28 @@ discard block |
||
19 | 19 | global $context, $settings, $scripturl, $txt, $modSettings; |
20 | 20 | |
21 | 21 | // Not allowed to edit? |
22 | - if (!$context['can_modify']) |
|
23 | - echo ' |
|
22 | + if (!$context['can_modify']) { |
|
23 | + echo ' |
|
24 | 24 | <div class="errorbox"> |
25 | 25 | ', sprintf($txt['permission_cannot_edit'], $scripturl . '?action=admin;area=permissions;sa=profiles'), ' |
26 | 26 | </div>'; |
27 | + } |
|
27 | 28 | |
28 | 29 | echo ' |
29 | 30 | <div id="admin_form_wrapper"> |
30 | 31 | <form action="', $scripturl, '?action=admin;area=permissions;sa=quick" method="post" accept-charset="', $context['character_set'], '" name="permissionForm" id="permissionForm">'; |
31 | 32 | |
32 | - if (!empty($context['profile'])) |
|
33 | - echo ' |
|
33 | + if (!empty($context['profile'])) { |
|
34 | + echo ' |
|
34 | 35 | <div class="cat_bar"> |
35 | 36 | <h3 class="catbg">', $txt['permissions_for_profile'], ': "', $context['profile']['name'], '"</h3> |
36 | 37 | </div>'; |
37 | - else |
|
38 | - echo ' |
|
38 | + } else { |
|
39 | + echo ' |
|
39 | 40 | <div class="cat_bar"> |
40 | 41 | <h3 class="catbg">', $txt['permissions_title'], '</h3> |
41 | 42 | </div>'; |
43 | + } |
|
42 | 44 | |
43 | 45 | echo ' |
44 | 46 | <table class="table_grid"> |
@@ -47,13 +49,14 @@ discard block |
||
47 | 49 | <th>', $txt['membergroups_name'], '</th> |
48 | 50 | <th class="small_table">', $txt['membergroups_members_top'], '</th>'; |
49 | 51 | |
50 | - if (empty($modSettings['permission_enable_deny'])) |
|
51 | - echo ' |
|
52 | + if (empty($modSettings['permission_enable_deny'])) { |
|
53 | + echo ' |
|
52 | 54 | <th class="small_table">', $txt['membergroups_permissions'], '</th>'; |
53 | - else |
|
54 | - echo ' |
|
55 | + } else { |
|
56 | + echo ' |
|
55 | 57 | <th class="small_table">', $txt['permissions_allowed'], '</th> |
56 | 58 | <th class="small_table">', $txt['permissions_denied'], '</th>'; |
59 | + } |
|
57 | 60 | |
58 | 61 | echo ' |
59 | 62 | <th class="small_table">', $context['can_modify'] ? $txt['permissions_modify'] : $txt['permissions_view'], '</th> |
@@ -71,22 +74,24 @@ discard block |
||
71 | 74 | <td> |
72 | 75 | ', !empty($group['help']) ? ' <a class="help" href="' . $scripturl . '?action=helpadmin;help=' . $group['help'] . '" onclick="return reqOverlayDiv(this.href);"><span class="generic_icons help" title="' . $txt['help'] . '"></span></a>' : '<img class="icon" src="' . $settings['images_url'] . '/blank.png" alt="' . $txt['help'] . '">', ' <span>', $group['name'], '</span>'; |
73 | 76 | |
74 | - if (!empty($group['children'])) |
|
75 | - echo ' |
|
77 | + if (!empty($group['children'])) { |
|
78 | + echo ' |
|
76 | 79 | <br> |
77 | 80 | <span class="smalltext">', $txt['permissions_includes_inherited'], ': "', implode('", "', $group['children']), '"</span>'; |
81 | + } |
|
78 | 82 | |
79 | 83 | echo ' |
80 | 84 | </td> |
81 | 85 | <td>', $group['can_search'] ? $group['link'] : $group['num_members'], '</td>'; |
82 | 86 | |
83 | - if (empty($modSettings['permission_enable_deny'])) |
|
84 | - echo ' |
|
87 | + if (empty($modSettings['permission_enable_deny'])) { |
|
88 | + echo ' |
|
85 | 89 | <td>', $group['num_permissions']['allowed'], '</td>'; |
86 | - else |
|
87 | - echo ' |
|
90 | + } else { |
|
91 | + echo ' |
|
88 | 92 | <td ', $group['id'] == 1 ? ' style="font-style: italic;"' : '', '>', $group['num_permissions']['allowed'], '</td> |
89 | 93 | <td ', $group['id'] == 1 || $group['id'] == -1 ? ' style="font-style: italic;"' : (!empty($group['num_permissions']['denied']) ? ' class="red"' : ''), '>', $group['num_permissions']['denied'], '</td>'; |
94 | + } |
|
90 | 95 | |
91 | 96 | echo ' |
92 | 97 | <td>', $group['allow_modify'] ? '<a href="' . $scripturl . '?action=admin;area=permissions;sa=modify;group=' . $group['id'] . (empty($context['profile']) ? '' : ';pid=' . $context['profile']['id']) . '">' . ($context['can_modify'] ? $txt['permissions_modify'] : $txt['permissions_view']) . '</a>' : '', '</td> |
@@ -133,9 +138,10 @@ discard block |
||
133 | 138 | <option value="empty">(', $txt['permissions_select_membergroup'], ')</option>'; |
134 | 139 | foreach ($context['groups'] as $group) |
135 | 140 | { |
136 | - if ($group['id'] != 1) |
|
137 | - echo ' |
|
141 | + if ($group['id'] != 1) { |
|
142 | + echo ' |
|
138 | 143 | <option value="', $group['id'], '">', $group['name'], '</option>'; |
144 | + } |
|
139 | 145 | } |
140 | 146 | |
141 | 147 | echo ' |
@@ -145,9 +151,10 @@ discard block |
||
145 | 151 | <select name="add_remove"> |
146 | 152 | <option value="add">', $txt['permissions_add'], '...</option> |
147 | 153 | <option value="clear">', $txt['permissions_remove'], '...</option>'; |
148 | - if (!empty($modSettings['permission_enable_deny'])) |
|
149 | - echo ' |
|
154 | + if (!empty($modSettings['permission_enable_deny'])) { |
|
155 | + echo ' |
|
150 | 156 | <option value="deny">', $txt['permissions_deny'], '...</option>'; |
157 | + } |
|
151 | 158 | echo ' |
152 | 159 | </select> |
153 | 160 | </dt> |
@@ -156,30 +163,34 @@ discard block |
||
156 | 163 | <option value="">(', $txt['permissions_select_permission'], ')</option>'; |
157 | 164 | foreach ($context['permissions'] as $permissionType) |
158 | 165 | { |
159 | - if ($permissionType['id'] == 'membergroup' && !empty($context['profile'])) |
|
160 | - continue; |
|
166 | + if ($permissionType['id'] == 'membergroup' && !empty($context['profile'])) { |
|
167 | + continue; |
|
168 | + } |
|
161 | 169 | |
162 | 170 | foreach ($permissionType['columns'] as $column) |
163 | 171 | { |
164 | 172 | foreach ($column as $permissionGroup) |
165 | 173 | { |
166 | - if ($permissionGroup['hidden']) |
|
167 | - continue; |
|
174 | + if ($permissionGroup['hidden']) { |
|
175 | + continue; |
|
176 | + } |
|
168 | 177 | |
169 | 178 | echo ' |
170 | 179 | <option value="" disabled>[', $permissionGroup['name'], ']</option>'; |
171 | 180 | foreach ($permissionGroup['permissions'] as $perm) |
172 | 181 | { |
173 | - if ($perm['hidden']) |
|
174 | - continue; |
|
182 | + if ($perm['hidden']) { |
|
183 | + continue; |
|
184 | + } |
|
175 | 185 | |
176 | - if ($perm['has_own_any']) |
|
177 | - echo ' |
|
186 | + if ($perm['has_own_any']) { |
|
187 | + echo ' |
|
178 | 188 | <option value="', $permissionType['id'], '/', $perm['own']['id'], '"> ', $perm['name'], ' (', $perm['own']['name'], ')</option> |
179 | 189 | <option value="', $permissionType['id'], '/', $perm['any']['id'], '"> ', $perm['name'], ' (', $perm['any']['name'], ')</option>'; |
180 | - else |
|
181 | - echo ' |
|
190 | + } else { |
|
191 | + echo ' |
|
182 | 192 | <option value="', $permissionType['id'], '/', $perm['id'], '"> ', $perm['name'], '</option>'; |
193 | + } |
|
183 | 194 | } |
184 | 195 | } |
185 | 196 | } |
@@ -246,17 +257,18 @@ discard block |
||
246 | 257 | } |
247 | 258 | </script>'; |
248 | 259 | |
249 | - if (!empty($context['profile'])) |
|
250 | - echo ' |
|
260 | + if (!empty($context['profile'])) { |
|
261 | + echo ' |
|
251 | 262 | <input type="hidden" name="pid" value="', $context['profile']['id'], '">'; |
263 | + } |
|
252 | 264 | |
253 | 265 | echo ' |
254 | 266 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
255 | 267 | <input type="hidden" name="', $context['admin-mpq_token_var'], '" value="', $context['admin-mpq_token'], '">'; |
256 | - } |
|
257 | - else |
|
258 | - echo ' |
|
268 | + } else { |
|
269 | + echo ' |
|
259 | 270 | </table>'; |
271 | + } |
|
260 | 272 | |
261 | 273 | echo ' |
262 | 274 | </form> |
@@ -296,9 +308,10 @@ discard block |
||
296 | 308 | <h3 class="subbg">', $category['name'], '</h3> |
297 | 309 | </div>'; |
298 | 310 | |
299 | - if (!empty($category['boards'])) |
|
300 | - echo ' |
|
311 | + if (!empty($category['boards'])) { |
|
312 | + echo ' |
|
301 | 313 | <ul class="perm_boards flow_hidden">'; |
314 | + } |
|
302 | 315 | |
303 | 316 | foreach ($category['boards'] as $board) |
304 | 317 | { |
@@ -315,33 +328,36 @@ discard block |
||
315 | 328 | echo ' |
316 | 329 | <select name="boardprofile[', $board['id'], ']">'; |
317 | 330 | |
318 | - foreach ($context['profiles'] as $id => $profile) |
|
319 | - echo ' |
|
331 | + foreach ($context['profiles'] as $id => $profile) { |
|
332 | + echo ' |
|
320 | 333 | <option value="', $id, '"', $id == $board['profile'] ? ' selected' : '', '>', $profile['name'], '</option>'; |
334 | + } |
|
321 | 335 | |
322 | 336 | echo ' |
323 | 337 | </select>'; |
324 | - } |
|
325 | - else |
|
326 | - echo ' |
|
338 | + } else { |
|
339 | + echo ' |
|
327 | 340 | <a href="', $scripturl, '?action=admin;area=permissions;sa=index;pid=', $board['profile'], ';', $context['session_var'], '=', $context['session_id'], '">', $board['profile_name'], '</a>'; |
341 | + } |
|
328 | 342 | |
329 | 343 | echo ' |
330 | 344 | </span> |
331 | 345 | </li>'; |
332 | 346 | } |
333 | 347 | |
334 | - if (!empty($category['boards'])) |
|
335 | - echo ' |
|
348 | + if (!empty($category['boards'])) { |
|
349 | + echo ' |
|
336 | 350 | </ul>'; |
351 | + } |
|
337 | 352 | } |
338 | 353 | |
339 | - if ($context['edit_all']) |
|
340 | - echo ' |
|
354 | + if ($context['edit_all']) { |
|
355 | + echo ' |
|
341 | 356 | <input type="submit" name="save_changes" value="', $txt['save'], '" class="button_submit">'; |
342 | - else |
|
343 | - echo ' |
|
357 | + } else { |
|
358 | + echo ' |
|
344 | 359 | <a class="button_link" href="', $scripturl, '?action=admin;area=permissions;sa=board;edit;', $context['session_var'], '=', $context['session_id'], '">', $txt['permissions_board_all'], '</a>'; |
360 | + } |
|
345 | 361 | |
346 | 362 | echo ' |
347 | 363 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -381,12 +397,13 @@ discard block |
||
381 | 397 | <tr class="windowbg"> |
382 | 398 | <td>'; |
383 | 399 | |
384 | - if (!empty($context['show_rename_boxes']) && $profile['can_edit']) |
|
385 | - echo ' |
|
400 | + if (!empty($context['show_rename_boxes']) && $profile['can_edit']) { |
|
401 | + echo ' |
|
386 | 402 | <input type="text" name="rename_profile[', $profile['id'], ']" value="', $profile['name'], '" class="input_text">'; |
387 | - else |
|
388 | - echo ' |
|
403 | + } else { |
|
404 | + echo ' |
|
389 | 405 | <a href="', $scripturl, '?action=admin;area=permissions;sa=index;pid=', $profile['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $profile['name'], '</a>'; |
406 | + } |
|
390 | 407 | |
391 | 408 | echo ' |
392 | 409 | </td> |
@@ -406,9 +423,10 @@ discard block |
||
406 | 423 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
407 | 424 | <input type="hidden" name="', $context['admin-mpp_token_var'], '" value="', $context['admin-mpp_token'], '">'; |
408 | 425 | |
409 | - if ($context['can_edit_something']) |
|
410 | - echo ' |
|
426 | + if ($context['can_edit_something']) { |
|
427 | + echo ' |
|
411 | 428 | <input type="submit" name="rename" value="', empty($context['show_rename_boxes']) ? $txt['permissions_profile_rename'] : $txt['permissions_commit'], '" class="button_submit">'; |
429 | + } |
|
412 | 430 | |
413 | 431 | echo ' |
414 | 432 | <input type="submit" name="delete" value="', $txt['quickmod_delete_selected'], '" class="button_submit" ', !empty($context['show_rename_boxes']) ? ' style="display:none"' : '', '/> |
@@ -433,9 +451,10 @@ discard block |
||
433 | 451 | <dd> |
434 | 452 | <select name="copy_from">'; |
435 | 453 | |
436 | - foreach ($context['profiles'] as $id => $profile) |
|
437 | - echo ' |
|
454 | + foreach ($context['profiles'] as $id => $profile) { |
|
455 | + echo ' |
|
438 | 456 | <option value="', $id, '">', $profile['name'], '</option>'; |
457 | + } |
|
439 | 458 | |
440 | 459 | echo ' |
441 | 460 | </select> |
@@ -463,8 +482,7 @@ discard block |
||
463 | 482 | <div class="errorbox"> |
464 | 483 | ', sprintf($txt['permission_cannot_edit'], $scripturl . '?action=admin;area=permissions;sa=profiles'), ' |
465 | 484 | </div>'; |
466 | - } |
|
467 | - else |
|
485 | + } else |
|
468 | 486 | { |
469 | 487 | echo ' |
470 | 488 | <script> |
@@ -484,21 +502,23 @@ discard block |
||
484 | 502 | <div id="admincenter"> |
485 | 503 | <form id="permissions" action="', $scripturl, '?action=admin;area=permissions;sa=modify2;group=', $context['group']['id'], ';pid=', $context['profile']['id'], '" method="post" accept-charset="', $context['character_set'], '" name="permissionForm" onsubmit="return warnAboutDeny();">'; |
486 | 504 | |
487 | - if (!empty($modSettings['permission_enable_deny']) && $context['group']['id'] != -1) |
|
488 | - echo ' |
|
505 | + if (!empty($modSettings['permission_enable_deny']) && $context['group']['id'] != -1) { |
|
506 | + echo ' |
|
489 | 507 | <div class="information"> |
490 | 508 | ', $txt['permissions_option_desc'], ' |
491 | 509 | </div>'; |
510 | + } |
|
492 | 511 | |
493 | 512 | echo ' |
494 | 513 | <div class="cat_bar"> |
495 | 514 | <h3 class="catbg">'; |
496 | - if ($context['permission_type'] == 'board') |
|
497 | - echo ' |
|
515 | + if ($context['permission_type'] == 'board') { |
|
516 | + echo ' |
|
498 | 517 | ', $txt['permissions_local_for'], ' "', $context['group']['name'], '" ', $txt['permissions_on'], ' "', $context['profile']['name'], '"'; |
499 | - else |
|
500 | - echo ' |
|
518 | + } else { |
|
519 | + echo ' |
|
501 | 520 | ', $context['permission_type'] == 'membergroup' ? $txt['permissions_general'] : $txt['permissions_board'], ' - "', $context['group']['name'], '"'; |
521 | + } |
|
502 | 522 | echo ' |
503 | 523 | </h3> |
504 | 524 | </div>'; |
@@ -521,15 +541,17 @@ discard block |
||
521 | 541 | template_modify_group_display('board'); |
522 | 542 | } |
523 | 543 | |
524 | - if ($context['profile']['can_modify']) |
|
525 | - echo ' |
|
544 | + if ($context['profile']['can_modify']) { |
|
545 | + echo ' |
|
526 | 546 | <div class="padding"> |
527 | 547 | <input type="submit" value="', $txt['permissions_commit'], '" class="button_submit"> |
528 | 548 | </div>'; |
549 | + } |
|
529 | 550 | |
530 | - foreach ($context['hidden_perms'] as $hidden_perm) |
|
531 | - echo ' |
|
551 | + foreach ($context['hidden_perms'] as $hidden_perm) { |
|
552 | + echo ' |
|
532 | 553 | <input type="hidden" name="perm[', $hidden_perm[0], '][', $hidden_perm[1], ']" value="', $hidden_perm[2], '">'; |
554 | + } |
|
533 | 555 | |
534 | 556 | echo ' |
535 | 557 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -557,17 +579,19 @@ discard block |
||
557 | 579 | |
558 | 580 | foreach ($column as $permissionGroup) |
559 | 581 | { |
560 | - if (empty($permissionGroup['permissions'])) |
|
561 | - continue; |
|
582 | + if (empty($permissionGroup['permissions'])) { |
|
583 | + continue; |
|
584 | + } |
|
562 | 585 | |
563 | 586 | // Are we likely to have something in this group to display or is it all hidden? |
564 | 587 | $has_display_content = false; |
565 | 588 | if (!$permissionGroup['hidden']) |
566 | 589 | { |
567 | 590 | // Before we go any further check we are going to have some data to print otherwise we just have a silly heading. |
568 | - foreach ($permissionGroup['permissions'] as $permission) |
|
569 | - if (!$permission['hidden']) |
|
591 | + foreach ($permissionGroup['permissions'] as $permission) { |
|
592 | + if (!$permission['hidden']) |
|
570 | 593 | $has_display_content = true; |
594 | + } |
|
571 | 595 | |
572 | 596 | if ($has_display_content) |
573 | 597 | { |
@@ -576,10 +600,11 @@ discard block |
||
576 | 600 | <th></th> |
577 | 601 | <th', $context['group']['id'] == -1 ? ' colspan="2"' : '', ' class="smalltext">', $permissionGroup['name'], '</th>'; |
578 | 602 | |
579 | - if ($context['group']['id'] != -1) |
|
580 | - echo ' |
|
603 | + if ($context['group']['id'] != -1) { |
|
604 | + echo ' |
|
581 | 605 | <th>', $txt['permissions_option_own'], '</th> |
582 | 606 | <th>', $txt['permissions_option_any'], '</th>'; |
607 | + } |
|
583 | 608 | |
584 | 609 | echo ' |
585 | 610 | </tr>'; |
@@ -602,17 +627,18 @@ discard block |
||
602 | 627 | // Guests can't do their own thing. |
603 | 628 | if ($context['group']['id'] != -1) |
604 | 629 | { |
605 | - if (empty($modSettings['permission_enable_deny'])) |
|
606 | - echo ' |
|
630 | + if (empty($modSettings['permission_enable_deny'])) { |
|
631 | + echo ' |
|
607 | 632 | <input type="checkbox" name="perm[', $permission_type['id'], '][', $permission['own']['id'], ']"', $permission['own']['select'] == 'on' ? ' checked="checked"' : '', ' value="on" id="', $permission['own']['id'], '_on" class="input_check" ', $disable_field, '/>'; |
608 | - else |
|
633 | + } else |
|
609 | 634 | { |
610 | 635 | echo ' |
611 | 636 | <select name="perm[', $permission_type['id'], '][', $permission['own']['id'], ']" ', $disable_field, '>'; |
612 | 637 | |
613 | - foreach (array('on', 'off', 'deny') as $c) |
|
614 | - echo ' |
|
638 | + foreach (array('on', 'off', 'deny') as $c) { |
|
639 | + echo ' |
|
615 | 640 | <option ', $permission['own']['select'] == $c ? ' selected' : '', ' value="', $c, '">', $txt['permissions_option_' . $c], '</option>'; |
641 | + } |
|
616 | 642 | echo ' |
617 | 643 | </select>'; |
618 | 644 | } |
@@ -622,39 +648,41 @@ discard block |
||
622 | 648 | <td>'; |
623 | 649 | } |
624 | 650 | |
625 | - if (empty($modSettings['permission_enable_deny']) || $context['group']['id'] == -1) |
|
626 | - echo ' |
|
651 | + if (empty($modSettings['permission_enable_deny']) || $context['group']['id'] == -1) { |
|
652 | + echo ' |
|
627 | 653 | <input type="checkbox" name="perm[', $permission_type['id'], '][', $permission['any']['id'], ']"', $permission['any']['select'] == 'on' ? ' checked="checked"' : '', ' value="on" class="input_check" ', $disable_field, '/>'; |
628 | - else |
|
654 | + } else |
|
629 | 655 | { |
630 | 656 | echo ' |
631 | 657 | <select name="perm[', $permission_type['id'], '][', $permission['any']['id'], ']" ', $disable_field, '>'; |
632 | 658 | |
633 | - foreach (array('on', 'off', 'deny') as $c) |
|
634 | - echo ' |
|
659 | + foreach (array('on', 'off', 'deny') as $c) { |
|
660 | + echo ' |
|
635 | 661 | <option ', $permission['any']['select'] == $c ? ' selected' : '', ' value="', $c, '">', $txt['permissions_option_' . $c], '</option>'; |
662 | + } |
|
636 | 663 | echo ' |
637 | 664 | </select>'; |
638 | 665 | } |
639 | - } |
|
640 | - else |
|
666 | + } else |
|
641 | 667 | { |
642 | - if ($context['group']['id'] != -1) |
|
643 | - echo ' |
|
668 | + if ($context['group']['id'] != -1) { |
|
669 | + echo ' |
|
644 | 670 | </td> |
645 | 671 | <td>'; |
672 | + } |
|
646 | 673 | |
647 | - if (empty($modSettings['permission_enable_deny']) || $context['group']['id'] == -1) |
|
648 | - echo ' |
|
674 | + if (empty($modSettings['permission_enable_deny']) || $context['group']['id'] == -1) { |
|
675 | + echo ' |
|
649 | 676 | <input type="checkbox" name="perm[', $permission_type['id'], '][', $permission['id'], ']"', $permission['select'] == 'on' ? ' checked="checked"' : '', ' value="on" class="input_check" ', $disable_field, '/>'; |
650 | - else |
|
677 | + } else |
|
651 | 678 | { |
652 | 679 | echo ' |
653 | 680 | <select name="perm[', $permission_type['id'], '][', $permission['id'], ']" ', $disable_field, '>'; |
654 | 681 | |
655 | - foreach (array('on', 'off', 'deny') as $c) |
|
656 | - echo ' |
|
682 | + foreach (array('on', 'off', 'deny') as $c) { |
|
683 | + echo ' |
|
657 | 684 | <option ', $permission['select'] == $c ? ' selected' : '', ' value="', $c, '">', $txt['permissions_option_' . $c], '</option>'; |
685 | + } |
|
658 | 686 | echo ' |
659 | 687 | </select>'; |
660 | 688 | } |
@@ -684,11 +712,11 @@ discard block |
||
684 | 712 | echo ' |
685 | 713 | <fieldset id="', $context['current_permission'], '"> |
686 | 714 | <legend><a href="javascript:void(0);" onclick="document.getElementById(\'', $context['current_permission'], '\').style.display = \'none\';document.getElementById(\'', $context['current_permission'], '_groups_link\').style.display = \'block\'; return false;" class="toggle_up"> ', $txt['avatar_select_permission'], '</a></legend>'; |
687 | - if (empty($modSettings['permission_enable_deny'])) |
|
688 | - echo ' |
|
715 | + if (empty($modSettings['permission_enable_deny'])) { |
|
716 | + echo ' |
|
689 | 717 | <ul>'; |
690 | - else |
|
691 | - echo ' |
|
718 | + } else { |
|
719 | + echo ' |
|
692 | 720 | <div class="information">', $txt['permissions_option_desc'], '</div> |
693 | 721 | <dl class="settings"> |
694 | 722 | <dt> |
@@ -698,46 +726,51 @@ discard block |
||
698 | 726 | </dt> |
699 | 727 | <dd> |
700 | 728 | </dd>'; |
729 | + } |
|
701 | 730 | foreach ($context['member_groups'] as $group) |
702 | 731 | { |
703 | - if (!empty($modSettings['permission_enable_deny'])) |
|
704 | - echo ' |
|
732 | + if (!empty($modSettings['permission_enable_deny'])) { |
|
733 | + echo ' |
|
705 | 734 | <dt>'; |
706 | - else |
|
707 | - echo ' |
|
735 | + } else { |
|
736 | + echo ' |
|
708 | 737 | <li>'; |
738 | + } |
|
709 | 739 | |
710 | - if (empty($modSettings['permission_enable_deny'])) |
|
711 | - echo ' |
|
740 | + if (empty($modSettings['permission_enable_deny'])) { |
|
741 | + echo ' |
|
712 | 742 | <input type="checkbox" name="', $context['current_permission'], '[', $group['id'], ']" value="on"', $group['status'] == 'on' ? ' checked' : '', ' class="input_check">'; |
713 | - else |
|
714 | - echo ' |
|
743 | + } else { |
|
744 | + echo ' |
|
715 | 745 | <span class="perms"><input type="radio" name="', $context['current_permission'], '[', $group['id'], ']" value="on"', $group['status'] == 'on' ? ' checked' : '', ' class="input_radio"></span> |
716 | 746 | <span class="perms"><input type="radio" name="', $context['current_permission'], '[', $group['id'], ']" value="off"', $group['status'] == 'off' ? ' checked' : '', ' class="input_radio"></span> |
717 | 747 | <span class="perms"><input type="radio" name="', $context['current_permission'], '[', $group['id'], ']" value="deny"', $group['status'] == 'deny' ? ' checked' : '', ' class="input_radio"></span>'; |
748 | + } |
|
718 | 749 | |
719 | - if (!empty($modSettings['permission_enable_deny'])) |
|
720 | - echo ' |
|
750 | + if (!empty($modSettings['permission_enable_deny'])) { |
|
751 | + echo ' |
|
721 | 752 | </dt> |
722 | 753 | <dd> |
723 | 754 | <span', $group['is_postgroup'] ? ' style="font-style: italic;"' : '', '>', $group['name'], '</span> |
724 | 755 | </dd>'; |
725 | - else |
|
726 | - echo ' |
|
756 | + } else { |
|
757 | + echo ' |
|
727 | 758 | <span', $group['is_postgroup'] ? ' style="font-style: italic;"' : '', '>', $group['name'], '</span> |
728 | 759 | </li>'; |
760 | + } |
|
729 | 761 | } |
730 | 762 | |
731 | - if (empty($modSettings['permission_enable_deny'])) |
|
732 | - echo ' |
|
763 | + if (empty($modSettings['permission_enable_deny'])) { |
|
764 | + echo ' |
|
733 | 765 | <li> |
734 | 766 | <input type="checkbox" class="input_check" onclick="invertAll(this, this.form, \''. $context['current_permission'] . '[\');"> |
735 | 767 | <span>', $txt['check_all'], '</span> |
736 | 768 | </li> |
737 | 769 | </ul>'; |
738 | - else |
|
739 | - echo ' |
|
770 | + } else { |
|
771 | + echo ' |
|
740 | 772 | </dl>'; |
773 | + } |
|
741 | 774 | |
742 | 775 | echo ' |
743 | 776 | </fieldset> |
@@ -777,9 +810,10 @@ discard block |
||
777 | 810 | if (!empty($modSettings['postmod_active'])) |
778 | 811 | { |
779 | 812 | // Got advanced permissions - if so warn! |
780 | - if (!empty($modSettings['permission_enable_deny'])) |
|
781 | - echo ' |
|
813 | + if (!empty($modSettings['permission_enable_deny'])) { |
|
814 | + echo ' |
|
782 | 815 | <div class="information">', $txt['permissions_post_moderation_deny_note'], '</div>'; |
816 | + } |
|
783 | 817 | |
784 | 818 | echo ' |
785 | 819 | <div class="padding"> |
@@ -794,10 +828,11 @@ discard block |
||
794 | 828 | ', $txt['permissions_post_moderation_select'], ': |
795 | 829 | <select name="pid" onchange="document.forms.postmodForm.submit();">'; |
796 | 830 | |
797 | - foreach ($context['profiles'] as $profile) |
|
798 | - if ($profile['can_modify']) |
|
831 | + foreach ($context['profiles'] as $profile) { |
|
832 | + if ($profile['can_modify']) |
|
799 | 833 | echo ' |
800 | 834 | <option value="', $profile['id'], '"', $profile['id'] == $context['current_profile'] ? ' selected' : '', '>', $profile['name'], '</option>'; |
835 | + } |
|
801 | 836 | |
802 | 837 | echo ' |
803 | 838 | </select> |
@@ -818,11 +853,12 @@ discard block |
||
818 | 853 | ', $txt['permissions_post_moderation_replies_any'], ' |
819 | 854 | </th>'; |
820 | 855 | |
821 | - if ($modSettings['attachmentEnable'] == 1) |
|
822 | - echo ' |
|
856 | + if ($modSettings['attachmentEnable'] == 1) { |
|
857 | + echo ' |
|
823 | 858 | <th class="centercol" colspan="3"> |
824 | 859 | ', $txt['permissions_post_moderation_attachments'], ' |
825 | 860 | </th>'; |
861 | + } |
|
826 | 862 | |
827 | 863 | echo ' |
828 | 864 | </tr> |
@@ -840,11 +876,12 @@ discard block |
||
840 | 876 | <th><span class="generic_icons post_moderation_moderate"></span></th> |
841 | 877 | <th><span class="generic_icons post_moderation_deny"></span></th>'; |
842 | 878 | |
843 | - if ($modSettings['attachmentEnable'] == 1) |
|
844 | - echo ' |
|
879 | + if ($modSettings['attachmentEnable'] == 1) { |
|
880 | + echo ' |
|
845 | 881 | <th><span class="generic_icons post_moderation_allow"></span></th> |
846 | 882 | <th><span class="generic_icons post_moderation_moderate"></span></th> |
847 | 883 | <th><span class="generic_icons post_moderation_deny"></span></th>'; |
884 | + } |
|
848 | 885 | |
849 | 886 | echo ' |
850 | 887 | </tr> |
@@ -857,9 +894,10 @@ discard block |
||
857 | 894 | <tr class="windowbg"> |
858 | 895 | <td class="half_table"> |
859 | 896 | <span ', ($group['color'] ? 'style="color: ' . $group['color'] . '"' : ''), '>', $group['name'], '</span>'; |
860 | - if (!empty($group['children'])) |
|
861 | - echo ' |
|
897 | + if (!empty($group['children'])) { |
|
898 | + echo ' |
|
862 | 899 | <br><span class="smalltext">', $txt['permissions_includes_inherited'], ': "', implode('", "', $group['children']), '"</span>'; |
900 | + } |
|
863 | 901 | |
864 | 902 | echo ' |
865 | 903 | </td> |
@@ -872,8 +910,7 @@ discard block |
||
872 | 910 | { |
873 | 911 | echo ' |
874 | 912 | <td colspan="3"></td>'; |
875 | - } |
|
876 | - else |
|
913 | + } else |
|
877 | 914 | { |
878 | 915 | echo ' |
879 | 916 | <td class="centercol"><input type="radio" name="replies_own[', $group['id'], ']" value="allow"', $group['replies_own'] == 'allow' ? ' checked' : '', ' class="input_radio"></td> |
@@ -1,9 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | // Try to handle it with the upper level index.php. (it should know what to do.) |
4 | -if (file_exists(dirname(dirname(__FILE__)) . '/index.php')) |
|
4 | +if (file_exists(dirname(dirname(__FILE__)) . '/index.php')) { |
|
5 | 5 | include (dirname(dirname(__FILE__)) . '/index.php'); |
6 | -else |
|
6 | +} else { |
|
7 | 7 | exit; |
8 | +} |
|
8 | 9 | |
9 | 10 | ?> |
10 | 11 | \ No newline at end of file |
@@ -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 class="input_radio" 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" class="input_radio" 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" class="input_radio" 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" class="input_text"> |
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" class="input_text"> |
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' : '', ' class="input_radio" 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' : '', ' class="input_radio" 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' : '', ' class="input_radio" 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" class="input_text"> |
263 | 271 | </dd>'; |
272 | + } |
|
264 | 273 | echo ' |
265 | 274 | <dt> |
266 | 275 | <label for="online_color_input"><strong>', $txt['membergroups_online_color'], ':</strong></label> |
@@ -301,9 +310,10 @@ discard block |
||
301 | 310 | } |
302 | 311 | |
303 | 312 | // No? Hide the entire control. |
304 | - else |
|
305 | - echo ' |
|
313 | + else { |
|
314 | + echo ' |
|
306 | 315 | <input type="hidden" name="icon_image" value="">'; |
316 | + } |
|
307 | 317 | |
308 | 318 | echo ' |
309 | 319 | <dt> |
@@ -314,8 +324,8 @@ discard block |
||
314 | 324 | <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' : '', ' class="input_text"> |
315 | 325 | </dd>'; |
316 | 326 | //Force 2FA for this membergroup? |
317 | - if (!empty($modSettings['tfa_mode']) && $modSettings['tfa_mode'] == 2) |
|
318 | - echo ' |
|
327 | + if (!empty($modSettings['tfa_mode']) && $modSettings['tfa_mode'] == 2) { |
|
328 | + echo ' |
|
319 | 329 | <dt> |
320 | 330 | <label for="group_tfa_force_input"><strong>', $txt['membergroups_tfa_force'], ':</strong></label><br> |
321 | 331 | <span class="smalltext">', $txt['membergroups_tfa_force_note'], '</span> |
@@ -323,6 +333,7 @@ discard block |
||
323 | 333 | <dd> |
324 | 334 | <input type="checkbox" name="group_tfa_force"', $context['group']['tfa_required'] ? ' checked' : '', ' class="input_check"> |
325 | 335 | </dd>'; |
336 | + } |
|
326 | 337 | |
327 | 338 | if (!empty($context['categories'])) |
328 | 339 | { |
@@ -332,10 +343,11 @@ discard block |
||
332 | 343 | <span class="smalltext">' . $txt['membergroups_new_board_post_groups'] . '</span>' : '', ' |
333 | 344 | </dt> |
334 | 345 | <dd>'; |
335 | - if (!empty($context['can_manage_boards'])) |
|
336 | - echo $txt['membergroups_can_manage_access']; |
|
337 | - else |
|
338 | - template_add_edit_group_boards_list(); |
|
346 | + if (!empty($context['can_manage_boards'])) { |
|
347 | + echo $txt['membergroups_can_manage_access']; |
|
348 | + } else { |
|
349 | + template_add_edit_group_boards_list(); |
|
350 | + } |
|
339 | 351 | |
340 | 352 | echo ' |
341 | 353 | </dd>'; |
@@ -364,20 +376,21 @@ discard block |
||
364 | 376 | sItemListContainerId: \'moderator_container\', |
365 | 377 | aListItems: ['; |
366 | 378 | |
367 | - foreach ($context['group']['moderators'] as $id_member => $member_name) |
|
368 | - echo ' |
|
379 | + foreach ($context['group']['moderators'] as $id_member => $member_name) { |
|
380 | + echo ' |
|
369 | 381 | { |
370 | 382 | sItemId: ', JavaScriptEscape($id_member), ', |
371 | 383 | sItemName: ', JavaScriptEscape($member_name), ' |
372 | 384 | }', $id_member == $context['group']['last_moderator_id'] ? '' : ','; |
385 | + } |
|
373 | 386 | |
374 | 387 | echo ' |
375 | 388 | ] |
376 | 389 | }); |
377 | 390 | </script>'; |
378 | 391 | |
379 | - if ($context['group']['allow_post_group']) |
|
380 | - echo ' |
|
392 | + if ($context['group']['allow_post_group']) { |
|
393 | + echo ' |
|
381 | 394 | <script> |
382 | 395 | function swapPostGroup(isChecked) |
383 | 396 | { |
@@ -425,7 +438,8 @@ discard block |
||
425 | 438 | |
426 | 439 | swapPostGroup(', $context['group']['is_post_group'] ? 'true' : 'false', '); |
427 | 440 | </script>'; |
428 | -} |
|
441 | + } |
|
442 | + } |
|
429 | 443 | |
430 | 444 | /** |
431 | 445 | * The template for determining which boards a group has access to. |
@@ -442,13 +456,13 @@ discard block |
||
442 | 456 | |
443 | 457 | foreach ($context['categories'] as $category) |
444 | 458 | { |
445 | - if (empty($modSettings['deny_boards_access'])) |
|
446 | - echo ' |
|
459 | + if (empty($modSettings['deny_boards_access'])) { |
|
460 | + echo ' |
|
447 | 461 | <li class="category"> |
448 | 462 | <a href="javascript:void(0);" onclick="selectBoards([', implode(', ', $category['child_ids']), '], \'new_group\'); return false;"><strong>', $category['name'], '</strong></a> |
449 | 463 | <ul style="width:100%">'; |
450 | - else |
|
451 | - echo ' |
|
464 | + } else { |
|
465 | + echo ' |
|
452 | 466 | <li class="category"> |
453 | 467 | <strong>', $category['name'], '</strong> |
454 | 468 | <span class="select_all_box"> |
@@ -461,16 +475,17 @@ discard block |
||
461 | 475 | </select> |
462 | 476 | </span> |
463 | 477 | <ul style="width:100%" id="boards_list_', $category['id'], '">'; |
478 | + } |
|
464 | 479 | |
465 | 480 | foreach ($category['boards'] as $board) |
466 | 481 | { |
467 | - if (empty($modSettings['deny_boards_access'])) |
|
468 | - echo ' |
|
482 | + if (empty($modSettings['deny_boards_access'])) { |
|
483 | + echo ' |
|
469 | 484 | <li class="board" style="margin-', $context['right_to_left'] ? 'right' : 'left', ': ', $board['child_level'], 'em;"> |
470 | 485 | <input type="checkbox" name="boardaccess[', $board['id'], ']" id="brd', $board['id'], '" value="allow"', $board['allow'] ? ' checked' : '', ' class="input_check"> <label for="brd', $board['id'], '">', $board['name'], '</label> |
471 | 486 | </li>'; |
472 | - else |
|
473 | - echo ' |
|
487 | + } else { |
|
488 | + echo ' |
|
474 | 489 | <li class="board" style="width:100%"> |
475 | 490 | <span style="margin-', $context['right_to_left'] ? 'right' : 'left', ': ', $board['child_level'], 'em;">', $board['name'], ': </span> |
476 | 491 | <span style="width:50%;float:right"> |
@@ -479,6 +494,7 @@ discard block |
||
479 | 494 | <input type="radio" name="boardaccess[', $board['id'], ']" id="deny_brd', $board['id'], '" value="deny"', $board['deny'] ? ' checked' : '', ' class="input_check"> <label for="deny_brd', $board['id'], '">', $txt['permissions_option_deny'], '</label> |
480 | 495 | </span> |
481 | 496 | </li>'; |
497 | + } |
|
482 | 498 | } |
483 | 499 | |
484 | 500 | echo ' |
@@ -489,13 +505,13 @@ discard block |
||
489 | 505 | echo ' |
490 | 506 | </ul>'; |
491 | 507 | |
492 | - if (empty($modSettings['deny_boards_access'])) |
|
493 | - echo ' |
|
508 | + if (empty($modSettings['deny_boards_access'])) { |
|
509 | + echo ' |
|
494 | 510 | <br class="clear"><br> |
495 | 511 | <input type="checkbox" id="checkall_check" class="input_check" onclick="invertAll(this, this.form, \'boardaccess\');"> <label for="checkall_check"><em>', $txt['check_all'], '</em></label> |
496 | 512 | </fieldset>'; |
497 | - else |
|
498 | - echo ' |
|
513 | + } else { |
|
514 | + echo ' |
|
499 | 515 | <br class="clear"> |
500 | 516 | <span class="select_all_box"> |
501 | 517 | <em>', $txt['all'], ': </em> |
@@ -511,15 +527,17 @@ discard block |
||
511 | 527 | }); |
512 | 528 | }); |
513 | 529 | </script>'; |
530 | + } |
|
514 | 531 | |
515 | - if ($collapse) |
|
516 | - echo ' |
|
532 | + if ($collapse) { |
|
533 | + echo ' |
|
517 | 534 | <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> |
518 | 535 | <script> |
519 | 536 | document.getElementById("visible_boards_link").style.display = ""; |
520 | 537 | document.getElementById("visible_boards").style.display = "none"; |
521 | 538 | </script>'; |
522 | -} |
|
539 | + } |
|
540 | + } |
|
523 | 541 | |
524 | 542 | /** |
525 | 543 | * Templatine for viewing the members of a group. |
@@ -543,14 +561,15 @@ discard block |
||
543 | 561 | <span ', $context['group']['online_color'] ? 'style="color: ' . $context['group']['online_color'] . ';"' : '', '>', $context['group']['name'], '</span> ', $context['group']['icons'], ' |
544 | 562 | </dd>'; |
545 | 563 | //Any description to show? |
546 | - if (!empty($context['group']['description'])) |
|
547 | - echo ' |
|
564 | + if (!empty($context['group']['description'])) { |
|
565 | + echo ' |
|
548 | 566 | <dt> |
549 | 567 | <strong>' . $txt['membergroups_members_description'] . ':</strong> |
550 | 568 | </dt> |
551 | 569 | <dd> |
552 | 570 | ', $context['group']['description'], ' |
553 | 571 | </dd>'; |
572 | + } |
|
554 | 573 | |
555 | 574 | echo ' |
556 | 575 | <dt> |
@@ -563,8 +582,9 @@ discard block |
||
563 | 582 | if (!empty($context['group']['moderators'])) |
564 | 583 | { |
565 | 584 | $moderators = array(); |
566 | - foreach ($context['group']['moderators'] as $moderator) |
|
567 | - $moderators[] = '<a href="' . $scripturl . '?action=profile;u=' . $moderator['id'] . '">' . $moderator['name'] . '</a>'; |
|
585 | + foreach ($context['group']['moderators'] as $moderator) { |
|
586 | + $moderators[] = '<a href="' . $scripturl . '?action=profile;u=' . $moderator['id'] . '">' . $moderator['name'] . '</a>'; |
|
587 | + } |
|
568 | 588 | |
569 | 589 | echo ' |
570 | 590 | <dt> |
@@ -590,27 +610,30 @@ discard block |
||
590 | 610 | <tr class="title_bar"> |
591 | 611 | <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>'; |
592 | 612 | |
593 | - if ($context['can_send_email']) |
|
594 | - echo ' |
|
613 | + if ($context['can_send_email']) { |
|
614 | + echo ' |
|
595 | 615 | <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>'; |
616 | + } |
|
596 | 617 | |
597 | 618 | echo ' |
598 | 619 | <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> |
599 | 620 | <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> |
600 | 621 | <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>'; |
601 | - if (!empty($context['group']['assignable'])) |
|
602 | - echo ' |
|
622 | + if (!empty($context['group']['assignable'])) { |
|
623 | + echo ' |
|
603 | 624 | <th style="width: 4%"><input type="checkbox" class="input_check" onclick="invertAll(this, this.form);"></th>'; |
625 | + } |
|
604 | 626 | echo ' |
605 | 627 | </tr> |
606 | 628 | </thead> |
607 | 629 | <tbody>'; |
608 | 630 | |
609 | - if (empty($context['members'])) |
|
610 | - echo ' |
|
631 | + if (empty($context['members'])) { |
|
632 | + echo ' |
|
611 | 633 | <tr class="windowbg"> |
612 | 634 | <td colspan="6">', $txt['membergroups_members_no_members'], '</td> |
613 | 635 | </tr>'; |
636 | + } |
|
614 | 637 | |
615 | 638 | foreach ($context['members'] as $member) |
616 | 639 | { |
@@ -629,9 +652,10 @@ discard block |
||
629 | 652 | <td>', $member['last_online'], '</td> |
630 | 653 | <td>', $member['registered'], '</td> |
631 | 654 | <td', empty($context['group']['assignable']) ? ' colspan="2"' : '', '>', $member['posts'], '</td>'; |
632 | - if (!empty($context['group']['assignable'])) |
|
633 | - echo ' |
|
655 | + if (!empty($context['group']['assignable'])) { |
|
656 | + echo ' |
|
634 | 657 | <td style="width: 4%"><input type="checkbox" name="rem[]" value="', $member['id'], '" class="input_check" ', ($context['user']['id'] == $member['id'] && $context['group']['id'] == 1 ? 'onclick="if (this.checked) return confirm(\'' . $txt['membergroups_members_deadmin_confirm'] . '\')" ' : ''), '/></td>'; |
658 | + } |
|
635 | 659 | echo ' |
636 | 660 | </tr>'; |
637 | 661 | } |
@@ -640,11 +664,12 @@ discard block |
||
640 | 664 | </tbody> |
641 | 665 | </table>'; |
642 | 666 | |
643 | - if (!empty($context['group']['assignable'])) |
|
644 | - echo ' |
|
667 | + if (!empty($context['group']['assignable'])) { |
|
668 | + echo ' |
|
645 | 669 | <div class="floatright"> |
646 | 670 | <input type="submit" name="remove" value="', $txt['membergroups_members_remove'], '" class="button_submit "> |
647 | 671 | </div>'; |
672 | + } |
|
648 | 673 | |
649 | 674 | echo ' |
650 | 675 | <div class="pagesection flow_hidden"> |
@@ -678,8 +703,8 @@ discard block |
||
678 | 703 | </form> |
679 | 704 | </div>'; |
680 | 705 | |
681 | - if (!empty($context['group']['assignable'])) |
|
682 | - echo ' |
|
706 | + if (!empty($context['group']['assignable'])) { |
|
707 | + echo ' |
|
683 | 708 | <script> |
684 | 709 | var oAddMemberSuggest = new smc_AutoSuggest({ |
685 | 710 | sSelf: \'oAddMemberSuggest\', |
@@ -695,7 +720,8 @@ discard block |
||
695 | 720 | sItemListContainerId: \'toAddItemContainer\' |
696 | 721 | }); |
697 | 722 | </script>'; |
698 | -} |
|
723 | + } |
|
724 | + } |
|
699 | 725 | |
700 | 726 | /** |
701 | 727 | * Allow the moderator to enter a reason to each user being rejected. |
@@ -715,8 +741,8 @@ discard block |
||
715 | 741 | <dl class="settings">'; |
716 | 742 | |
717 | 743 | // Loop through and print out a reason box for each... |
718 | - foreach ($context['group_requests'] as $request) |
|
719 | - echo ' |
|
744 | + foreach ($context['group_requests'] as $request) { |
|
745 | + echo ' |
|
720 | 746 | <dt> |
721 | 747 | <strong>', sprintf($txt['mc_groupr_reason_desc'], $request['member_link'], $request['group_link']), ':</strong> |
722 | 748 | </dt> |
@@ -724,6 +750,7 @@ discard block |
||
724 | 750 | <input type="hidden" name="groupr[]" value="', $request['id'], '"> |
725 | 751 | <textarea name="groupreason[', $request['id'], ']" rows="3" cols="40" style="min-width: 80%; max-width: 99%;"></textarea> |
726 | 752 | </dd>'; |
753 | + } |
|
727 | 754 | |
728 | 755 | echo ' |
729 | 756 | </dl> |
@@ -54,9 +54,10 @@ discard block |
||
54 | 54 | <dd> |
55 | 55 | <div id="known_themes_list">'; |
56 | 56 | |
57 | - foreach ($context['themes'] as $theme) |
|
58 | - echo ' |
|
57 | + foreach ($context['themes'] as $theme) { |
|
58 | + echo ' |
|
59 | 59 | <label for="options-known_themes_', $theme['id'], '"><input type="checkbox" name="options[known_themes][]" id="options-known_themes_', $theme['id'], '" value="', $theme['id'], '"', $theme['known'] ? ' checked' : '', ' class="input_check"> ', $theme['name'], '</label><br>'; |
60 | + } |
|
60 | 61 | |
61 | 62 | echo ' |
62 | 63 | </div> |
@@ -73,9 +74,10 @@ discard block |
||
73 | 74 | <select name="options[theme_guests]" id="theme_guests">'; |
74 | 75 | |
75 | 76 | // Put an option for each theme in the select box. |
76 | - foreach ($context['themes'] as $theme) |
|
77 | - echo ' |
|
77 | + foreach ($context['themes'] as $theme) { |
|
78 | + echo ' |
|
78 | 79 | <option value="', $theme['id'], '"', $modSettings['theme_guests'] == $theme['id'] ? ' selected' : '', '>', $theme['name'], '</option>'; |
80 | + } |
|
79 | 81 | |
80 | 82 | echo ' |
81 | 83 | </select> |
@@ -90,9 +92,10 @@ discard block |
||
90 | 92 | <option value="0">', $txt['theme_forum_default'], '</option>'; |
91 | 93 | |
92 | 94 | // Same thing, this time for changing the theme of everyone. |
93 | - foreach ($context['themes'] as $theme) |
|
94 | - echo ' |
|
95 | + foreach ($context['themes'] as $theme) { |
|
96 | + echo ' |
|
95 | 97 | <option value="', $theme['id'], '">', $theme['name'], '</option>'; |
98 | + } |
|
96 | 99 | |
97 | 100 | echo ' |
98 | 101 | </select> |
@@ -189,11 +192,12 @@ discard block |
||
189 | 192 | global $context, $scripturl, $txt; |
190 | 193 | |
191 | 194 | // Show a nice confirmation message. |
192 | - if (isset($_GET['done'])) |
|
193 | - echo ' |
|
195 | + if (isset($_GET['done'])) { |
|
196 | + echo ' |
|
194 | 197 | <div class="infobox"> |
195 | 198 | ', $txt['theme_confirmed_' . $_GET['done']], ' |
196 | 199 | </div>'; |
200 | + } |
|
197 | 201 | |
198 | 202 | echo ' |
199 | 203 | <div id="admincenter">'; |
@@ -353,22 +357,24 @@ discard block |
||
353 | 357 | <dt ', $context['theme_options_reset'] ? 'style="width:50%"' : '', '>'; |
354 | 358 | |
355 | 359 | // Show the change option box ? |
356 | - if ($context['theme_options_reset']) |
|
357 | - echo ' |
|
360 | + if ($context['theme_options_reset']) { |
|
361 | + echo ' |
|
358 | 362 | <span class="floatleft"><select name="', !empty($setting['default']) ? 'default_' : '', 'options_master[', $setting['id'], ']" onchange="this.form.options_', $setting['id'], '.disabled = this.selectedIndex != 1;"> |
359 | 363 | <option value="0" selected>', $txt['themeadmin_reset_options_none'], '</option> |
360 | 364 | <option value="1">', $txt['themeadmin_reset_options_change'], '</option> |
361 | 365 | <option value="2">', $txt['themeadmin_reset_options_default'], '</option> |
362 | 366 | </select> </span>'; |
367 | + } |
|
363 | 368 | |
364 | 369 | // display checkbox options |
365 | 370 | if ($setting['type'] == 'checkbox') |
366 | 371 | { |
367 | 372 | echo ' |
368 | 373 | <label for="options_', $setting['id'], '">', $setting['label'], '</label>'; |
369 | - if (isset($setting['description'])) |
|
370 | - echo ' |
|
374 | + if (isset($setting['description'])) { |
|
375 | + echo ' |
|
371 | 376 | <br><span class="smalltext">', $setting['description'], '</span>'; |
377 | + } |
|
372 | 378 | echo ' |
373 | 379 | </dt> |
374 | 380 | <dd ', $context['theme_options_reset'] ? 'style="width:40%"' : '', '> |
@@ -380,9 +386,10 @@ discard block |
||
380 | 386 | { |
381 | 387 | echo ' |
382 | 388 | <label for="options_', $setting['id'], '">', $setting['label'], '</label>'; |
383 | - if (isset($setting['description'])) |
|
384 | - echo ' |
|
389 | + if (isset($setting['description'])) { |
|
390 | + echo ' |
|
385 | 391 | <br><span class="smalltext">', $setting['description'], '</span>'; |
392 | + } |
|
386 | 393 | echo ' |
387 | 394 | </dt> |
388 | 395 | <dd ', $context['theme_options_reset'] ? 'style="width:40%"' : '', '> |
@@ -402,9 +409,10 @@ discard block |
||
402 | 409 | { |
403 | 410 | echo ' |
404 | 411 | <label for="options_', $setting['id'], '">', $setting['label'], '</label>'; |
405 | - if (isset($setting['description'])) |
|
406 | - echo ' |
|
412 | + if (isset($setting['description'])) { |
|
413 | + echo ' |
|
407 | 414 | <br><span class="smalltext">', $setting['description'], '</span>'; |
415 | + } |
|
408 | 416 | echo ' |
409 | 417 | </dt> |
410 | 418 | <dd ', $context['theme_options_reset'] ? 'style="width:40%"' : '', '>'; |
@@ -417,13 +425,11 @@ discard block |
||
417 | 425 | |
418 | 426 | echo ' |
419 | 427 | <input type="number"', $min . $max . $step; |
420 | - } |
|
421 | - else if (isset($setting['type']) && $setting['type'] == 'url') |
|
428 | + } else if (isset($setting['type']) && $setting['type'] == 'url') |
|
422 | 429 | { |
423 | 430 | echo' |
424 | 431 | <input type="url"'; |
425 | - } |
|
426 | - else |
|
432 | + } else |
|
427 | 433 | { |
428 | 434 | echo ' |
429 | 435 | <input type="text"'; |
@@ -467,8 +473,8 @@ discard block |
||
467 | 473 | <br>'; |
468 | 474 | |
469 | 475 | // @todo Why can't I edit the default theme popup. |
470 | - if ($context['theme_settings']['theme_id'] != 1) |
|
471 | - echo ' |
|
476 | + if ($context['theme_settings']['theme_id'] != 1) { |
|
477 | + echo ' |
|
472 | 478 | <div class="cat_bar"> |
473 | 479 | <h3 class="catbg config_hd"> |
474 | 480 | ', $txt['theme_edit'], ' |
@@ -484,6 +490,7 @@ discard block |
||
484 | 490 | </li> |
485 | 491 | </ul> |
486 | 492 | </div>'; |
493 | + } |
|
487 | 494 | |
488 | 495 | echo ' |
489 | 496 | <div class="cat_bar"> |
@@ -537,9 +544,10 @@ discard block |
||
537 | 544 | <dd> |
538 | 545 | <select id="variant" name="options[default_variant]" onchange="changeVariant(this.value)">'; |
539 | 546 | |
540 | - foreach ($context['theme_variants'] as $key => $variant) |
|
541 | - echo ' |
|
547 | + foreach ($context['theme_variants'] as $key => $variant) { |
|
548 | + echo ' |
|
542 | 549 | <option value="', $key, '"', $context['default_variant'] == $key ? ' selected' : '', '>', $variant['label'], '</option>'; |
550 | + } |
|
543 | 551 | |
544 | 552 | echo ' |
545 | 553 | </select> |
@@ -582,9 +590,10 @@ discard block |
||
582 | 590 | <dt> |
583 | 591 | <label for="', $setting['id'], '">', $setting['label'], '</label>:'; |
584 | 592 | |
585 | - if (isset($setting['description'])) |
|
586 | - echo '<br> |
|
593 | + if (isset($setting['description'])) { |
|
594 | + echo '<br> |
|
587 | 595 | <span class="smalltext">', $setting['description'], '</span>'; |
596 | + } |
|
588 | 597 | |
589 | 598 | echo ' |
590 | 599 | </dt> |
@@ -600,18 +609,20 @@ discard block |
||
600 | 609 | <dt> |
601 | 610 | <label for="', $setting['id'], '">', $setting['label'], '</label>:'; |
602 | 611 | |
603 | - if (isset($setting['description'])) |
|
604 | - echo '<br> |
|
612 | + if (isset($setting['description'])) { |
|
613 | + echo '<br> |
|
605 | 614 | <span class="smalltext">', $setting['description'], '</span>'; |
615 | + } |
|
606 | 616 | |
607 | 617 | echo ' |
608 | 618 | </dt> |
609 | 619 | <dd> |
610 | 620 | <select name="', !empty($setting['default']) ? 'default_' : '', 'options[', $setting['id'], ']" id="', $setting['id'], '">'; |
611 | 621 | |
612 | - foreach ($setting['options'] as $value => $label) |
|
613 | - echo ' |
|
622 | + foreach ($setting['options'] as $value => $label) { |
|
623 | + echo ' |
|
614 | 624 | <option value="', $value, '"', $value == $setting['value'] ? ' selected' : '', '>', $label, '</option>'; |
625 | + } |
|
615 | 626 | |
616 | 627 | echo ' |
617 | 628 | </select> |
@@ -624,9 +635,10 @@ discard block |
||
624 | 635 | <dt> |
625 | 636 | <label for="', $setting['id'], '">', $setting['label'], '</label>:'; |
626 | 637 | |
627 | - if (isset($setting['description'])) |
|
628 | - echo '<br> |
|
638 | + if (isset($setting['description'])) { |
|
639 | + echo '<br> |
|
629 | 640 | <span class="smalltext">', $setting['description'], '</span>'; |
641 | + } |
|
630 | 642 | echo ' |
631 | 643 | </dt> |
632 | 644 | <dd> |
@@ -641,9 +653,10 @@ discard block |
||
641 | 653 | <dt> |
642 | 654 | <label for="', $setting['id'], '">', $setting['label'], '</label>:'; |
643 | 655 | |
644 | - if (isset($setting['description'])) |
|
645 | - echo '<br> |
|
656 | + if (isset($setting['description'])) { |
|
657 | + echo '<br> |
|
646 | 658 | <span class="smalltext">', $setting['description'], '</span>'; |
659 | + } |
|
647 | 660 | |
648 | 661 | echo ' |
649 | 662 | </dt> |
@@ -657,13 +670,11 @@ discard block |
||
657 | 670 | |
658 | 671 | echo ' |
659 | 672 | <input type="number"', $min . $max . $step; |
660 | - } |
|
661 | - else if (isset($setting['type']) && $setting['type'] == 'url') |
|
673 | + } else if (isset($setting['type']) && $setting['type'] == 'url') |
|
662 | 674 | { |
663 | 675 | echo' |
664 | 676 | <input type="url"'; |
665 | - } |
|
666 | - else |
|
677 | + } else |
|
667 | 678 | { |
668 | 679 | echo ' |
669 | 680 | <input type="text"'; |
@@ -816,21 +827,23 @@ discard block |
||
816 | 827 | <div class="windowbg">'; |
817 | 828 | |
818 | 829 | // Oops! there was an error :( |
819 | - if (!empty($context['error_message'])) |
|
820 | - echo ' |
|
830 | + if (!empty($context['error_message'])) { |
|
831 | + echo ' |
|
821 | 832 | <p> |
822 | 833 | ', $context['error_message'], ' |
823 | 834 | </p>'; |
835 | + } |
|
824 | 836 | |
825 | 837 | // Not much to show except a link back... |
826 | - else |
|
827 | - echo ' |
|
838 | + else { |
|
839 | + echo ' |
|
828 | 840 | <p> |
829 | 841 | <a href="', $scripturl, '?action=admin;area=theme;sa=list;th=', $context['installed_theme']['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $context['installed_theme']['name'], '</a> ', $txt['theme_' . (isset($context['installed_theme']['updated']) ? 'updated' : 'installed') . '_message'], ' |
830 | 842 | </p> |
831 | 843 | <p> |
832 | 844 | <a href="', $scripturl, '?action=admin;area=theme;sa=admin;', $context['session_var'], '=', $context['session_id'], '">', $txt['back'], '</a> |
833 | 845 | </p>'; |
846 | + } |
|
834 | 847 | |
835 | 848 | echo ' |
836 | 849 | </div> |
@@ -897,10 +910,11 @@ discard block |
||
897 | 910 | <span class="floatleft">', $template['filename'], $template['already_exists'] ? ' <span class="error">(' . $txt['themeadmin_edit_exists'] . ')</span>' : '', '</span> |
898 | 911 | <span class="floatright">'; |
899 | 912 | |
900 | - if ($template['can_copy']) |
|
901 | - echo '<a href="', $scripturl, '?action=admin;area=theme;th=', $context['theme_id'], ';', $context['session_var'], '=', $context['session_id'], ';sa=copy;template=', $template['value'], '" data-confirm="', $template['already_exists'] ? $txt['themeadmin_edit_overwrite_confirm'] : $txt['themeadmin_edit_copy_confirm'], '" class="you_sure">', $txt['themeadmin_edit_do_copy'], '</a>'; |
|
902 | - else |
|
903 | - echo $txt['themeadmin_edit_no_copy']; |
|
913 | + if ($template['can_copy']) { |
|
914 | + echo '<a href="', $scripturl, '?action=admin;area=theme;th=', $context['theme_id'], ';', $context['session_var'], '=', $context['session_id'], ';sa=copy;template=', $template['value'], '" data-confirm="', $template['already_exists'] ? $txt['themeadmin_edit_overwrite_confirm'] : $txt['themeadmin_edit_copy_confirm'], '" class="you_sure">', $txt['themeadmin_edit_do_copy'], '</a>'; |
|
915 | + } else { |
|
916 | + echo $txt['themeadmin_edit_no_copy']; |
|
917 | + } |
|
904 | 918 | |
905 | 919 | echo ' |
906 | 920 | </span> |
@@ -923,11 +937,12 @@ discard block |
||
923 | 937 | echo ' |
924 | 938 | <div id="admincenter">'; |
925 | 939 | |
926 | - if (!empty($context['browse_title'])) |
|
927 | - echo ' |
|
940 | + if (!empty($context['browse_title'])) { |
|
941 | + echo ' |
|
928 | 942 | <div class="cat_bar"> |
929 | 943 | <h3 class="catbg">', $context['browse_title'], '</h3> |
930 | 944 | </div>'; |
945 | + } |
|
931 | 946 | |
932 | 947 | echo ' |
933 | 948 | <table class="table_grid tborder"> |
@@ -947,14 +962,13 @@ discard block |
||
947 | 962 | <tr class="windowbg"> |
948 | 963 | <td>'; |
949 | 964 | |
950 | - if ($file['is_editable']) |
|
951 | - echo '<a href="', $file['href'], '"', $file['is_template'] ? ' style="font-weight: bold;"' : '', '>', $file['filename'], '</a>'; |
|
952 | - |
|
953 | - elseif ($file['is_directory']) |
|
954 | - echo '<a href="', $file['href'], '" class="is_directory"><span class="generic_icons folder"></span>', $file['filename'], '</a>'; |
|
955 | - |
|
956 | - else |
|
957 | - echo $file['filename']; |
|
965 | + if ($file['is_editable']) { |
|
966 | + echo '<a href="', $file['href'], '"', $file['is_template'] ? ' style="font-weight: bold;"' : '', '>', $file['filename'], '</a>'; |
|
967 | + } elseif ($file['is_directory']) { |
|
968 | + echo '<a href="', $file['href'], '" class="is_directory"><span class="generic_icons folder"></span>', $file['filename'], '</a>'; |
|
969 | + } else { |
|
970 | + echo $file['filename']; |
|
971 | + } |
|
958 | 972 | |
959 | 973 | echo ' |
960 | 974 | </td> |
@@ -976,11 +990,12 @@ discard block |
||
976 | 990 | { |
977 | 991 | global $context, $settings, $scripturl, $txt; |
978 | 992 | |
979 | - if ($context['session_error']) |
|
980 | - echo ' |
|
993 | + if ($context['session_error']) { |
|
994 | + echo ' |
|
981 | 995 | <div class="errorbox"> |
982 | 996 | ', $txt['error_session_timeout'], ' |
983 | 997 | </div>'; |
998 | + } |
|
984 | 999 | |
985 | 1000 | // From now on no one can complain that editing css is difficult. If you disagree, go to www.w3schools.com. |
986 | 1001 | echo ' |
@@ -1043,17 +1058,18 @@ discard block |
||
1043 | 1058 | try |
1044 | 1059 | { |
1045 | 1060 | '; |
1046 | - if (isBrowser('is_ie')) |
|
1047 | - echo ' |
|
1061 | + if (isBrowser('is_ie')) { |
|
1062 | + echo ' |
|
1048 | 1063 | var sheets = frames["css_preview_box"].document.styleSheets; |
1049 | 1064 | for (var j = 0; j < sheets.length; j++) |
1050 | 1065 | { |
1051 | 1066 | if (sheets[j].id == "css_preview_box") |
1052 | 1067 | sheets[j].cssText = document.forms.stylesheetForm.entire_file.value; |
1053 | 1068 | }'; |
1054 | - else |
|
1055 | - echo ' |
|
1069 | + } else { |
|
1070 | + echo ' |
|
1056 | 1071 | setInnerHTML(frames["css_preview_box"].document.getElementById("css_preview_sheet"), document.forms.stylesheetForm.entire_file.value);'; |
1072 | + } |
|
1057 | 1073 | echo ' |
1058 | 1074 | } |
1059 | 1075 | catch (e) |
@@ -1105,9 +1121,10 @@ discard block |
||
1105 | 1121 | </div> |
1106 | 1122 | <div class="windowbg">'; |
1107 | 1123 | |
1108 | - if (!$context['allow_save']) |
|
1109 | - echo ' |
|
1124 | + if (!$context['allow_save']) { |
|
1125 | + echo ' |
|
1110 | 1126 | ', $txt['theme_edit_no_save'], ': ', $context['allow_save_filename'], '<br>'; |
1127 | + } |
|
1111 | 1128 | |
1112 | 1129 | echo ' |
1113 | 1130 | <textarea name="entire_file" cols="80" rows="20" style="width: 96%; font-family: monospace; margin-top: 1ex; white-space: pre;" onkeyup="setPreviewTimeout();" onchange="refreshPreview(true);">', $context['entire_file'], '</textarea><br> |
@@ -1120,9 +1137,10 @@ discard block |
||
1120 | 1137 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">'; |
1121 | 1138 | |
1122 | 1139 | // Hopefully it exists. |
1123 | - if (isset($context['admin-te-' . md5($context['theme_id'] . '-' . $context['edit_filename']) . '_token'])) |
|
1124 | - echo ' |
|
1140 | + if (isset($context['admin-te-' . md5($context['theme_id'] . '-' . $context['edit_filename']) . '_token'])) { |
|
1141 | + echo ' |
|
1125 | 1142 | <input type="hidden" name="', $context['admin-te-' . md5($context['theme_id'] . '-' . $context['edit_filename']) . '_token_var'], '" value="', $context['admin-te-' . md5($context['theme_id'] . '-' . $context['edit_filename']) . '_token'], '">'; |
1143 | + } |
|
1126 | 1144 | |
1127 | 1145 | echo ' |
1128 | 1146 | </form> |
@@ -1136,18 +1154,20 @@ discard block |
||
1136 | 1154 | { |
1137 | 1155 | global $context, $scripturl, $txt; |
1138 | 1156 | |
1139 | - if ($context['session_error']) |
|
1140 | - echo ' |
|
1157 | + if ($context['session_error']) { |
|
1158 | + echo ' |
|
1141 | 1159 | <div class="errorbox"> |
1142 | 1160 | ', $txt['error_session_timeout'], ' |
1143 | 1161 | </div>'; |
1162 | + } |
|
1144 | 1163 | |
1145 | - if (isset($context['parse_error'])) |
|
1146 | - echo ' |
|
1164 | + if (isset($context['parse_error'])) { |
|
1165 | + echo ' |
|
1147 | 1166 | <div class="errorbox"> |
1148 | 1167 | ', $txt['themeadmin_edit_error'], ' |
1149 | 1168 | <div><pre>', $context['parse_error'], '</pre></div> |
1150 | 1169 | </div>'; |
1170 | + } |
|
1151 | 1171 | |
1152 | 1172 | // Just show a big box.... gray out the Save button if it's not saveable... (ie. not 777.) |
1153 | 1173 | echo ' |
@@ -1158,16 +1178,18 @@ discard block |
||
1158 | 1178 | </div> |
1159 | 1179 | <div class="windowbg">'; |
1160 | 1180 | |
1161 | - if (!$context['allow_save']) |
|
1162 | - echo ' |
|
1181 | + if (!$context['allow_save']) { |
|
1182 | + echo ' |
|
1163 | 1183 | ', $txt['theme_edit_no_save'], ': ', $context['allow_save_filename'], '<br>'; |
1184 | + } |
|
1164 | 1185 | |
1165 | - foreach ($context['file_parts'] as $part) |
|
1166 | - echo ' |
|
1186 | + foreach ($context['file_parts'] as $part) { |
|
1187 | + echo ' |
|
1167 | 1188 | <label for="on_line', $part['line'], '">', $txt['themeadmin_edit_on_line'], ' ', $part['line'], '</label>:<br> |
1168 | 1189 | <div class="centertext"> |
1169 | 1190 | <textarea id="on_line', $part['line'], '" name="entire_file[]" cols="80" rows="', $part['lines'] > 14 ? '14' : $part['lines'], '" class="edit_file">', $part['data'], '</textarea> |
1170 | 1191 | </div>'; |
1192 | + } |
|
1171 | 1193 | |
1172 | 1194 | echo ' |
1173 | 1195 | <div class="padding righttext"> |
@@ -1176,9 +1198,10 @@ discard block |
||
1176 | 1198 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">'; |
1177 | 1199 | |
1178 | 1200 | // Hopefully it exists. |
1179 | - if (isset($context['admin-te-' . md5($context['theme_id'] . '-' . $context['edit_filename']) . '_token'])) |
|
1180 | - echo ' |
|
1201 | + if (isset($context['admin-te-' . md5($context['theme_id'] . '-' . $context['edit_filename']) . '_token'])) { |
|
1202 | + echo ' |
|
1181 | 1203 | <input type="hidden" name="', $context['admin-te-' . md5($context['theme_id'] . '-' . $context['edit_filename']) . '_token_var'], '" value="', $context['admin-te-' . md5($context['theme_id'] . '-' . $context['edit_filename']) . '_token'], '">'; |
1204 | + } |
|
1182 | 1205 | |
1183 | 1206 | echo ' |
1184 | 1207 | </div> |
@@ -1194,18 +1217,20 @@ discard block |
||
1194 | 1217 | { |
1195 | 1218 | global $context, $scripturl, $txt; |
1196 | 1219 | |
1197 | - if ($context['session_error']) |
|
1198 | - echo ' |
|
1220 | + if ($context['session_error']) { |
|
1221 | + echo ' |
|
1199 | 1222 | <div class="errorbox"> |
1200 | 1223 | ', $txt['error_session_timeout'], ' |
1201 | 1224 | </div>'; |
1225 | + } |
|
1202 | 1226 | |
1203 | 1227 | //Is this file writeable? |
1204 | - if (!$context['allow_save']) |
|
1205 | - echo ' |
|
1228 | + if (!$context['allow_save']) { |
|
1229 | + echo ' |
|
1206 | 1230 | <div class="errorbox"> |
1207 | 1231 | ', $txt['theme_edit_no_save'], ': ', $context['allow_save_filename'], ' |
1208 | 1232 | </div>'; |
1233 | + } |
|
1209 | 1234 | |
1210 | 1235 | // Just show a big box.... gray out the Save button if it's not saveable... (ie. not 777.) |
1211 | 1236 | echo ' |
@@ -1221,9 +1246,10 @@ discard block |
||
1221 | 1246 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">'; |
1222 | 1247 | |
1223 | 1248 | // Hopefully it exists. |
1224 | - if (isset($context['admin-te-' . md5($context['theme_id'] . '-' . $context['edit_filename']) . '_token'])) |
|
1225 | - echo ' |
|
1249 | + if (isset($context['admin-te-' . md5($context['theme_id'] . '-' . $context['edit_filename']) . '_token'])) { |
|
1250 | + echo ' |
|
1226 | 1251 | <input type="hidden" name="', $context['admin-te-' . md5($context['theme_id'] . '-' . $context['edit_filename']) . '_token_var'], '" value="', $context['admin-te-' . md5($context['theme_id'] . '-' . $context['edit_filename']) . '_token'], '">'; |
1252 | + } |
|
1227 | 1253 | |
1228 | 1254 | echo ' |
1229 | 1255 | </div> |
@@ -28,13 +28,14 @@ discard block |
||
28 | 28 | <div id="confirm_buttons">'; |
29 | 29 | |
30 | 30 | // Age restriction in effect? |
31 | - if ($context['show_coppa']) |
|
32 | - echo ' |
|
31 | + if ($context['show_coppa']) { |
|
32 | + echo ' |
|
33 | 33 | <input type="submit" name="accept_agreement" value="', $context['coppa_agree_above'], '" class="button_submit"><br><br> |
34 | 34 | <input type="submit" name="accept_agreement_coppa" value="', $context['coppa_agree_below'], '" class="button_submit">'; |
35 | - else |
|
36 | - echo ' |
|
35 | + } else { |
|
36 | + echo ' |
|
37 | 37 | <input type="submit" name="accept_agreement" value="', $txt['agreement_agree'], '" class="button_submit">'; |
38 | + } |
|
38 | 39 | |
39 | 40 | echo ' |
40 | 41 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -77,9 +78,10 @@ discard block |
||
77 | 78 | <ul>'; |
78 | 79 | |
79 | 80 | // Cycle through each error and display an error message. |
80 | - foreach ($context['registration_errors'] as $error) |
|
81 | - echo ' |
|
81 | + foreach ($context['registration_errors'] as $error) { |
|
82 | + echo ' |
|
82 | 83 | <li>', $error, '</li>'; |
84 | + } |
|
83 | 85 | |
84 | 86 | echo ' |
85 | 87 | </ul> |
@@ -143,14 +145,15 @@ discard block |
||
143 | 145 | |
144 | 146 | <dl class="register_form">'; |
145 | 147 | |
146 | - foreach ($context['custom_fields'] as $field) |
|
147 | - if ($field['show_reg'] > 1) |
|
148 | + foreach ($context['custom_fields'] as $field) { |
|
149 | + if ($field['show_reg'] > 1) |
|
148 | 150 | echo ' |
149 | 151 | <dt> |
150 | 152 | <strong', !empty($field['is_error']) ? ' class="red"' : '', '>', $field['name'], ':</strong> |
151 | 153 | <span class="smalltext">', $field['desc'], '</span> |
152 | 154 | </dt> |
153 | 155 | <dd>', str_replace('name="', 'tabindex="' . $context['tabindex']++ . '" name="', $field['input_html']), '</dd>'; |
156 | + } |
|
154 | 157 | |
155 | 158 | echo ' |
156 | 159 | </dl>'; |
@@ -184,41 +187,45 @@ discard block |
||
184 | 187 | $callback_func = 'template_profile_' . $field['callback_func']; |
185 | 188 | $callback_func(); |
186 | 189 | } |
187 | - } |
|
188 | - else |
|
190 | + } else |
|
189 | 191 | { |
190 | 192 | echo ' |
191 | 193 | <dt> |
192 | 194 | <strong', !empty($field['is_error']) ? ' class="red"' : '', '>', $field['label'], ':</strong>'; |
193 | 195 | |
194 | 196 | // Does it have any subtext to show? |
195 | - if (!empty($field['subtext'])) |
|
196 | - echo ' |
|
197 | + if (!empty($field['subtext'])) { |
|
198 | + echo ' |
|
197 | 199 | <span class="smalltext">', $field['subtext'], '</span>'; |
200 | + } |
|
198 | 201 | |
199 | 202 | echo ' |
200 | 203 | </dt> |
201 | 204 | <dd>'; |
202 | 205 | |
203 | 206 | // Want to put something infront of the box? |
204 | - if (!empty($field['preinput'])) |
|
205 | - echo ' |
|
207 | + if (!empty($field['preinput'])) { |
|
208 | + echo ' |
|
206 | 209 | ', $field['preinput']; |
210 | + } |
|
207 | 211 | |
208 | 212 | // What type of data are we showing? |
209 | - if ($field['type'] == 'label') |
|
210 | - echo ' |
|
213 | + if ($field['type'] == 'label') { |
|
214 | + echo ' |
|
211 | 215 | ', $field['value']; |
216 | + } |
|
212 | 217 | |
213 | 218 | // Maybe it's a text box - very likely! |
214 | - elseif (in_array($field['type'], array('int', 'float', 'text', 'password'))) |
|
215 | - echo ' |
|
219 | + elseif (in_array($field['type'], array('int', 'float', 'text', 'password'))) { |
|
220 | + echo ' |
|
216 | 221 | <input type="', $field['type'] == 'password' ? 'password' : 'text', '" name="', $key, '" id="', $key, '" size="', empty($field['size']) ? 30 : $field['size'], '" value="', $field['value'], '" tabindex="', $context['tabindex']++, '" ', $field['input_attr'], ' class="input_', $field['type'] == 'password' ? 'password' : 'text', '">'; |
222 | + } |
|
217 | 223 | |
218 | 224 | // You "checking" me out? ;) |
219 | - elseif ($field['type'] == 'check') |
|
220 | - echo ' |
|
225 | + elseif ($field['type'] == 'check') { |
|
226 | + echo ' |
|
221 | 227 | <input type="hidden" name="', $key, '" value="0"><input type="checkbox" name="', $key, '" id="', $key, '"', !empty($field['value']) ? ' checked' : '', ' value="1" tabindex="', $context['tabindex']++, '" class="input_check" ', $field['input_attr'], '>'; |
228 | + } |
|
222 | 229 | |
223 | 230 | // Always fun - select boxes! |
224 | 231 | elseif ($field['type'] == 'select') |
@@ -229,13 +236,15 @@ discard block |
||
229 | 236 | if (isset($field['options'])) |
230 | 237 | { |
231 | 238 | // Is this some code to generate the options? |
232 | - if (!is_array($field['options'])) |
|
233 | - $field['options'] = eval($field['options']); |
|
239 | + if (!is_array($field['options'])) { |
|
240 | + $field['options'] = eval($field['options']); |
|
241 | + } |
|
234 | 242 | // Assuming we now have some! |
235 | - if (is_array($field['options'])) |
|
236 | - foreach ($field['options'] as $value => $name) |
|
243 | + if (is_array($field['options'])) { |
|
244 | + foreach ($field['options'] as $value => $name) |
|
237 | 245 | echo ' |
238 | 246 | <option value="', $value, '"', $value == $field['value'] ? ' selected' : '', '>', $name, '</option>'; |
247 | + } |
|
239 | 248 | } |
240 | 249 | |
241 | 250 | echo ' |
@@ -243,9 +252,10 @@ discard block |
||
243 | 252 | } |
244 | 253 | |
245 | 254 | // Something to end with? |
246 | - if (!empty($field['postinput'])) |
|
247 | - echo ' |
|
255 | + if (!empty($field['postinput'])) { |
|
256 | + echo ' |
|
248 | 257 | ', $field['postinput']; |
258 | + } |
|
249 | 259 | |
250 | 260 | echo ' |
251 | 261 | </dd>'; |
@@ -258,13 +268,14 @@ discard block |
||
258 | 268 | { |
259 | 269 | foreach ($context['custom_fields'] as $field) |
260 | 270 | { |
261 | - if ($field['show_reg'] < 2) |
|
262 | - echo ' |
|
271 | + if ($field['show_reg'] < 2) { |
|
272 | + echo ' |
|
263 | 273 | <dt> |
264 | 274 | <strong', !empty($field['is_error']) ? ' class="red"' : '', '>', $field['name'], ':</strong> |
265 | 275 | <span class="smalltext">', $field['desc'], '</span> |
266 | 276 | </dt> |
267 | 277 | <dd>', $field['input_html'], '</dd>'; |
278 | + } |
|
268 | 279 | } |
269 | 280 | } |
270 | 281 | |
@@ -294,13 +305,14 @@ discard block |
||
294 | 305 | <div id="confirm_buttons" class="flow_auto">'; |
295 | 306 | |
296 | 307 | // Age restriction in effect? |
297 | - if (!$context['require_agreement'] && $context['show_coppa']) |
|
298 | - echo ' |
|
308 | + if (!$context['require_agreement'] && $context['show_coppa']) { |
|
309 | + echo ' |
|
299 | 310 | <input type="submit" name="accept_agreement" value="', $context['coppa_agree_above'], '" class="button_submit"><br><br> |
300 | 311 | <input type="submit" name="accept_agreement_coppa" value="', $context['coppa_agree_below'], '" class="button_submit">'; |
301 | - else |
|
302 | - echo ' |
|
312 | + } else { |
|
313 | + echo ' |
|
303 | 314 | <input type="submit" name="regSubmit" value="', $txt['register'], '" tabindex="', $context['tabindex']++, '" class="button_submit">'; |
315 | + } |
|
304 | 316 | echo ' |
305 | 317 | </div> |
306 | 318 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -445,19 +457,20 @@ discard block |
||
445 | 457 | </head> |
446 | 458 | <body style="margin: 1ex;"> |
447 | 459 | <div class="windowbg description" style="text-align: center;">'; |
448 | - if (isBrowser('is_ie') || isBrowser('is_ie11')) |
|
449 | - echo ' |
|
460 | + if (isBrowser('is_ie') || isBrowser('is_ie11')) { |
|
461 | + echo ' |
|
450 | 462 | <object classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" type="audio/x-wav"> |
451 | 463 | <param name="AutoStart" value="1"> |
452 | 464 | <param name="FileName" value="', $context['verification_sound_href'], '"> |
453 | 465 | </object>'; |
454 | - else |
|
455 | - echo ' |
|
466 | + } else { |
|
467 | + echo ' |
|
456 | 468 | <audio src="', $context['verification_sound_href'], '" controls> |
457 | 469 | <object type="audio/x-wav" data="', $context['verification_sound_href'], '"> |
458 | 470 | <a href="', $context['verification_sound_href'], '" rel="nofollow">', $context['verification_sound_href'], '</a> |
459 | 471 | </object> |
460 | 472 | </audio>'; |
473 | + } |
|
461 | 474 | echo ' |
462 | 475 | <br> |
463 | 476 | <a href="', $context['verification_sound_href'], ';sound" rel="nofollow">', $txt['visual_verification_sound_again'], '</a><br> |
@@ -484,11 +497,12 @@ discard block |
||
484 | 497 | </div> |
485 | 498 | <div id="register_screen" class="windowbg2 noup">'; |
486 | 499 | |
487 | - if (!empty($context['registration_done'])) |
|
488 | - echo ' |
|
500 | + if (!empty($context['registration_done'])) { |
|
501 | + echo ' |
|
489 | 502 | <div class="infobox"> |
490 | 503 | ', $context['registration_done'], ' |
491 | 504 | </div>'; |
505 | + } |
|
492 | 506 | |
493 | 507 | echo ' |
494 | 508 | <dl class="register_form" id="admin_register_form"> |
@@ -524,9 +538,10 @@ discard block |
||
524 | 538 | <dd> |
525 | 539 | <select name="group" id="group_select" tabindex="', $context['tabindex']++, '">'; |
526 | 540 | |
527 | - foreach ($context['member_groups'] as $id => $name) |
|
528 | - echo ' |
|
541 | + foreach ($context['member_groups'] as $id => $name) { |
|
542 | + echo ' |
|
529 | 543 | <option value="', $id, '">', $name, '</option>'; |
544 | + } |
|
530 | 545 | |
531 | 546 | echo ' |
532 | 547 | </select> |
@@ -534,8 +549,8 @@ discard block |
||
534 | 549 | } |
535 | 550 | |
536 | 551 | // If there is any field marked as required, show it here! |
537 | - if (!empty($context['custom_fields_required']) && !empty($context['custom_fields'])) |
|
538 | - foreach ($context['custom_fields'] as $field) |
|
552 | + if (!empty($context['custom_fields_required']) && !empty($context['custom_fields'])) { |
|
553 | + foreach ($context['custom_fields'] as $field) |
|
539 | 554 | if ($field['show_reg'] > 1) |
540 | 555 | echo ' |
541 | 556 | <dt> |
@@ -543,6 +558,7 @@ discard block |
||
543 | 558 | <span class="smalltext">', $field['desc'], '</span> |
544 | 559 | </dt> |
545 | 560 | <dd>', str_replace('name="', 'tabindex="' . $context['tabindex']++ . '" name="', $field['input_html']), '</dd>'; |
561 | + } |
|
546 | 562 | |
547 | 563 | echo ' |
548 | 564 | <dt> |
@@ -579,12 +595,13 @@ discard block |
||
579 | 595 | { |
580 | 596 | global $context, $scripturl, $txt; |
581 | 597 | |
582 | - if (!empty($context['saved_successful'])) |
|
583 | - echo ' |
|
598 | + if (!empty($context['saved_successful'])) { |
|
599 | + echo ' |
|
584 | 600 | <div class="infobox">', $txt['settings_saved'], '</div>'; |
585 | - elseif (!empty($context['could_not_save'])) |
|
586 | - echo ' |
|
601 | + } elseif (!empty($context['could_not_save'])) { |
|
602 | + echo ' |
|
587 | 603 | <div class="errorbox">', $txt['admin_agreement_not_saved'], '</div>'; |
604 | + } |
|
588 | 605 | |
589 | 606 | // Just a big box to edit the text file ;). |
590 | 607 | echo ' |
@@ -594,9 +611,10 @@ discard block |
||
594 | 611 | </div>'; |
595 | 612 | |
596 | 613 | // Warning for if the file isn't writable. |
597 | - if (!empty($context['warning'])) |
|
598 | - echo ' |
|
614 | + if (!empty($context['warning'])) { |
|
615 | + echo ' |
|
599 | 616 | <p class="error">', $context['warning'], '</p>'; |
617 | + } |
|
600 | 618 | |
601 | 619 | echo ' |
602 | 620 | <div class="windowbg2 noup" id="registration_agreement">'; |
@@ -613,9 +631,10 @@ discard block |
||
613 | 631 | <strong>', $txt['admin_agreement_select_language'], ':</strong> |
614 | 632 | <select name="agree_lang" onchange="document.getElementById(\'change_reg\').submit();" tabindex="', $context['tabindex']++, '">'; |
615 | 633 | |
616 | - foreach ($context['editable_agreements'] as $file => $name) |
|
617 | - echo ' |
|
634 | + foreach ($context['editable_agreements'] as $file => $name) { |
|
635 | + echo ' |
|
618 | 636 | <option value="', $file, '"', $context['current_agreement'] == $file ? ' selected' : '', '>', $name, '</option>'; |
637 | + } |
|
619 | 638 | |
620 | 639 | echo ' |
621 | 640 | </select> |
@@ -655,9 +674,10 @@ discard block |
||
655 | 674 | { |
656 | 675 | global $context, $scripturl, $txt; |
657 | 676 | |
658 | - if (!empty($context['saved_successful'])) |
|
659 | - echo ' |
|
677 | + if (!empty($context['saved_successful'])) { |
|
678 | + echo ' |
|
660 | 679 | <div class="infobox">', $txt['settings_saved'], '</div>'; |
680 | + } |
|
661 | 681 | |
662 | 682 | echo ' |
663 | 683 | <form id="admin_form_wrapper" action="', $scripturl, '?action=admin;area=regcenter" method="post" accept-charset="', $context['character_set'], '"> |
@@ -21,8 +21,8 @@ discard block |
||
21 | 21 | <div id="personal_messages">'; |
22 | 22 | |
23 | 23 | // Show the capacity bar, if available. |
24 | - if (!empty($context['limit_bar'])) |
|
25 | - echo ' |
|
24 | + if (!empty($context['limit_bar'])) { |
|
25 | + echo ' |
|
26 | 26 | <div class="cat_bar"> |
27 | 27 | <h3 class="catbg"> |
28 | 28 | <span class="floatleft">', $txt['pm_capacity'], ':</span> |
@@ -32,14 +32,16 @@ discard block |
||
32 | 32 | <span class="floatright', $context['limit_bar']['percent'] > 90 ? ' alert' : '', '">', $context['limit_bar']['text'], '</span> |
33 | 33 | </h3> |
34 | 34 | </div>'; |
35 | + } |
|
35 | 36 | |
36 | 37 | // Message sent? Show a small indication. |
37 | - if (isset($context['pm_sent'])) |
|
38 | - echo ' |
|
38 | + if (isset($context['pm_sent'])) { |
|
39 | + echo ' |
|
39 | 40 | <div class="infobox"> |
40 | 41 | ', $txt['pm_sent'], ' |
41 | 42 | </div>'; |
42 | -} |
|
43 | + } |
|
44 | + } |
|
43 | 45 | |
44 | 46 | /** |
45 | 47 | * Just the end of the index bar, nothing special. |
@@ -72,8 +74,7 @@ discard block |
||
72 | 74 | { |
73 | 75 | echo ' |
74 | 76 | <div class="no_unread">', $txt['pm_no_unread'], '</div>'; |
75 | - } |
|
76 | - else |
|
77 | + } else |
|
77 | 78 | { |
78 | 79 | foreach ($context['unread_pms'] as $id_pm => $pm_details) |
79 | 80 | { |
@@ -193,14 +194,15 @@ discard block |
||
193 | 194 | if ($context['get_pmessage']('message', true)) |
194 | 195 | { |
195 | 196 | // Show the helpful titlebar - generally. |
196 | - if ($context['display_mode'] != 1) |
|
197 | - echo ' |
|
197 | + if ($context['display_mode'] != 1) { |
|
198 | + echo ' |
|
198 | 199 | <div class="cat_bar"> |
199 | 200 | <h3 class="catbg"> |
200 | 201 | <span id="author">', $txt['author'], '</span> |
201 | 202 | <span id="topic_title">', $txt[$context['display_mode'] == 0 ? 'messages' : 'conversation'], '</span> |
202 | 203 | </h3> |
203 | 204 | </div>'; |
205 | + } |
|
204 | 206 | |
205 | 207 | // Show a few buttons if we are in conversation mode and outputting the first message. |
206 | 208 | if ($context['display_mode'] == 2) |
@@ -229,9 +231,10 @@ discard block |
||
229 | 231 | <div class="custom_fields_above_member"> |
230 | 232 | <ul class="nolist">'; |
231 | 233 | |
232 | - foreach ($message['custom_fields']['above_member'] as $custom) |
|
233 | - echo ' |
|
234 | + foreach ($message['custom_fields']['above_member'] as $custom) { |
|
235 | + echo ' |
|
234 | 236 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
237 | + } |
|
235 | 238 | |
236 | 239 | echo ' |
237 | 240 | </ul> |
@@ -243,9 +246,10 @@ discard block |
||
243 | 246 | <a id="msg', $message['id'], '"></a>'; |
244 | 247 | |
245 | 248 | // Show online and offline buttons? |
246 | - if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest']) |
|
247 | - echo ' |
|
249 | + if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest']) { |
|
250 | + echo ' |
|
248 | 251 | <span class="' . ($message['member']['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $message['member']['online']['text'] . '"></span>'; |
252 | + } |
|
249 | 253 | |
250 | 254 | // Show a link to the member's profile (but only if the sender isn't a guest). |
251 | 255 | echo ' |
@@ -258,48 +262,56 @@ discard block |
||
258 | 262 | <ul class="user_info">'; |
259 | 263 | |
260 | 264 | // Show the user's avatar. |
261 | - if (!empty($modSettings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image'])) |
|
262 | - echo ' |
|
265 | + if (!empty($modSettings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image'])) { |
|
266 | + echo ' |
|
263 | 267 | <li class="avatar"> |
264 | 268 | <a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">', $message['member']['avatar']['image'], '</a> |
265 | 269 | </li>'; |
270 | + } |
|
266 | 271 | |
267 | 272 | // Are there any custom fields below the avatar? |
268 | - if (!empty($message['custom_fields']['below_avatar'])) |
|
269 | - foreach ($message['custom_fields']['below_avatar'] as $custom) |
|
273 | + if (!empty($message['custom_fields']['below_avatar'])) { |
|
274 | + foreach ($message['custom_fields']['below_avatar'] as $custom) |
|
270 | 275 | echo ' |
271 | 276 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
277 | + } |
|
272 | 278 | |
273 | - if (!$message['member']['is_guest']) |
|
274 | - echo ' |
|
279 | + if (!$message['member']['is_guest']) { |
|
280 | + echo ' |
|
275 | 281 | <li class="icons">', $message['member']['group_icons'], '</li>'; |
282 | + } |
|
276 | 283 | // Show the member's primary group (like 'Administrator') if they have one. |
277 | - if (isset($message['member']['group']) && $message['member']['group'] != '') |
|
278 | - echo ' |
|
284 | + if (isset($message['member']['group']) && $message['member']['group'] != '') { |
|
285 | + echo ' |
|
279 | 286 | <li class="membergroup">', $message['member']['group'], '</li>'; |
287 | + } |
|
280 | 288 | |
281 | 289 | // Show the member's custom title, if they have one. |
282 | - if (isset($message['member']['title']) && $message['member']['title'] != '') |
|
283 | - echo ' |
|
290 | + if (isset($message['member']['title']) && $message['member']['title'] != '') { |
|
291 | + echo ' |
|
284 | 292 | <li class="title">', $message['member']['title'], '</li>'; |
293 | + } |
|
285 | 294 | |
286 | 295 | // Don't show these things for guests. |
287 | 296 | if (!$message['member']['is_guest']) |
288 | 297 | { |
289 | 298 | // Show the post group if and only if they have no other group or the option is on, and they are in a post group. |
290 | - if ((empty($modSettings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '') |
|
291 | - echo ' |
|
299 | + if ((empty($modSettings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '') { |
|
300 | + echo ' |
|
292 | 301 | <li class="postgroup">', $message['member']['post_group'], '</li>'; |
302 | + } |
|
293 | 303 | |
294 | 304 | // Show how many posts they have made. |
295 | - if (!isset($context['disabled_fields']['posts'])) |
|
296 | - echo ' |
|
305 | + if (!isset($context['disabled_fields']['posts'])) { |
|
306 | + echo ' |
|
297 | 307 | <li class="postcount">', $txt['member_postcount'], ': ', $message['member']['posts'], '</li>'; |
308 | + } |
|
298 | 309 | |
299 | 310 | // Show their personal text? |
300 | - if (!empty($modSettings['show_blurb']) && $message['member']['blurb'] != '') |
|
301 | - echo ' |
|
311 | + if (!empty($modSettings['show_blurb']) && $message['member']['blurb'] != '') { |
|
312 | + echo ' |
|
302 | 313 | <li class="blurb">', $message['member']['blurb'], '</li>'; |
314 | + } |
|
303 | 315 | |
304 | 316 | // Any custom fields to show as icons? |
305 | 317 | if (!empty($message['custom_fields']['icons'])) |
@@ -308,9 +320,10 @@ discard block |
||
308 | 320 | <li class="im_icons"> |
309 | 321 | <ol>'; |
310 | 322 | |
311 | - foreach ($message['custom_fields']['icons'] as $custom) |
|
312 | - echo ' |
|
323 | + foreach ($message['custom_fields']['icons'] as $custom) { |
|
324 | + echo ' |
|
313 | 325 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
326 | + } |
|
314 | 327 | |
315 | 328 | echo ' |
316 | 329 | </ol> |
@@ -318,19 +331,22 @@ discard block |
||
318 | 331 | } |
319 | 332 | |
320 | 333 | // Show the IP to this user for this post - because you can moderate? |
321 | - if (!empty($context['can_moderate_forum']) && !empty($message['member']['ip'])) |
|
322 | - echo ' |
|
334 | + if (!empty($context['can_moderate_forum']) && !empty($message['member']['ip'])) { |
|
335 | + echo ' |
|
323 | 336 | <li class="poster_ip"><a href="', $scripturl, '?action=', !empty($message['member']['is_guest']) ? 'trackip' : 'profile;area=tracking;sa=ip;u=' . $message['member']['id'], ';searchip=', $message['member']['ip'], '">', $message['member']['ip'], '</a> <a href="', $scripturl, '?action=helpadmin;help=see_admin_ip" onclick="return reqOverlayDiv(this.href);" class="help">(?)</a></li>'; |
337 | + } |
|
324 | 338 | |
325 | 339 | // Or, should we show it because this is you? |
326 | - elseif ($message['can_see_ip']) |
|
327 | - echo ' |
|
340 | + elseif ($message['can_see_ip']) { |
|
341 | + echo ' |
|
328 | 342 | <li class="poster_ip"><a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $message['member']['ip'], '</a></li>'; |
343 | + } |
|
329 | 344 | |
330 | 345 | // Okay, you are logged in, then we can show something about why IPs are logged... |
331 | - else |
|
332 | - echo ' |
|
346 | + else { |
|
347 | + echo ' |
|
333 | 348 | <li class="poster_ip"><a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $txt['logged'], '</a></li>'; |
349 | + } |
|
334 | 350 | |
335 | 351 | // Show the profile, website, email address, and personal message buttons. |
336 | 352 | if ($message['member']['show_profile_buttons']) |
@@ -340,24 +356,28 @@ discard block |
||
340 | 356 | <ol class="profile_icons">'; |
341 | 357 | |
342 | 358 | // Show the profile button |
343 | - if ($message['member']['can_view_profile']) |
|
344 | - echo ' |
|
359 | + if ($message['member']['can_view_profile']) { |
|
360 | + echo ' |
|
345 | 361 | <li><a href="', $message['member']['href'], '">', ($settings['use_image_buttons'] ? '<img src="' . $settings['images_url'] . '/icons/profile_sm.png" alt="' . $txt['view_profile'] . '" title="' . $txt['view_profile'] . '">' : $txt['view_profile']), '</a></li>'; |
362 | + } |
|
346 | 363 | |
347 | 364 | // Don't show an icon if they haven't specified a website. |
348 | - if ($message['member']['website']['url'] != '' && !isset($context['disabled_fields']['website'])) |
|
349 | - echo ' |
|
365 | + if ($message['member']['website']['url'] != '' && !isset($context['disabled_fields']['website'])) { |
|
366 | + echo ' |
|
350 | 367 | <li><a href="', $message['member']['website']['url'], '" title="' . $message['member']['website']['title'] . '" target="_blank" class="new_win">', ($settings['use_image_buttons'] ? '<span class="generic_icons www centericon" title="' . $message['member']['website']['title'] . '"></span>' : $txt['www']), '</a></li>'; |
368 | + } |
|
351 | 369 | |
352 | 370 | // Don't show the email address if they want it hidden. |
353 | - if ($message['member']['show_email']) |
|
354 | - echo ' |
|
371 | + if ($message['member']['show_email']) { |
|
372 | + echo ' |
|
355 | 373 | <li><a href="mailto:', $message['member']['email'], '" rel="nofollow">', ($settings['use_image_buttons'] ? '<span class="generic_icons mail centericon" title="' . $txt['email'] . '"></span>' : $txt['email']), '</a></li>'; |
374 | + } |
|
356 | 375 | |
357 | 376 | // Since we know this person isn't a guest, you *can* message them. |
358 | - if ($context['can_send_pm']) |
|
359 | - echo ' |
|
377 | + if ($context['can_send_pm']) { |
|
378 | + echo ' |
|
360 | 379 | <li><a href="', $scripturl, '?action=pm;sa=send;u=', $message['member']['id'], '" title="', $message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline'], '">', $settings['use_image_buttons'] ? '<span class="generic_icons im_' . ($message['member']['online']['is_online'] ? 'on' : 'off') . ' centericon" title="' . ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']) . '"></span> ' : ($message['member']['online']['is_online'] ? $txt['pm_online'] : $txt['pm_offline']), '</a></li>'; |
380 | + } |
|
361 | 381 | |
362 | 382 | echo ' |
363 | 383 | </ol> |
@@ -365,21 +385,24 @@ discard block |
||
365 | 385 | } |
366 | 386 | |
367 | 387 | // Any custom fields for standard placement? |
368 | - if (!empty($message['custom_fields']['standard'])) |
|
369 | - foreach ($message['custom_fields']['standard'] as $custom) |
|
388 | + if (!empty($message['custom_fields']['standard'])) { |
|
389 | + foreach ($message['custom_fields']['standard'] as $custom) |
|
370 | 390 | echo ' |
371 | 391 | <li class="custom ', $custom['col_name'] ,'">', $custom['title'], ': ', $custom['value'], '</li>'; |
392 | + } |
|
372 | 393 | |
373 | 394 | // Are we showing the warning status? |
374 | - if ($message['member']['can_see_warning']) |
|
375 | - echo ' |
|
395 | + if ($message['member']['can_see_warning']) { |
|
396 | + echo ' |
|
376 | 397 | <li class="warning">', $context['can_issue_warning'] ? '<a href="' . $scripturl . '?action=profile;area=issuewarning;u=' . $message['member']['id'] . '">' : '', '<span class="generic_icons warning_', $message['member']['warning_status'], '"></span>', $context['can_issue_warning'] ? '</a>' : '', '<span class="warn_', $message['member']['warning_status'], '">', $txt['warn_' . $message['member']['warning_status']], '</span></li>'; |
398 | + } |
|
377 | 399 | |
378 | 400 | // Are there any custom fields to show at the bottom of the poster info? |
379 | - if (!empty($message['custom_fields']['bottom_poster'])) |
|
380 | - foreach ($message['custom_fields']['bottom_poster'] as $custom) |
|
401 | + if (!empty($message['custom_fields']['bottom_poster'])) { |
|
402 | + foreach ($message['custom_fields']['bottom_poster'] as $custom) |
|
381 | 403 | echo ' |
382 | 404 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
405 | + } |
|
383 | 406 | } |
384 | 407 | |
385 | 408 | // Done with the information about the poster... on to the post itself. |
@@ -398,25 +421,29 @@ discard block |
||
398 | 421 | <span class="smalltext">« <strong> ', $txt['sent_to'], ':</strong> '; |
399 | 422 | |
400 | 423 | // People it was sent directly to.... |
401 | - if (!empty($message['recipients']['to'])) |
|
402 | - echo implode(', ', $message['recipients']['to']); |
|
424 | + if (!empty($message['recipients']['to'])) { |
|
425 | + echo implode(', ', $message['recipients']['to']); |
|
426 | + } |
|
403 | 427 | // Otherwise, we're just going to say "some people"... |
404 | - elseif ($context['folder'] != 'sent') |
|
405 | - echo '(', $txt['pm_undisclosed_recipients'], ')'; |
|
428 | + elseif ($context['folder'] != 'sent') { |
|
429 | + echo '(', $txt['pm_undisclosed_recipients'], ')'; |
|
430 | + } |
|
406 | 431 | |
407 | 432 | echo ' |
408 | 433 | <strong> ', $txt['on'], ':</strong> ', $message['time'], ' » |
409 | 434 | </span>'; |
410 | 435 | |
411 | 436 | // If we're in the sent items, show who it was sent to besides the "To:" people. |
412 | - if (!empty($message['recipients']['bcc'])) |
|
413 | - echo ' |
|
437 | + if (!empty($message['recipients']['bcc'])) { |
|
438 | + echo ' |
|
414 | 439 | <br><span class="smalltext">« <strong> ', $txt['pm_bcc'], ':</strong> ', implode(', ', $message['recipients']['bcc']), ' »</span>'; |
440 | + } |
|
415 | 441 | |
416 | - if (!empty($message['is_replied_to'])) |
|
417 | - echo ' |
|
442 | + if (!empty($message['is_replied_to'])) { |
|
443 | + echo ' |
|
418 | 444 | <br><span class="smalltext">« ', $txt['pm_is_replied_to'], ' »</span> |
419 | 445 | <br><span class="smalltext">« ', $context['folder'] == 'sent' ? $txt['pm_sent_is_replied_to'] : $txt['pm_is_replied_to'], ' »</span>'; |
446 | + } |
|
420 | 447 | |
421 | 448 | echo ' |
422 | 449 | </div> |
@@ -424,13 +451,15 @@ discard block |
||
424 | 451 | <div class="post"> |
425 | 452 | <div class="inner" id="msg_', $message['id'], '"', '>', $message['body'], '</div>'; |
426 | 453 | |
427 | - if ($message['can_report'] || $context['can_send_pm']) |
|
428 | - echo ' |
|
454 | + if ($message['can_report'] || $context['can_send_pm']) { |
|
455 | + echo ' |
|
429 | 456 | <div class="under_message">'; |
457 | + } |
|
430 | 458 | |
431 | - if ($message['can_report']) |
|
432 | - echo ' |
|
459 | + if ($message['can_report']) { |
|
460 | + echo ' |
|
433 | 461 | <a href="' . $scripturl . '?action=pm;sa=report;l=' . $context['current_label_id'] . ';pmsg=' . $message['id'] . '" class="floatright">' . $txt['pm_report_to_admin'] . '</a>'; |
462 | + } |
|
434 | 463 | |
435 | 464 | echo ' |
436 | 465 | <ul class="quickbuttons">'; |
@@ -442,32 +471,36 @@ discard block |
||
442 | 471 | if (!$message['member']['is_guest']) |
443 | 472 | { |
444 | 473 | // Is there than more than one recipient you can reply to? |
445 | - if ($message['number_recipients'] > 1) |
|
446 | - echo ' |
|
474 | + if ($message['number_recipients'] > 1) { |
|
475 | + echo ' |
|
447 | 476 | <li><a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote;u=all"><span class="generic_icons reply_all_button"></span>', $txt['reply_to_all'], '</a></li>'; |
477 | + } |
|
448 | 478 | |
449 | 479 | echo ' |
450 | 480 | <li><a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';u=', $message['member']['id'], '"><span class="generic_icons reply_button"></span>', $txt['reply'], '</a></li> |
451 | 481 | <li><a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote', $context['folder'] == 'sent' ? '' : ';u=' . $message['member']['id'], '"><span class="generic_icons quote"></span>', $txt['quote_action'], '</a></li>'; |
452 | 482 | } |
453 | 483 | // This is for "forwarding" - even if the member is gone. |
454 | - else |
|
455 | - echo ' |
|
484 | + else { |
|
485 | + echo ' |
|
456 | 486 | <li><a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote"><span class="generic_icons quote"></span>', $txt['reply_quote'], '</a></li>'; |
487 | + } |
|
457 | 488 | } |
458 | 489 | echo ' |
459 | 490 | <li><a href="', $scripturl, '?action=pm;sa=pmactions;pm_actions%5b', $message['id'], '%5D=delete;f=', $context['folder'], ';start=', $context['start'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';', $context['session_var'], '=', $context['session_id'], '" data-confirm="', addslashes($txt['remove_message_question']), '" class="you_sure"><span class="generic_icons remove_button"></span>', $txt['delete'], '</a></li>'; |
460 | 491 | |
461 | - if (empty($context['display_mode'])) |
|
462 | - echo ' |
|
492 | + if (empty($context['display_mode'])) { |
|
493 | + echo ' |
|
463 | 494 | <li><input type="checkbox" name="pms[]" id="deletedisplay', $message['id'], '" value="', $message['id'], '" onclick="document.getElementById(\'deletelisting', $message['id'], '\').checked = this.checked;" class="input_check"></li>'; |
495 | + } |
|
464 | 496 | |
465 | 497 | echo ' |
466 | 498 | </ul>'; |
467 | 499 | |
468 | - if ($message['can_report'] || $context['can_send_pm']) |
|
469 | - echo ' |
|
500 | + if ($message['can_report'] || $context['can_send_pm']) { |
|
501 | + echo ' |
|
470 | 502 | </div>'; |
503 | + } |
|
471 | 504 | |
472 | 505 | // Are there any custom profile fields for above the signature? |
473 | 506 | if (!empty($message['custom_fields']['above_signature'])) |
@@ -476,9 +509,10 @@ discard block |
||
476 | 509 | <div class="custom_fields_above_signature"> |
477 | 510 | <ul class="nolist">'; |
478 | 511 | |
479 | - foreach ($message['custom_fields']['above_signature'] as $custom) |
|
480 | - echo ' |
|
512 | + foreach ($message['custom_fields']['above_signature'] as $custom) { |
|
513 | + echo ' |
|
481 | 514 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
515 | + } |
|
482 | 516 | |
483 | 517 | echo ' |
484 | 518 | </ul> |
@@ -486,9 +520,10 @@ discard block |
||
486 | 520 | } |
487 | 521 | |
488 | 522 | // Show the member's signature? |
489 | - if (!empty($message['member']['signature']) && empty($options['show_no_signatures']) && $context['signature_enabled']) |
|
490 | - echo ' |
|
523 | + if (!empty($message['member']['signature']) && empty($options['show_no_signatures']) && $context['signature_enabled']) { |
|
524 | + echo ' |
|
491 | 525 | <div class="signature">', $message['member']['signature'], '</div>'; |
526 | + } |
|
492 | 527 | |
493 | 528 | // Are there any custom profile fields for below the signature? |
494 | 529 | if (!empty($message['custom_fields']['below_signature'])) |
@@ -497,9 +532,10 @@ discard block |
||
497 | 532 | <div class="custom_fields_below_signature"> |
498 | 533 | <ul class="nolist">'; |
499 | 534 | |
500 | - foreach ($message['custom_fields']['below_signature'] as $custom) |
|
501 | - echo ' |
|
535 | + foreach ($message['custom_fields']['below_signature'] as $custom) { |
|
536 | + echo ' |
|
502 | 537 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
538 | + } |
|
503 | 539 | |
504 | 540 | echo ' |
505 | 541 | </ul> |
@@ -524,19 +560,21 @@ discard block |
||
524 | 560 | { |
525 | 561 | echo ' |
526 | 562 | <option value="" disabled>', $txt['pm_msg_label_apply'], ':</option>'; |
527 | - foreach ($context['labels'] as $label) |
|
528 | - if (!isset($message['labels'][$label['id']])) |
|
563 | + foreach ($context['labels'] as $label) { |
|
564 | + if (!isset($message['labels'][$label['id']])) |
|
529 | 565 | echo ' |
530 | 566 | <option value="', $label['id'], '"> ', $label['name'], '</option>'; |
567 | + } |
|
531 | 568 | } |
532 | 569 | // ... and are there any that can be removed? |
533 | 570 | if (!empty($message['labels']) && (count($message['labels']) > 1 || !isset($message['labels'][-1]))) |
534 | 571 | { |
535 | 572 | echo ' |
536 | 573 | <option value="" disabled>', $txt['pm_msg_label_remove'], ':</option>'; |
537 | - foreach ($message['labels'] as $label) |
|
538 | - echo ' |
|
574 | + foreach ($message['labels'] as $label) { |
|
575 | + echo ' |
|
539 | 576 | <option value="', $label['id'], '"> ', $label['name'], '</option>'; |
577 | + } |
|
540 | 578 | } |
541 | 579 | echo ' |
542 | 580 | </select> |
@@ -556,13 +594,14 @@ discard block |
||
556 | 594 | </div>'; |
557 | 595 | } |
558 | 596 | |
559 | - if (empty($context['display_mode'])) |
|
560 | - echo ' |
|
597 | + if (empty($context['display_mode'])) { |
|
598 | + echo ' |
|
561 | 599 | |
562 | 600 | <div class="pagesection"> |
563 | 601 | <div class="floatleft">', $context['page_index'], '</div> |
564 | 602 | <div class="floatright"><input type="submit" name="del_selected" value="', $txt['quickmod_delete_selected'], '" style="font-weight: normal;" onclick="if (!confirm(\'', $txt['delete_selected_confirm'], '\')) return false;" class="button_submit"></div> |
565 | 603 | </div>'; |
604 | + } |
|
566 | 605 | |
567 | 606 | // Show a few buttons if we are in conversation mode and outputting the first message. |
568 | 607 | elseif ($context['display_mode'] == 2 && isset($context['conversation_buttons'])) |
@@ -622,11 +661,12 @@ discard block |
||
622 | 661 | </tr> |
623 | 662 | </thead> |
624 | 663 | <tbody>'; |
625 | - if (!$context['show_delete']) |
|
626 | - echo ' |
|
664 | + if (!$context['show_delete']) { |
|
665 | + echo ' |
|
627 | 666 | <tr class="windowbg"> |
628 | 667 | <td colspan="5">', $txt['pm_alert_none'], '</td> |
629 | 668 | </tr>'; |
669 | + } |
|
630 | 670 | |
631 | 671 | while ($message = $context['get_pmessage']('subject')) |
632 | 672 | { |
@@ -679,9 +719,10 @@ discard block |
||
679 | 719 | |
680 | 720 | foreach ($context['labels'] as $label) |
681 | 721 | { |
682 | - if ($label['id'] != $context['current_label_id']) |
|
683 | - echo ' |
|
722 | + if ($label['id'] != $context['current_label_id']) { |
|
723 | + echo ' |
|
684 | 724 | <option value="add_', $label['id'], '"> ', $label['name'], '</option>'; |
725 | + } |
|
685 | 726 | } |
686 | 727 | |
687 | 728 | echo ' |
@@ -766,9 +807,10 @@ discard block |
||
766 | 807 | <dt class="between">', $txt['pm_search_post_age'], ':</dt> |
767 | 808 | <dd>', $txt['pm_search_between'], ' <input type="number" name="minage" value="', empty($context['search_params']['minage']) ? '0' : $context['search_params']['minage'], '" size="5" maxlength="5" class="input_text" min="0" max="9999"> ', $txt['pm_search_between_and'], ' <input type="number" name="maxage" value="', empty($context['search_params']['maxage']) ? '9999' : $context['search_params']['maxage'], '" size="5" maxlength="5" class="input_text" min="0" max="9999"> ', $txt['pm_search_between_days'], '</dd> |
768 | 809 | </dl>'; |
769 | - if (!$context['currently_using_labels']) |
|
770 | - echo ' |
|
810 | + if (!$context['currently_using_labels']) { |
|
811 | + echo ' |
|
771 | 812 | <input type="submit" name="pm_search" value="', $txt['pm_search_go'], '" class="button_submit">'; |
813 | + } |
|
772 | 814 | echo ' |
773 | 815 | <br class="clear_right"> |
774 | 816 | </div> |
@@ -788,12 +830,13 @@ discard block |
||
788 | 830 | <div id="advanced_panel_div"> |
789 | 831 | <ul id="searchLabelsExpand">'; |
790 | 832 | |
791 | - foreach ($context['search_labels'] as $label) |
|
792 | - echo ' |
|
833 | + foreach ($context['search_labels'] as $label) { |
|
834 | + echo ' |
|
793 | 835 | <li> |
794 | 836 | <label for="searchlabel_', $label['id'], '"><input type="checkbox" id="searchlabel_', $label['id'], '" name="searchlabel[', $label['id'], ']" value="', $label['id'], '"', $label['checked'] ? ' checked' : '', ' class="input_check"> |
795 | 837 | ', $label['name'], '</label> |
796 | 838 | </li>'; |
839 | + } |
|
797 | 840 | |
798 | 841 | echo ' |
799 | 842 | </ul> |
@@ -853,8 +896,8 @@ discard block |
||
853 | 896 | </div>'; |
854 | 897 | |
855 | 898 | // complete results ? |
856 | - if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages'])) |
|
857 | - echo ' |
|
899 | + if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages'])) { |
|
900 | + echo ' |
|
858 | 901 | <table class="table_grid"> |
859 | 902 | <thead> |
860 | 903 | <tr class="title_bar"> |
@@ -864,6 +907,7 @@ discard block |
||
864 | 907 | </tr> |
865 | 908 | </thead> |
866 | 909 | <tbody>'; |
910 | + } |
|
867 | 911 | |
868 | 912 | // Print each message out... |
869 | 913 | foreach ($context['personal_messages'] as $message) |
@@ -883,11 +927,13 @@ discard block |
||
883 | 927 | |
884 | 928 | // Show the recipients. |
885 | 929 | // @todo This doesn't deal with the sent item searching quite right for bcc. |
886 | - if (!empty($message['recipients']['to'])) |
|
887 | - echo implode(', ', $message['recipients']['to']); |
|
930 | + if (!empty($message['recipients']['to'])) { |
|
931 | + echo implode(', ', $message['recipients']['to']); |
|
932 | + } |
|
888 | 933 | // Otherwise, we're just going to say "some people"... |
889 | - elseif ($context['folder'] != 'sent') |
|
890 | - echo '(', $txt['pm_undisclosed_recipients'], ')'; |
|
934 | + elseif ($context['folder'] != 'sent') { |
|
935 | + echo '(', $txt['pm_undisclosed_recipients'], ')'; |
|
936 | + } |
|
891 | 937 | |
892 | 938 | echo ' |
893 | 939 | </h3> |
@@ -901,14 +947,16 @@ discard block |
||
901 | 947 | $quote_button = create_button('quote.png', 'reply_quote', 'reply_quote', 'class="centericon"'); |
902 | 948 | $reply_button = create_button('im_reply.png', 'reply', 'reply', 'class="centericon"'); |
903 | 949 | // You can only reply if they are not a guest... |
904 | - if (!$message['member']['is_guest']) |
|
905 | - echo ' |
|
950 | + if (!$message['member']['is_guest']) { |
|
951 | + echo ' |
|
906 | 952 | <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote;u=', $context['folder'] == 'sent' ? '' : $message['member']['id'], '">', $quote_button , '</a>', $context['menu_separator'], ' |
907 | 953 | <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';u=', $message['member']['id'], '">', $reply_button , '</a> ', $context['menu_separator']; |
954 | + } |
|
908 | 955 | // This is for "forwarding" - even if the member is gone. |
909 | - else |
|
910 | - echo ' |
|
956 | + else { |
|
957 | + echo ' |
|
911 | 958 | <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote">', $quote_button , '</a>', $context['menu_separator']; |
959 | + } |
|
912 | 960 | } |
913 | 961 | |
914 | 962 | echo ' |
@@ -929,17 +977,19 @@ discard block |
||
929 | 977 | } |
930 | 978 | |
931 | 979 | // Finish off the page... |
932 | - if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages'])) |
|
933 | - echo ' |
|
980 | + if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages'])) { |
|
981 | + echo ' |
|
934 | 982 | </tbody> |
935 | 983 | </table>'; |
984 | + } |
|
936 | 985 | |
937 | 986 | // No results? |
938 | - if (empty($context['personal_messages'])) |
|
939 | - echo ' |
|
987 | + if (empty($context['personal_messages'])) { |
|
988 | + echo ' |
|
940 | 989 | <div class="windowbg"> |
941 | 990 | <p class="centertext">', $txt['pm_search_none_found'], '</p> |
942 | 991 | </div>'; |
992 | + } |
|
943 | 993 | |
944 | 994 | echo ' |
945 | 995 | <div class="pagesection"> |
@@ -963,12 +1013,14 @@ discard block |
||
963 | 1013 | <h3 class="catbg">', $txt['pm_send_report'], '</h3> |
964 | 1014 | </div> |
965 | 1015 | <div class="windowbg">'; |
966 | - if (!empty($context['send_log']['sent'])) |
|
967 | - foreach ($context['send_log']['sent'] as $log_entry) |
|
1016 | + if (!empty($context['send_log']['sent'])) { |
|
1017 | + foreach ($context['send_log']['sent'] as $log_entry) |
|
968 | 1018 | echo '<span class="error">', $log_entry, '</span><br>'; |
969 | - if (!empty($context['send_log']['failed'])) |
|
970 | - foreach ($context['send_log']['failed'] as $log_entry) |
|
1019 | + } |
|
1020 | + if (!empty($context['send_log']['failed'])) { |
|
1021 | + foreach ($context['send_log']['failed'] as $log_entry) |
|
971 | 1022 | echo '<span class="error">', $log_entry, '</span><br>'; |
1023 | + } |
|
972 | 1024 | echo ' |
973 | 1025 | </div> |
974 | 1026 | <br>'; |
@@ -1016,12 +1068,13 @@ discard block |
||
1016 | 1068 | </dl> |
1017 | 1069 | </div>'; |
1018 | 1070 | |
1019 | - if (!empty($modSettings['drafts_pm_enabled'])) |
|
1020 | - echo ' |
|
1071 | + if (!empty($modSettings['drafts_pm_enabled'])) { |
|
1072 | + echo ' |
|
1021 | 1073 | <div id="draft_section" class="infobox"', isset($context['draft_saved']) ? '' : ' style="display: none;"', '>', |
1022 | 1074 | sprintf($txt['draft_pm_saved'], $scripturl . '?action=pm;sa=showpmdrafts'), ' |
1023 | 1075 | ', (!empty($modSettings['drafts_keep_days']) ? ' <strong>' . sprintf($txt['draft_save_warning'], $modSettings['drafts_keep_days']) . '</strong>' : ''), ' |
1024 | 1076 | </div>'; |
1077 | + } |
|
1025 | 1078 | |
1026 | 1079 | echo ' |
1027 | 1080 | <dl id="post_header">'; |
@@ -1076,9 +1129,10 @@ discard block |
||
1076 | 1129 | } |
1077 | 1130 | |
1078 | 1131 | // What about smileys? |
1079 | - if (!empty($context['smileys']['postform']) || !empty($context['smileys']['popup'])) |
|
1080 | - echo ' |
|
1132 | + if (!empty($context['smileys']['postform']) || !empty($context['smileys']['popup'])) { |
|
1133 | + echo ' |
|
1081 | 1134 | <div id="smileyBox_message"></div>'; |
1135 | + } |
|
1082 | 1136 | |
1083 | 1137 | // Show BBC buttons, smileys and textbox. |
1084 | 1138 | echo ' |
@@ -1125,10 +1179,11 @@ discard block |
||
1125 | 1179 | <dt><strong>', $txt['subject'], '</strong></dt> |
1126 | 1180 | <dd><strong>', $txt['draft_saved_on'], '</strong></dd>'; |
1127 | 1181 | |
1128 | - foreach ($context['drafts'] as $draft) |
|
1129 | - echo ' |
|
1182 | + foreach ($context['drafts'] as $draft) { |
|
1183 | + echo ' |
|
1130 | 1184 | <dt>', $draft['link'], '</dt> |
1131 | 1185 | <dd>', $draft['poster_time'], '</dd>'; |
1186 | + } |
|
1132 | 1187 | echo ' |
1133 | 1188 | </dl> |
1134 | 1189 | </div>'; |
@@ -1234,8 +1289,8 @@ discard block |
||
1234 | 1289 | }'; |
1235 | 1290 | |
1236 | 1291 | // Code for showing and hiding drafts |
1237 | - if (!empty($context['drafts'])) |
|
1238 | - echo ' |
|
1292 | + if (!empty($context['drafts'])) { |
|
1293 | + echo ' |
|
1239 | 1294 | var oSwapDraftOptions = new smc_Toggle({ |
1240 | 1295 | bToggleEnabled: true, |
1241 | 1296 | bCurrentlyCollapsed: true, |
@@ -1257,13 +1312,14 @@ discard block |
||
1257 | 1312 | } |
1258 | 1313 | ] |
1259 | 1314 | });'; |
1315 | + } |
|
1260 | 1316 | |
1261 | 1317 | echo ' |
1262 | 1318 | </script>'; |
1263 | 1319 | |
1264 | 1320 | // Show the message you're replying to. |
1265 | - if ($context['reply']) |
|
1266 | - echo ' |
|
1321 | + if ($context['reply']) { |
|
1322 | + echo ' |
|
1267 | 1323 | <br> |
1268 | 1324 | <br> |
1269 | 1325 | <div class="cat_bar"> |
@@ -1277,6 +1333,7 @@ discard block |
||
1277 | 1333 | <hr> |
1278 | 1334 | ', $context['quoted_message']['body'], ' |
1279 | 1335 | </div><br class="clear">'; |
1336 | + } |
|
1280 | 1337 | |
1281 | 1338 | echo ' |
1282 | 1339 | <script> |
@@ -1287,22 +1344,24 @@ discard block |
||
1287 | 1344 | sTextDeleteItem: \'', $txt['autosuggest_delete_item'], '\', |
1288 | 1345 | sToControlId: \'to_control\', |
1289 | 1346 | aToRecipients: ['; |
1290 | - foreach ($context['recipients']['to'] as $i => $member) |
|
1291 | - echo ' |
|
1347 | + foreach ($context['recipients']['to'] as $i => $member) { |
|
1348 | + echo ' |
|
1292 | 1349 | { |
1293 | 1350 | sItemId: ', JavaScriptEscape($member['id']), ', |
1294 | 1351 | sItemName: ', JavaScriptEscape($member['name']), ' |
1295 | 1352 | }', $i == count($context['recipients']['to']) - 1 ? '' : ','; |
1353 | + } |
|
1296 | 1354 | |
1297 | 1355 | echo ' |
1298 | 1356 | ], |
1299 | 1357 | aBccRecipients: ['; |
1300 | - foreach ($context['recipients']['bcc'] as $i => $member) |
|
1301 | - echo ' |
|
1358 | + foreach ($context['recipients']['bcc'] as $i => $member) { |
|
1359 | + echo ' |
|
1302 | 1360 | { |
1303 | 1361 | sItemId: ', JavaScriptEscape($member['id']), ', |
1304 | 1362 | sItemName: ', JavaScriptEscape($member['name']), ' |
1305 | 1363 | }', $i == count($context['recipients']['bcc']) - 1 ? '' : ','; |
1364 | + } |
|
1306 | 1365 | |
1307 | 1366 | echo ' |
1308 | 1367 | ], |
@@ -1389,26 +1448,28 @@ discard block |
||
1389 | 1448 | </th> |
1390 | 1449 | <th class="centertext table_icon">'; |
1391 | 1450 | |
1392 | - if (count($context['labels']) > 2) |
|
1393 | - echo ' |
|
1451 | + if (count($context['labels']) > 2) { |
|
1452 | + echo ' |
|
1394 | 1453 | <input type="checkbox" class="input_check" onclick="invertAll(this, this.form);">'; |
1454 | + } |
|
1395 | 1455 | |
1396 | 1456 | echo ' |
1397 | 1457 | </th> |
1398 | 1458 | </tr> |
1399 | 1459 | </thead> |
1400 | 1460 | <tbody>'; |
1401 | - if (count($context['labels']) < 2) |
|
1402 | - echo ' |
|
1461 | + if (count($context['labels']) < 2) { |
|
1462 | + echo ' |
|
1403 | 1463 | <tr class="windowbg"> |
1404 | 1464 | <td colspan="2">', $txt['pm_labels_no_exist'], '</td> |
1405 | 1465 | </tr>'; |
1406 | - else |
|
1466 | + } else |
|
1407 | 1467 | { |
1408 | 1468 | foreach ($context['labels'] as $label) |
1409 | 1469 | { |
1410 | - if ($label['id'] == -1) |
|
1411 | - continue; |
|
1470 | + if ($label['id'] == -1) { |
|
1471 | + continue; |
|
1472 | + } |
|
1412 | 1473 | |
1413 | 1474 | echo ' |
1414 | 1475 | <tr class="windowbg"> |
@@ -1423,12 +1484,13 @@ discard block |
||
1423 | 1484 | </tbody> |
1424 | 1485 | </table>'; |
1425 | 1486 | |
1426 | - if (!count($context['labels']) < 2) |
|
1427 | - echo ' |
|
1487 | + if (!count($context['labels']) < 2) { |
|
1488 | + echo ' |
|
1428 | 1489 | <div class="padding"> |
1429 | 1490 | <input type="submit" name="save" value="', $txt['save'], '" class="button_submit"> |
1430 | 1491 | <input type="submit" name="delete" value="', $txt['quickmod_delete_selected'], '" data-confirm="', $txt['pm_labels_delete'] ,'" class="button_submit you_sure"> |
1431 | 1492 | </div>'; |
1493 | + } |
|
1432 | 1494 | |
1433 | 1495 | echo ' |
1434 | 1496 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -1483,9 +1545,10 @@ discard block |
||
1483 | 1545 | <dd> |
1484 | 1546 | <select name="id_admin"> |
1485 | 1547 | <option value="0">', $txt['pm_report_all_admins'], '</option>'; |
1486 | - foreach ($context['admins'] as $id => $name) |
|
1487 | - echo ' |
|
1548 | + foreach ($context['admins'] as $id => $name) { |
|
1549 | + echo ' |
|
1488 | 1550 | <option value="', $id, '">', $name, '</option>'; |
1551 | + } |
|
1489 | 1552 | echo ' |
1490 | 1553 | </select> |
1491 | 1554 | </dd>'; |
@@ -1547,9 +1610,10 @@ discard block |
||
1547 | 1610 | </th> |
1548 | 1611 | <th class="centertext table_icon">'; |
1549 | 1612 | |
1550 | - if (!empty($context['rules'])) |
|
1551 | - echo ' |
|
1613 | + if (!empty($context['rules'])) { |
|
1614 | + echo ' |
|
1552 | 1615 | <input type="checkbox" onclick="invertAll(this, this.form);" class="input_check">'; |
1616 | + } |
|
1553 | 1617 | |
1554 | 1618 | echo ' |
1555 | 1619 | </th> |
@@ -1557,13 +1621,14 @@ discard block |
||
1557 | 1621 | </thead> |
1558 | 1622 | <tbody>'; |
1559 | 1623 | |
1560 | - if (empty($context['rules'])) |
|
1561 | - echo ' |
|
1624 | + if (empty($context['rules'])) { |
|
1625 | + echo ' |
|
1562 | 1626 | <tr class="windowbg"> |
1563 | 1627 | <td colspan="2"> |
1564 | 1628 | ', $txt['pm_rules_none'], ' |
1565 | 1629 | </td> |
1566 | 1630 | </tr>'; |
1631 | + } |
|
1567 | 1632 | |
1568 | 1633 | foreach ($context['rules'] as $rule) |
1569 | 1634 | { |
@@ -1584,14 +1649,16 @@ discard block |
||
1584 | 1649 | <div class="righttext"> |
1585 | 1650 | <a class="button_link" href="', $scripturl, '?action=pm;sa=manrules;add;rid=0">', $txt['pm_add_rule'], '</a>'; |
1586 | 1651 | |
1587 | - if (!empty($context['rules'])) |
|
1588 | - echo ' |
|
1652 | + if (!empty($context['rules'])) { |
|
1653 | + echo ' |
|
1589 | 1654 | [<a href="', $scripturl, '?action=pm;sa=manrules;apply;', $context['session_var'], '=', $context['session_id'], '" onclick="return confirm(\'', $txt['pm_js_apply_rules_confirm'], '\');">', $txt['pm_apply_rules'], '</a>]'; |
1655 | + } |
|
1590 | 1656 | |
1591 | - if (!empty($context['rules'])) |
|
1592 | - echo ' |
|
1657 | + if (!empty($context['rules'])) { |
|
1658 | + echo ' |
|
1593 | 1659 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
1594 | 1660 | <input type="submit" name="delselected" value="', $txt['pm_delete_selected_rule'], '" data-confirm="', $txt['pm_js_delete_rule_confirm'] ,'" class="button_submit smalltext you_sure">'; |
1661 | + } |
|
1595 | 1662 | |
1596 | 1663 | echo ' |
1597 | 1664 | </div> |
@@ -1613,14 +1680,16 @@ discard block |
||
1613 | 1680 | var groups = new Array() |
1614 | 1681 | var labels = new Array()'; |
1615 | 1682 | |
1616 | - foreach ($context['groups'] as $id => $title) |
|
1617 | - echo ' |
|
1683 | + foreach ($context['groups'] as $id => $title) { |
|
1684 | + echo ' |
|
1618 | 1685 | groups[', $id, '] = "', addslashes($title), '";'; |
1686 | + } |
|
1619 | 1687 | |
1620 | - foreach ($context['labels'] as $label) |
|
1621 | - if ($label['id'] != -1) |
|
1688 | + foreach ($context['labels'] as $label) { |
|
1689 | + if ($label['id'] != -1) |
|
1622 | 1690 | echo ' |
1623 | 1691 | labels[', ($label['id']), '] = "', addslashes($label['name']), '";'; |
1692 | + } |
|
1624 | 1693 | |
1625 | 1694 | echo ' |
1626 | 1695 | function addCriteriaOption() |
@@ -1635,8 +1704,9 @@ discard block |
||
1635 | 1704 | |
1636 | 1705 | setOuterHTML(document.getElementById("criteriaAddHere"), \'<br><select name="ruletype[\' + criteriaNum + \']" id="ruletype\' + criteriaNum + \'" onchange="updateRuleDef(\' + criteriaNum + \'); rebuildRuleDesc();"><option value="">', addslashes($txt['pm_rule_criteria_pick']), ':<\' + \'/option><option value="mid">', addslashes($txt['pm_rule_mid']), '<\' + \'/option><option value="gid">', addslashes($txt['pm_rule_gid']), '<\' + \'/option><option value="sub">', addslashes($txt['pm_rule_sub']), '<\' + \'/option><option value="msg">', addslashes($txt['pm_rule_msg']), '<\' + \'/option><option value="bud">', addslashes($txt['pm_rule_bud']), '<\' + \'/option><\' + \'/select> <span id="defdiv\' + criteriaNum + \'" style="display: none;"><input type="text" name="ruledef[\' + criteriaNum + \']" id="ruledef\' + criteriaNum + \'" onkeyup="rebuildRuleDesc();" value="" class="input_text"><\' + \'/span><span id="defseldiv\' + criteriaNum + \'" style="display: none;"><select name="ruledefgroup[\' + criteriaNum + \']" id="ruledefgroup\' + criteriaNum + \'" onchange="rebuildRuleDesc();"><option value="">', addslashes($txt['pm_rule_sel_group']), '<\' + \'/option>'; |
1637 | 1706 | |
1638 | - foreach ($context['groups'] as $id => $group) |
|
1639 | - echo '<option value="', $id, '">', strtr($group, array("'" => "\'")), '<\' + \'/option>'; |
|
1707 | + foreach ($context['groups'] as $id => $group) { |
|
1708 | + echo '<option value="', $id, '">', strtr($group, array("'" => "\'")), '<\' + \'/option>'; |
|
1709 | + } |
|
1640 | 1710 | |
1641 | 1711 | echo '<\' + \'/select><\' + \'/span><span id="criteriaAddHere"><\' + \'/span>\'); |
1642 | 1712 | } |
@@ -1653,9 +1723,10 @@ discard block |
||
1653 | 1723 | |
1654 | 1724 | setOuterHTML(document.getElementById("actionAddHere"), \'<br><select name="acttype[\' + actionNum + \']" id="acttype\' + actionNum + \'" onchange="updateActionDef(\' + actionNum + \'); rebuildRuleDesc();"><option value="">', addslashes($txt['pm_rule_sel_action']), ':<\' + \'/option><option value="lab">', addslashes($txt['pm_rule_label']), '<\' + \'/option><option value="del">', addslashes($txt['pm_rule_delete']), '<\' + \'/option><\' + \'/select> <span id="labdiv\' + actionNum + \'" style="display: none;"><select name="labdef[\' + actionNum + \']" id="labdef\' + actionNum + \'" onchange="rebuildRuleDesc();"><option value="">', addslashes($txt['pm_rule_sel_label']), '<\' + \'/option>'; |
1655 | 1725 | |
1656 | - foreach ($context['labels'] as $label) |
|
1657 | - if ($label['id'] != -1) |
|
1726 | + foreach ($context['labels'] as $label) { |
|
1727 | + if ($label['id'] != -1) |
|
1658 | 1728 | echo '<option value="', ($label['id']), '">', addslashes($label['name']), '<\' + \'/option>'; |
1729 | + } |
|
1659 | 1730 | |
1660 | 1731 | echo '<\' + \'/select><\' + \'/span><span id="actionAddHere"><\' + \'/span>\'); |
1661 | 1732 | } |
@@ -1769,18 +1840,20 @@ discard block |
||
1769 | 1840 | $isFirst = true; |
1770 | 1841 | foreach ($context['rule']['criteria'] as $k => $criteria) |
1771 | 1842 | { |
1772 | - if (!$isFirst && $criteria['t'] == '') |
|
1773 | - echo '<div id="removeonjs1">'; |
|
1774 | - elseif (!$isFirst) |
|
1775 | - echo '<br>'; |
|
1843 | + if (!$isFirst && $criteria['t'] == '') { |
|
1844 | + echo '<div id="removeonjs1">'; |
|
1845 | + } elseif (!$isFirst) { |
|
1846 | + echo '<br>'; |
|
1847 | + } |
|
1776 | 1848 | |
1777 | 1849 | echo ' |
1778 | 1850 | <select name="ruletype[', $k, ']" id="ruletype', $k, '" onchange="updateRuleDef(', $k, '); rebuildRuleDesc();"> |
1779 | 1851 | <option value="">', $txt['pm_rule_criteria_pick'], ':</option>'; |
1780 | 1852 | |
1781 | - foreach (array('mid', 'gid', 'sub', 'msg', 'bud') as $cr) |
|
1782 | - echo ' |
|
1853 | + foreach (array('mid', 'gid', 'sub', 'msg', 'bud') as $cr) { |
|
1854 | + echo ' |
|
1783 | 1855 | <option value="', $cr, '"', $criteria['t'] == $cr ? ' selected' : '', '>', $txt['pm_rule_' . $cr], '</option>'; |
1856 | + } |
|
1784 | 1857 | |
1785 | 1858 | echo ' |
1786 | 1859 | </select> |
@@ -1791,18 +1864,20 @@ discard block |
||
1791 | 1864 | <select name="ruledefgroup[', $k, ']" id="ruledefgroup', $k, '" onchange="rebuildRuleDesc();"> |
1792 | 1865 | <option value="">', $txt['pm_rule_sel_group'], '</option>'; |
1793 | 1866 | |
1794 | - foreach ($context['groups'] as $id => $group) |
|
1795 | - echo ' |
|
1867 | + foreach ($context['groups'] as $id => $group) { |
|
1868 | + echo ' |
|
1796 | 1869 | <option value="', $id, '"', $criteria['t'] == 'gid' && $criteria['v'] == $id ? ' selected' : '', '>', $group, '</option>'; |
1870 | + } |
|
1797 | 1871 | echo ' |
1798 | 1872 | </select> |
1799 | 1873 | </span>'; |
1800 | 1874 | |
1801 | 1875 | // If this is the dummy we add a means to hide for non js users. |
1802 | - if ($isFirst) |
|
1803 | - $isFirst = false; |
|
1804 | - elseif ($criteria['t'] == '') |
|
1805 | - echo '</div>'; |
|
1876 | + if ($isFirst) { |
|
1877 | + $isFirst = false; |
|
1878 | + } elseif ($criteria['t'] == '') { |
|
1879 | + echo '</div>'; |
|
1880 | + } |
|
1806 | 1881 | } |
1807 | 1882 | |
1808 | 1883 | echo ' |
@@ -1825,10 +1900,11 @@ discard block |
||
1825 | 1900 | $isFirst = true; |
1826 | 1901 | foreach ($context['rule']['actions'] as $k => $action) |
1827 | 1902 | { |
1828 | - if (!$isFirst && $action['t'] == '') |
|
1829 | - echo '<div id="removeonjs2">'; |
|
1830 | - elseif (!$isFirst) |
|
1831 | - echo '<br>'; |
|
1903 | + if (!$isFirst && $action['t'] == '') { |
|
1904 | + echo '<div id="removeonjs2">'; |
|
1905 | + } elseif (!$isFirst) { |
|
1906 | + echo '<br>'; |
|
1907 | + } |
|
1832 | 1908 | |
1833 | 1909 | echo ' |
1834 | 1910 | <select name="acttype[', $k, ']" id="acttype', $k, '" onchange="updateActionDef(', $k, '); rebuildRuleDesc();"> |
@@ -1839,20 +1915,22 @@ discard block |
||
1839 | 1915 | <span id="labdiv', $k, '"> |
1840 | 1916 | <select name="labdef[', $k, ']" id="labdef', $k, '" onchange="rebuildRuleDesc();"> |
1841 | 1917 | <option value="">', $txt['pm_rule_sel_label'], '</option>'; |
1842 | - foreach ($context['labels'] as $label) |
|
1843 | - if ($label['id'] != -1) |
|
1918 | + foreach ($context['labels'] as $label) { |
|
1919 | + if ($label['id'] != -1) |
|
1844 | 1920 | echo ' |
1845 | 1921 | <option value="', ($label['id']), '"', $action['t'] == 'lab' && $action['v'] == $label['id'] ? ' selected' : '', '>', $label['name'], '</option>'; |
1922 | + } |
|
1846 | 1923 | |
1847 | 1924 | echo ' |
1848 | 1925 | </select> |
1849 | 1926 | </span>'; |
1850 | 1927 | |
1851 | - if ($isFirst) |
|
1852 | - $isFirst = false; |
|
1853 | - elseif ($action['t'] == '') |
|
1854 | - echo ' |
|
1928 | + if ($isFirst) { |
|
1929 | + $isFirst = false; |
|
1930 | + } elseif ($action['t'] == '') { |
|
1931 | + echo ' |
|
1855 | 1932 | </div>'; |
1933 | + } |
|
1856 | 1934 | } |
1857 | 1935 | |
1858 | 1936 | echo ' |
@@ -1876,22 +1954,25 @@ discard block |
||
1876 | 1954 | echo ' |
1877 | 1955 | <script>'; |
1878 | 1956 | |
1879 | - foreach ($context['rule']['criteria'] as $k => $c) |
|
1880 | - echo ' |
|
1957 | + foreach ($context['rule']['criteria'] as $k => $c) { |
|
1958 | + echo ' |
|
1881 | 1959 | updateRuleDef(', $k, ');'; |
1960 | + } |
|
1882 | 1961 | |
1883 | - foreach ($context['rule']['actions'] as $k => $c) |
|
1884 | - echo ' |
|
1962 | + foreach ($context['rule']['actions'] as $k => $c) { |
|
1963 | + echo ' |
|
1885 | 1964 | updateActionDef(', $k, ');'; |
1965 | + } |
|
1886 | 1966 | |
1887 | 1967 | echo ' |
1888 | 1968 | rebuildRuleDesc();'; |
1889 | 1969 | |
1890 | 1970 | // If this isn't a new rule and we have JS enabled remove the JS compatibility stuff. |
1891 | - if ($context['rid']) |
|
1892 | - echo ' |
|
1971 | + if ($context['rid']) { |
|
1972 | + echo ' |
|
1893 | 1973 | document.getElementById("removeonjs1").style.display = "none"; |
1894 | 1974 | document.getElementById("removeonjs2").style.display = "none";'; |
1975 | + } |
|
1895 | 1976 | |
1896 | 1977 | echo ' |
1897 | 1978 | document.getElementById("addonjs1").style.display = ""; |
@@ -1919,12 +2000,12 @@ discard block |
||
1919 | 2000 | </div>'; |
1920 | 2001 | |
1921 | 2002 | // No drafts? Just show an informative message. |
1922 | - if (empty($context['drafts'])) |
|
1923 | - echo ' |
|
2003 | + if (empty($context['drafts'])) { |
|
2004 | + echo ' |
|
1924 | 2005 | <div class="windowbg2 centertext"> |
1925 | 2006 | ', $txt['draft_none'], ' |
1926 | 2007 | </div>'; |
1927 | - else |
|
2008 | + } else |
|
1928 | 2009 | { |
1929 | 2010 | // For every draft to be displayed, give it its own div, and show the important details of the draft. |
1930 | 2011 | foreach ($context['drafts'] as $draft) |
@@ -111,8 +111,8 @@ discard block |
||
111 | 111 | <div class="windowbg2 noup"> |
112 | 112 | <dl class="settings">'; |
113 | 113 | |
114 | - if (!empty($context['table_info'])) |
|
115 | - echo ' |
|
114 | + if (!empty($context['table_info'])) { |
|
115 | + echo ' |
|
116 | 116 | <dt> |
117 | 117 | <strong>', $txt['search_method_messages_table_space'], ':</strong> |
118 | 118 | </dt> |
@@ -125,6 +125,7 @@ discard block |
||
125 | 125 | <dd> |
126 | 126 | ', $context['table_info']['index_length'], ' |
127 | 127 | </dd>'; |
128 | + } |
|
128 | 129 | echo ' |
129 | 130 | </dl> |
130 | 131 | ', $context['double_index'] ? '<div class="noticebox"> |
@@ -146,16 +147,17 @@ discard block |
||
146 | 147 | <dd> |
147 | 148 | |
148 | 149 | <span class="smalltext">'; |
149 | - if (empty($context['fulltext_index']) && empty($context['cannot_create_fulltext'])) |
|
150 | - echo ' |
|
150 | + if (empty($context['fulltext_index']) && empty($context['cannot_create_fulltext'])) { |
|
151 | + echo ' |
|
151 | 152 | <strong>', $txt['search_index_label'], ':</strong> ', $txt['search_method_no_index_exists'], ' [<a href="', $scripturl, '?action=admin;area=managesearch;sa=createfulltext;', $context['session_var'], '=', $context['session_id'], ';', $context['admin-msm_token_var'], '=', $context['admin-msm_token'], '">', $txt['search_method_fulltext_create'], '</a>]'; |
152 | - elseif (empty($context['fulltext_index']) && !empty($context['cannot_create_fulltext'])) |
|
153 | - echo ' |
|
153 | + } elseif (empty($context['fulltext_index']) && !empty($context['cannot_create_fulltext'])) { |
|
154 | + echo ' |
|
154 | 155 | <strong>', $txt['search_index_label'], ':</strong> ', $txt['search_method_fulltext_cannot_create']; |
155 | - else |
|
156 | - echo ' |
|
156 | + } else { |
|
157 | + echo ' |
|
157 | 158 | <strong>', $txt['search_index_label'], ':</strong> ', $txt['search_method_index_already_exists'], ' [<a href="', $scripturl, '?action=admin;area=managesearch;sa=removefulltext;', $context['session_var'], '=', $context['session_id'], ';', $context['admin-msm_token_var'], '=', $context['admin-msm_token'], '">', $txt['search_method_fulltext_remove'], '</a>]<br> |
158 | 159 | <strong>', $txt['search_index_size'], ':</strong> ', $context['table_info']['fulltext_length']; |
160 | + } |
|
159 | 161 | echo ' |
160 | 162 | </span> |
161 | 163 | </dd>'; |
@@ -168,25 +170,27 @@ discard block |
||
168 | 170 | </dt> |
169 | 171 | <dd> |
170 | 172 | <span class="smalltext">'; |
171 | - if ($context['custom_index']) |
|
172 | - echo ' |
|
173 | + if ($context['custom_index']) { |
|
174 | + echo ' |
|
173 | 175 | <strong>', $txt['search_index_label'], ':</strong> ', $txt['search_method_index_already_exists'], ' [<a href="', $scripturl, '?action=admin;area=managesearch;sa=removecustom;', $context['session_var'], '=', $context['session_id'], ';', $context['admin-msm_token_var'], '=', $context['admin-msm_token'], '">', $txt['search_index_custom_remove'], '</a>]<br> |
174 | 176 | <strong>', $txt['search_index_size'], ':</strong> ', $context['table_info']['custom_index_length']; |
175 | - elseif ($context['partial_custom_index']) |
|
176 | - echo ' |
|
177 | + } elseif ($context['partial_custom_index']) { |
|
178 | + echo ' |
|
177 | 179 | <strong>', $txt['search_index_label'], ':</strong> ', $txt['search_method_index_partial'], ' [<a href="', $scripturl, '?action=admin;area=managesearch;sa=removecustom;', $context['session_var'], '=', $context['session_id'], ';', $context['admin-msm_token_var'], '=', $context['admin-msm_token'], '">', $txt['search_index_custom_remove'], '</a>] [<a href="', $scripturl, '?action=admin;area=managesearch;sa=createmsgindex;resume;', $context['session_var'], '=', $context['session_id'], ';', $context['admin-msm_token_var'], '=', $context['admin-msm_token'], '">', $txt['search_index_custom_resume'], '</a>]<br> |
178 | 180 | <strong>', $txt['search_index_size'], ':</strong> ', $context['table_info']['custom_index_length']; |
179 | - else |
|
180 | - echo ' |
|
181 | + } else { |
|
182 | + echo ' |
|
181 | 183 | <strong>', $txt['search_index_label'], ':</strong> ', $txt['search_method_no_index_exists'], ' [<a href="', $scripturl, '?action=admin;area=managesearch;sa=createmsgindex">', $txt['search_index_create_custom'], '</a>]'; |
184 | + } |
|
182 | 185 | echo ' |
183 | 186 | </span> |
184 | 187 | </dd>'; |
185 | 188 | |
186 | 189 | foreach ($context['search_apis'] as $api) |
187 | 190 | { |
188 | - if (empty($api['label']) || $api['has_template']) |
|
189 | - continue; |
|
191 | + if (empty($api['label']) || $api['has_template']) { |
|
192 | + continue; |
|
193 | + } |
|
190 | 194 | |
191 | 195 | echo ' |
192 | 196 | <dt> |
@@ -194,12 +198,13 @@ discard block |
||
194 | 198 | ', $api['label'], ' |
195 | 199 | </dt>'; |
196 | 200 | |
197 | - if ($api['desc']) |
|
198 | - echo ' |
|
201 | + if ($api['desc']) { |
|
202 | + echo ' |
|
199 | 203 | <dd> |
200 | 204 | <span class="smalltext">', $api['desc'], '</span> |
201 | 205 | </dd>'; |
202 | 206 | } |
207 | + } |
|
203 | 208 | |
204 | 209 | echo ' |
205 | 210 | </dl> |
@@ -43,28 +43,33 @@ discard block |
||
43 | 43 | </div> |
44 | 44 | <div class="list_posts">', $post['message'], '</div>'; |
45 | 45 | |
46 | - if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) |
|
47 | - echo ' |
|
46 | + if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) { |
|
47 | + echo ' |
|
48 | 48 | <ul class="quickbuttons">'; |
49 | + } |
|
49 | 50 | |
50 | 51 | // If they *can* reply? |
51 | - if ($post['can_reply']) |
|
52 | - echo ' |
|
52 | + if ($post['can_reply']) { |
|
53 | + echo ' |
|
53 | 54 | <li><a href="', $scripturl, '?action=post;topic=', $post['topic'], '.', $post['start'], '"><span class="generic_icons reply_button"></span>', $txt['reply'], '</a></li>'; |
55 | + } |
|
54 | 56 | |
55 | 57 | // If they *can* quote? |
56 | - if ($post['can_quote']) |
|
57 | - echo ' |
|
58 | + if ($post['can_quote']) { |
|
59 | + echo ' |
|
58 | 60 | <li><a href="', $scripturl, '?action=post;topic=', $post['topic'], '.', $post['start'], ';quote=', $post['id'], '"><span class="generic_icons quote"></span>', $txt['quote_action'], '</a></li>'; |
61 | + } |
|
59 | 62 | |
60 | 63 | // How about... even... remove it entirely?! |
61 | - if ($post['can_delete']) |
|
62 | - echo ' |
|
64 | + if ($post['can_delete']) { |
|
65 | + echo ' |
|
63 | 66 | <li><a href="', $scripturl, '?action=deletemsg;msg=', $post['id'], ';topic=', $post['topic'], ';recent;', $context['session_var'], '=', $context['session_id'], '" data-confirm="', $txt['remove_message'], '" class="you_sure"><span class="generic_icons remove_button"></span>', $txt['remove'], '</a></li>'; |
67 | + } |
|
64 | 68 | |
65 | - if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) |
|
66 | - echo ' |
|
69 | + if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) { |
|
70 | + echo ' |
|
67 | 71 | </ul>'; |
72 | + } |
|
68 | 73 | |
69 | 74 | echo ' |
70 | 75 | </div>'; |
@@ -86,12 +91,13 @@ discard block |
||
86 | 91 | echo ' |
87 | 92 | <div id="recent" class="main_content">'; |
88 | 93 | |
89 | - if ($context['showCheckboxes']) |
|
90 | - echo ' |
|
94 | + if ($context['showCheckboxes']) { |
|
95 | + echo ' |
|
91 | 96 | <form action="', $scripturl, '?action=quickmod" method="post" accept-charset="', $context['character_set'], '" name="quickModForm" id="quickModForm" style="margin: 0;"> |
92 | 97 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
93 | 98 | <input type="hidden" name="qaction" value="markread"> |
94 | 99 | <input type="hidden" name="redirect_url" value="action=unread', (!empty($context['showing_all_topics']) ? ';all' : ''), $context['querystring_board_limits'], '">'; |
100 | + } |
|
95 | 101 | |
96 | 102 | if (!empty($context['topics'])) |
97 | 103 | { |
@@ -117,11 +123,12 @@ discard block |
||
117 | 123 | </div>'; |
118 | 124 | |
119 | 125 | // Show a "select all" box for quick moderation? |
120 | - if ($context['showCheckboxes']) |
|
121 | - echo ' |
|
126 | + if ($context['showCheckboxes']) { |
|
127 | + echo ' |
|
122 | 128 | <div class="moderation"> |
123 | 129 | <input type="checkbox" onclick="invertAll(this, this.form, \'topics[]\');" class="input_check"> |
124 | 130 | </div>'; |
131 | + } |
|
125 | 132 | |
126 | 133 | echo ' |
127 | 134 | </div> |
@@ -140,15 +147,18 @@ discard block |
||
140 | 147 | // Now we handle the icons |
141 | 148 | echo ' |
142 | 149 | <div class="icons floatright">'; |
143 | - if ($topic['is_locked']) |
|
144 | - echo ' |
|
150 | + if ($topic['is_locked']) { |
|
151 | + echo ' |
|
145 | 152 | <span class="generic_icons lock"></span>'; |
146 | - if ($topic['is_sticky']) |
|
147 | - echo ' |
|
153 | + } |
|
154 | + if ($topic['is_sticky']) { |
|
155 | + echo ' |
|
148 | 156 | <span class="generic_icons sticky"></span>'; |
149 | - if ($topic['is_poll']) |
|
150 | - echo ' |
|
157 | + } |
|
158 | + if ($topic['is_poll']) { |
|
159 | + echo ' |
|
151 | 160 | <span class="generic_icons poll"></span>'; |
161 | + } |
|
152 | 162 | echo ' |
153 | 163 | </div>'; |
154 | 164 | |
@@ -173,19 +183,21 @@ discard block |
||
173 | 183 | ', sprintf($txt['last_post_topic'], '<a href="' . $topic['last_post']['href'] . '">' . $topic['last_post']['time'] . '</a>', $topic['last_post']['member']['link']), ' |
174 | 184 | </div>'; |
175 | 185 | |
176 | - if ($context['showCheckboxes']) |
|
177 | - echo ' |
|
186 | + if ($context['showCheckboxes']) { |
|
187 | + echo ' |
|
178 | 188 | <div class="moderation"> |
179 | 189 | <input type="checkbox" name="topics[]" value="', $topic['id'], '" class="input_check"> |
180 | 190 | </div>'; |
191 | + } |
|
181 | 192 | |
182 | 193 | echo ' |
183 | 194 | </div>'; |
184 | 195 | } |
185 | 196 | |
186 | - if (empty($context['topics'])) |
|
187 | - echo ' |
|
197 | + if (empty($context['topics'])) { |
|
198 | + echo ' |
|
188 | 199 | <div style="display: none;"></div>'; |
200 | + } |
|
189 | 201 | |
190 | 202 | echo ' |
191 | 203 | </div> |
@@ -197,25 +209,27 @@ discard block |
||
197 | 209 | ', $context['menu_separator'], '<a href="#recent" class="topbottom floatleft">', $txt['go_up'], '</a> |
198 | 210 | <div class="pagelinks">', $context['page_index'], '</div> |
199 | 211 | </div>'; |
200 | - } |
|
201 | - else |
|
202 | - echo ' |
|
212 | + } else { |
|
213 | + echo ' |
|
203 | 214 | <div class="cat_bar"> |
204 | 215 | <h3 class="catbg centertext"> |
205 | 216 | ', $context['showing_all_topics'] ? $txt['topic_alert_none'] : $txt['unread_topics_visit_none'], ' |
206 | 217 | </h3> |
207 | 218 | </div>'; |
219 | + } |
|
208 | 220 | |
209 | - if ($context['showCheckboxes']) |
|
210 | - echo ' |
|
221 | + if ($context['showCheckboxes']) { |
|
222 | + echo ' |
|
211 | 223 | </form>'; |
224 | + } |
|
212 | 225 | |
213 | 226 | echo ' |
214 | 227 | </div>'; |
215 | 228 | |
216 | - if (empty($context['no_topic_listing'])) |
|
217 | - template_topic_legend(); |
|
218 | -} |
|
229 | + if (empty($context['no_topic_listing'])) { |
|
230 | + template_topic_legend(); |
|
231 | + } |
|
232 | + } |
|
219 | 233 | |
220 | 234 | /** |
221 | 235 | * Template for showing unread replies (eg new replies to topics you've posted in) |
@@ -227,12 +241,13 @@ discard block |
||
227 | 241 | echo ' |
228 | 242 | <div id="recent">'; |
229 | 243 | |
230 | - if ($context['showCheckboxes']) |
|
231 | - echo ' |
|
244 | + if ($context['showCheckboxes']) { |
|
245 | + echo ' |
|
232 | 246 | <form action="', $scripturl, '?action=quickmod" method="post" accept-charset="', $context['character_set'], '" name="quickModForm" id="quickModForm" style="margin: 0;"> |
233 | 247 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
234 | 248 | <input type="hidden" name="qaction" value="markread"> |
235 | 249 | <input type="hidden" name="redirect_url" value="action=unreadreplies', (!empty($context['showing_all_topics']) ? ';all' : ''), $context['querystring_board_limits'], '">'; |
250 | + } |
|
236 | 251 | |
237 | 252 | if (!empty($context['topics'])) |
238 | 253 | { |
@@ -258,11 +273,12 @@ discard block |
||
258 | 273 | </div>'; |
259 | 274 | |
260 | 275 | // Show a "select all" box for quick moderation? |
261 | - if ($context['showCheckboxes']) |
|
262 | - echo ' |
|
276 | + if ($context['showCheckboxes']) { |
|
277 | + echo ' |
|
263 | 278 | <div class="moderation"> |
264 | 279 | <input type="checkbox" onclick="invertAll(this, this.form, \'topics[]\');" class="input_check"> |
265 | 280 | </div>'; |
281 | + } |
|
266 | 282 | |
267 | 283 | echo ' |
268 | 284 | </div> |
@@ -281,15 +297,18 @@ discard block |
||
281 | 297 | // Now we handle the icons |
282 | 298 | echo ' |
283 | 299 | <div class="icons floatright">'; |
284 | - if ($topic['is_locked']) |
|
285 | - echo ' |
|
300 | + if ($topic['is_locked']) { |
|
301 | + echo ' |
|
286 | 302 | <span class="generic_icons lock"></span>'; |
287 | - if ($topic['is_sticky']) |
|
288 | - echo ' |
|
303 | + } |
|
304 | + if ($topic['is_sticky']) { |
|
305 | + echo ' |
|
289 | 306 | <span class="generic_icons sticky"></span>'; |
290 | - if ($topic['is_poll']) |
|
291 | - echo ' |
|
307 | + } |
|
308 | + if ($topic['is_poll']) { |
|
309 | + echo ' |
|
292 | 310 | <span class="generic_icons poll"></span>'; |
311 | + } |
|
293 | 312 | echo ' |
294 | 313 | </div>'; |
295 | 314 | |
@@ -314,11 +333,12 @@ discard block |
||
314 | 333 | ', sprintf($txt['last_post_topic'], '<a href="' . $topic['last_post']['href'] . '">' . $topic['last_post']['time'] . '</a>', $topic['last_post']['member']['link']), ' |
315 | 334 | </div>'; |
316 | 335 | |
317 | - if ($context['showCheckboxes']) |
|
318 | - echo ' |
|
336 | + if ($context['showCheckboxes']) { |
|
337 | + echo ' |
|
319 | 338 | <div class="moderation"> |
320 | 339 | <input type="checkbox" name="topics[]" value="', $topic['id'], '" class="input_check"> |
321 | 340 | </div>'; |
341 | + } |
|
322 | 342 | echo ' |
323 | 343 | </div>'; |
324 | 344 | } |
@@ -331,24 +351,26 @@ discard block |
||
331 | 351 | ', $context['menu_separator'], '<a href="#recent" class="topbottom floatleft">', $txt['go_up'], '</a> |
332 | 352 | <div class="pagelinks">', $context['page_index'], '</div> |
333 | 353 | </div>'; |
334 | - } |
|
335 | - else |
|
336 | - echo ' |
|
354 | + } else { |
|
355 | + echo ' |
|
337 | 356 | <div class="cat_bar"> |
338 | 357 | <h3 class="catbg centertext"> |
339 | 358 | ', $context['showing_all_topics'] ? $txt['topic_alert_none'] : $txt['unread_topics_visit_none'], ' |
340 | 359 | </h3> |
341 | 360 | </div>'; |
361 | + } |
|
342 | 362 | |
343 | - if ($context['showCheckboxes']) |
|
344 | - echo ' |
|
363 | + if ($context['showCheckboxes']) { |
|
364 | + echo ' |
|
345 | 365 | </form>'; |
366 | + } |
|
346 | 367 | |
347 | 368 | echo ' |
348 | 369 | </div>'; |
349 | 370 | |
350 | - if (empty($context['no_topic_listing'])) |
|
351 | - template_topic_legend(); |
|
352 | -} |
|
371 | + if (empty($context['no_topic_listing'])) { |
|
372 | + template_topic_legend(); |
|
373 | + } |
|
374 | + } |
|
353 | 375 | |
354 | 376 | ?> |
355 | 377 | \ No newline at end of file |
@@ -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" class="input_text">'; |
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_submit">'; |
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[]\');" class="input_check">'; |
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'], '" class="input_check">'; |
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") |