@@ -65,9 +65,10 @@ discard block |
||
| 65 | 65 | ', implode(', ', $context['administrators']); |
| 66 | 66 | |
| 67 | 67 | // If we have lots of admins... don't show them all. |
| 68 | - if (!empty($context['more_admins_link'])) |
|
| 69 | - echo ' |
|
| 68 | + if (!empty($context['more_admins_link'])) { |
|
| 69 | + echo ' |
|
| 70 | 70 | (', $context['more_admins_link'], ')'; |
| 71 | + } |
|
| 71 | 72 | |
| 72 | 73 | echo ' |
| 73 | 74 | </div><!-- #version_details --> |
@@ -84,17 +85,19 @@ discard block |
||
| 84 | 85 | foreach ($area['areas'] as $item_id => $item) |
| 85 | 86 | { |
| 86 | 87 | // No point showing the 'home' page here, we're already on it! |
| 87 | - if ($area_id == 'forum' && $item_id == 'index') |
|
| 88 | - continue; |
|
| 88 | + if ($area_id == 'forum' && $item_id == 'index') { |
|
| 89 | + continue; |
|
| 90 | + } |
|
| 89 | 91 | |
| 90 | 92 | $url = isset($item['url']) ? $item['url'] : $scripturl . '?action=admin;area=' . $item_id . (!empty($context[$context['admin_menu_name']]['extra_parameters']) ? $context[$context['admin_menu_name']]['extra_parameters'] : ''); |
| 91 | 93 | |
| 92 | - if (!empty($item['icon_file'])) |
|
| 93 | - echo ' |
|
| 94 | + if (!empty($item['icon_file'])) { |
|
| 95 | + echo ' |
|
| 94 | 96 | <a href="', $url, '" class="admin_group', !empty($item['inactive']) ? ' inactive' : '', '"><img class="large_admin_menu_icon_file" src="', $item['icon_file'], '" alt="">', $item['label'], '</a>'; |
| 95 | - else |
|
| 96 | - echo ' |
|
| 97 | + } else { |
|
| 98 | + echo ' |
|
| 97 | 99 | <a href="', $url, '"><span class="large_', $item['icon_class'], !empty($item['inactive']) ? ' inactive' : '', '"></span>', $item['label'], '</a>'; |
| 100 | + } |
|
| 98 | 101 | } |
| 99 | 102 | |
| 100 | 103 | echo ' |
@@ -105,10 +108,11 @@ discard block |
||
| 105 | 108 | </div><!-- #admincenter -->'; |
| 106 | 109 | |
| 107 | 110 | // The below functions include all the scripts needed from the simplemachines.org site. The language and format are passed for internationalization. |
| 108 | - if (empty($modSettings['disable_smf_js'])) |
|
| 109 | - echo ' |
|
| 111 | + if (empty($modSettings['disable_smf_js'])) { |
|
| 112 | + echo ' |
|
| 110 | 113 | <script src="', $scripturl, '?action=viewsmfile;filename=current-version.js"></script> |
| 111 | 114 | <script src="', $scripturl, '?action=viewsmfile;filename=latest-news.js"></script>'; |
| 115 | + } |
|
| 112 | 116 | |
| 113 | 117 | // This sets the announcements and current versions themselves ;). |
| 114 | 118 | echo ' |
@@ -186,9 +190,10 @@ discard block |
||
| 186 | 190 | <em>', $version['version'], '</em>'; |
| 187 | 191 | |
| 188 | 192 | // more details for this item, show them a link |
| 189 | - if ($context['can_admin'] && isset($version['more'])) |
|
| 190 | - echo |
|
| 193 | + if ($context['can_admin'] && isset($version['more'])) { |
|
| 194 | + echo |
|
| 191 | 195 | ' <a href="', $scripturl, $version['more'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['version_check_more'], '</a>'; |
| 196 | + } |
|
| 192 | 197 | echo ' |
| 193 | 198 | <br>'; |
| 194 | 199 | } |
@@ -219,21 +224,23 @@ discard block |
||
| 219 | 224 | |
| 220 | 225 | foreach ($context['credits'] as $section) |
| 221 | 226 | { |
| 222 | - if (isset($section['pretext'])) |
|
| 223 | - echo ' |
|
| 227 | + if (isset($section['pretext'])) { |
|
| 228 | + echo ' |
|
| 224 | 229 | <p>', $section['pretext'], '</p> |
| 225 | 230 | <hr>'; |
| 231 | + } |
|
| 226 | 232 | |
| 227 | 233 | echo ' |
| 228 | 234 | <dl>'; |
| 229 | 235 | |
| 230 | 236 | foreach ($section['groups'] as $group) |
| 231 | 237 | { |
| 232 | - if (isset($group['title'])) |
|
| 233 | - echo ' |
|
| 238 | + if (isset($group['title'])) { |
|
| 239 | + echo ' |
|
| 234 | 240 | <dt> |
| 235 | 241 | <strong>', $group['title'], ':</strong> |
| 236 | 242 | </dt>'; |
| 243 | + } |
|
| 237 | 244 | |
| 238 | 245 | echo ' |
| 239 | 246 | <dd>', implode(', ', $group['members']), '</dd>'; |
@@ -242,10 +249,11 @@ discard block |
||
| 242 | 249 | echo ' |
| 243 | 250 | </dl>'; |
| 244 | 251 | |
| 245 | - if (isset($section['posttext'])) |
|
| 246 | - echo ' |
|
| 252 | + if (isset($section['posttext'])) { |
|
| 253 | + echo ' |
|
| 247 | 254 | <hr> |
| 248 | 255 | <p>', $section['posttext'], '</p>'; |
| 256 | + } |
|
| 249 | 257 | } |
| 250 | 258 | |
| 251 | 259 | echo ' |
@@ -261,9 +269,10 @@ discard block |
||
| 261 | 269 | smfSupportVersions.forum = "', $context['forum_version'], '";'; |
| 262 | 270 | |
| 263 | 271 | // Don't worry, none of this is logged, it's just used to give information that might be of use. |
| 264 | - foreach ($context['current_versions'] as $variable => $version) |
|
| 265 | - echo ' |
|
| 272 | + foreach ($context['current_versions'] as $variable => $version) { |
|
| 273 | + echo ' |
|
| 266 | 274 | smfSupportVersions.', $variable, ' = "', $version['version'], '";'; |
| 275 | + } |
|
| 267 | 276 | |
| 268 | 277 | // Now we just have to include the script and wait ;). |
| 269 | 278 | echo ' |
@@ -360,8 +369,8 @@ discard block |
||
| 360 | 369 | <tbody>'; |
| 361 | 370 | |
| 362 | 371 | // Loop through every source file displaying its version - using javascript. |
| 363 | - foreach ($context['file_versions'] as $filename => $version) |
|
| 364 | - echo ' |
|
| 372 | + foreach ($context['file_versions'] as $filename => $version) { |
|
| 373 | + echo ' |
|
| 365 | 374 | <tr class="windowbg"> |
| 366 | 375 | <td class="half_table"> |
| 367 | 376 | ', $filename, ' |
@@ -373,6 +382,7 @@ discard block |
||
| 373 | 382 | <em id="currentSources', $filename, '">??</em> |
| 374 | 383 | </td> |
| 375 | 384 | </tr>'; |
| 385 | + } |
|
| 376 | 386 | |
| 377 | 387 | // Default template files. |
| 378 | 388 | echo ' |
@@ -398,8 +408,8 @@ discard block |
||
| 398 | 408 | <table id="Default" class="table_grid"> |
| 399 | 409 | <tbody>'; |
| 400 | 410 | |
| 401 | - foreach ($context['default_template_versions'] as $filename => $version) |
|
| 402 | - echo ' |
|
| 411 | + foreach ($context['default_template_versions'] as $filename => $version) { |
|
| 412 | + echo ' |
|
| 403 | 413 | <tr class="windowbg"> |
| 404 | 414 | <td class="half_table"> |
| 405 | 415 | ', $filename, ' |
@@ -411,6 +421,7 @@ discard block |
||
| 411 | 421 | <em id="currentDefault', $filename, '">??</em> |
| 412 | 422 | </td> |
| 413 | 423 | </tr>'; |
| 424 | + } |
|
| 414 | 425 | |
| 415 | 426 | // Now the language files... |
| 416 | 427 | echo ' |
@@ -438,8 +449,8 @@ discard block |
||
| 438 | 449 | |
| 439 | 450 | foreach ($context['default_language_versions'] as $language => $files) |
| 440 | 451 | { |
| 441 | - foreach ($files as $filename => $version) |
|
| 442 | - echo ' |
|
| 452 | + foreach ($files as $filename => $version) { |
|
| 453 | + echo ' |
|
| 443 | 454 | <tr class="windowbg"> |
| 444 | 455 | <td class="half_table"> |
| 445 | 456 | ', $filename, '.<em>', $language, '</em>.php |
@@ -451,6 +462,7 @@ discard block |
||
| 451 | 462 | <em id="current', $filename, '.', $language, '">??</em> |
| 452 | 463 | </td> |
| 453 | 464 | </tr>'; |
| 465 | + } |
|
| 454 | 466 | } |
| 455 | 467 | |
| 456 | 468 | echo ' |
@@ -480,8 +492,8 @@ discard block |
||
| 480 | 492 | <table id="Templates" class="table_grid"> |
| 481 | 493 | <tbody>'; |
| 482 | 494 | |
| 483 | - foreach ($context['template_versions'] as $filename => $version) |
|
| 484 | - echo ' |
|
| 495 | + foreach ($context['template_versions'] as $filename => $version) { |
|
| 496 | + echo ' |
|
| 485 | 497 | <tr class="windowbg"> |
| 486 | 498 | <td class="half_table"> |
| 487 | 499 | ', $filename, ' |
@@ -493,6 +505,7 @@ discard block |
||
| 493 | 505 | <em id="currentTemplates', $filename, '">??</em> |
| 494 | 506 | </td> |
| 495 | 507 | </tr>'; |
| 508 | + } |
|
| 496 | 509 | |
| 497 | 510 | echo ' |
| 498 | 511 | </tbody> |
@@ -522,8 +535,8 @@ discard block |
||
| 522 | 535 | <table id="Tasks" class="table_grid"> |
| 523 | 536 | <tbody>'; |
| 524 | 537 | |
| 525 | - foreach ($context['tasks_versions'] as $filename => $version) |
|
| 526 | - echo ' |
|
| 538 | + foreach ($context['tasks_versions'] as $filename => $version) { |
|
| 539 | + echo ' |
|
| 527 | 540 | <tr class="windowbg"> |
| 528 | 541 | <td class="half_table"> |
| 529 | 542 | ', $filename, ' |
@@ -535,6 +548,7 @@ discard block |
||
| 535 | 548 | <em id="currentTasks', $filename, '">??</em> |
| 536 | 549 | </td> |
| 537 | 550 | </tr>'; |
| 551 | + } |
|
| 538 | 552 | |
| 539 | 553 | echo ' |
| 540 | 554 | </tbody> |
@@ -576,9 +590,10 @@ discard block |
||
| 576 | 590 | { |
| 577 | 591 | global $context, $scripturl, $txt, $modSettings; |
| 578 | 592 | |
| 579 | - if (!empty($context['saved_successful'])) |
|
| 580 | - echo ' |
|
| 593 | + if (!empty($context['saved_successful'])) { |
|
| 594 | + echo ' |
|
| 581 | 595 | <div class="infobox">', $txt['settings_saved'], '</div>'; |
| 596 | + } |
|
| 582 | 597 | |
| 583 | 598 | // First section is for adding/removing words from the censored list. |
| 584 | 599 | echo ' |
@@ -593,11 +608,12 @@ discard block |
||
| 593 | 608 | <p>', $txt['admin_censored_where'], '</p>'; |
| 594 | 609 | |
| 595 | 610 | // Show text boxes for censoring [bad ] => [good ]. |
| 596 | - foreach ($context['censored_words'] as $vulgar => $proper) |
|
| 597 | - echo ' |
|
| 611 | + foreach ($context['censored_words'] as $vulgar => $proper) { |
|
| 612 | + echo ' |
|
| 598 | 613 | <div class="block"> |
| 599 | 614 | <input type="text" name="censor_vulgar[]" value="', $vulgar, '" size="30"> => <input type="text" name="censor_proper[]" value="', $proper, '" size="30"> |
| 600 | 615 | </div>'; |
| 616 | + } |
|
| 601 | 617 | |
| 602 | 618 | // Now provide a way to censor more words. |
| 603 | 619 | echo ' |
@@ -672,19 +688,21 @@ discard block |
||
| 672 | 688 | <div class="windowbg noup"> |
| 673 | 689 | ', $txt['not_done_reason']; |
| 674 | 690 | |
| 675 | - if (!empty($context['continue_percent'])) |
|
| 676 | - echo ' |
|
| 691 | + if (!empty($context['continue_percent'])) { |
|
| 692 | + echo ' |
|
| 677 | 693 | <div class="progress_bar"> |
| 678 | 694 | <span>', $context['continue_percent'], '%</span> |
| 679 | 695 | <div class="bar" style="width: ', $context['continue_percent'], '%;"></div> |
| 680 | 696 | </div>'; |
| 697 | + } |
|
| 681 | 698 | |
| 682 | - if (!empty($context['substep_enabled'])) |
|
| 683 | - echo ' |
|
| 699 | + if (!empty($context['substep_enabled'])) { |
|
| 700 | + echo ' |
|
| 684 | 701 | <div class="progress_bar progress_blue"> |
| 685 | 702 | <span>', $context['substep_title'], ' (', $context['substep_continue_percent'], '%)</span> |
| 686 | 703 | <div class="bar" style="width: ', $context['substep_continue_percent'], '%;"></div> |
| 687 | 704 | </div>'; |
| 705 | + } |
|
| 688 | 706 | |
| 689 | 707 | echo ' |
| 690 | 708 | <form action="', $scripturl, $context['continue_get_data'], '" method="post" accept-charset="', $context['character_set'], '" name="autoSubmit" id="autoSubmit"> |
@@ -719,35 +737,40 @@ discard block |
||
| 719 | 737 | { |
| 720 | 738 | global $context, $txt, $scripturl; |
| 721 | 739 | |
| 722 | - if (!empty($context['saved_successful'])) |
|
| 723 | - echo ' |
|
| 740 | + if (!empty($context['saved_successful'])) { |
|
| 741 | + echo ' |
|
| 724 | 742 | <div class="infobox">', $txt['settings_saved'], '</div>'; |
| 725 | - elseif (!empty($context['saved_failed'])) |
|
| 726 | - echo ' |
|
| 743 | + } elseif (!empty($context['saved_failed'])) { |
|
| 744 | + echo ' |
|
| 727 | 745 | <div class="errorbox">', sprintf($txt['settings_not_saved'], $context['saved_failed']), '</div>'; |
| 746 | + } |
|
| 728 | 747 | |
| 729 | - if (!empty($context['settings_pre_javascript'])) |
|
| 730 | - echo ' |
|
| 748 | + if (!empty($context['settings_pre_javascript'])) { |
|
| 749 | + echo ' |
|
| 731 | 750 | <script>', $context['settings_pre_javascript'], '</script>'; |
| 751 | + } |
|
| 732 | 752 | |
| 733 | - if (!empty($context['settings_insert_above'])) |
|
| 734 | - echo $context['settings_insert_above']; |
|
| 753 | + if (!empty($context['settings_insert_above'])) { |
|
| 754 | + echo $context['settings_insert_above']; |
|
| 755 | + } |
|
| 735 | 756 | |
| 736 | 757 | echo ' |
| 737 | 758 | <div id="admincenter"> |
| 738 | 759 | <form id="admin_form_wrapper" action="', $context['post_url'], '" method="post" accept-charset="', $context['character_set'], '"', !empty($context['force_form_onsubmit']) ? ' onsubmit="' . $context['force_form_onsubmit'] . '"' : '', '>'; |
| 739 | 760 | |
| 740 | 761 | // Is there a custom title? |
| 741 | - if (isset($context['settings_title'])) |
|
| 742 | - echo ' |
|
| 762 | + if (isset($context['settings_title'])) { |
|
| 763 | + echo ' |
|
| 743 | 764 | <div class="cat_bar"> |
| 744 | 765 | <h3 class="catbg">', $context['settings_title'], '</h3> |
| 745 | 766 | </div>'; |
| 767 | + } |
|
| 746 | 768 | |
| 747 | 769 | // Have we got a message to display? |
| 748 | - if (!empty($context['settings_message'])) |
|
| 749 | - echo ' |
|
| 770 | + if (!empty($context['settings_message'])) { |
|
| 771 | + echo ' |
|
| 750 | 772 | <div class="information">', $context['settings_message'], '</div>'; |
| 773 | + } |
|
| 751 | 774 | |
| 752 | 775 | // Now actually loop through all the variables. |
| 753 | 776 | $is_open = false; |
@@ -800,8 +823,9 @@ discard block |
||
| 800 | 823 | // Hang about? Are you pulling my leg - a callback?! |
| 801 | 824 | if (is_array($config_var) && $config_var['type'] == 'callback') |
| 802 | 825 | { |
| 803 | - if (function_exists('template_callback_' . $config_var['name'])) |
|
| 804 | - call_user_func('template_callback_' . $config_var['name']); |
|
| 826 | + if (function_exists('template_callback_' . $config_var['name'])) { |
|
| 827 | + call_user_func('template_callback_' . $config_var['name']); |
|
| 828 | + } |
|
| 805 | 829 | |
| 806 | 830 | continue; |
| 807 | 831 | } |
@@ -831,9 +855,10 @@ discard block |
||
| 831 | 855 | $text_types = array('color', 'date', 'datetime', 'datetime-local', 'email', 'month', 'time'); |
| 832 | 856 | |
| 833 | 857 | // Show the [?] button. |
| 834 | - if ($config_var['help']) |
|
| 835 | - echo ' |
|
| 858 | + if ($config_var['help']) { |
|
| 859 | + echo ' |
|
| 836 | 860 | <a id="setting_', $config_var['name'], '_help" href="', $scripturl, '?action=helpadmin;help=', $config_var['help'], '" onclick="return reqOverlayDiv(this.href);"><span class="generic_icons help" title="', $txt['help'], '"></span></a> '; |
| 861 | + } |
|
| 837 | 862 | |
| 838 | 863 | echo ' |
| 839 | 864 | <a id="setting_', $config_var['name'], '"></a> <span', ($config_var['disabled'] ? ' style="color: #777777;"' : ($config_var['invalid'] ? ' class="error"' : '')), '><label for="', $config_var['name'], '">', $config_var['label'], '</label>', $subtext, ($config_var['type'] == 'password' ? '<br><em>' . $txt['admin_confirm_password'] . '</em>' : ''), '</span> |
@@ -842,23 +867,26 @@ discard block |
||
| 842 | 867 | $config_var['preinput']; |
| 843 | 868 | |
| 844 | 869 | // Show a check box. |
| 845 | - if ($config_var['type'] == 'check') |
|
| 846 | - echo ' |
|
| 870 | + if ($config_var['type'] == 'check') { |
|
| 871 | + echo ' |
|
| 847 | 872 | <input type="checkbox"', $javascript, $disabled, ' name="', $config_var['name'], '" id="', $config_var['name'], '"', ($config_var['value'] ? ' checked' : ''), ' value="1">'; |
| 873 | + } |
|
| 848 | 874 | // Escape (via htmlspecialchars.) the text box. |
| 849 | - elseif ($config_var['type'] == 'password') |
|
| 850 | - echo ' |
|
| 875 | + elseif ($config_var['type'] == 'password') { |
|
| 876 | + echo ' |
|
| 851 | 877 | <input type="password"', $disabled, $javascript, ' name="', $config_var['name'], '[0]"', ($config_var['size'] ? ' size="' . $config_var['size'] . '"' : ''), ' value="*#fakepass#*" onfocus="this.value = \'\'; this.form.', $config_var['name'], '.disabled = false;"><br> |
| 852 | 878 | <input type="password" disabled id="', $config_var['name'], '" name="', $config_var['name'], '[1]"', ($config_var['size'] ? ' size="' . $config_var['size'] . '"' : ''), '>'; |
| 879 | + } |
|
| 853 | 880 | // Show a selection box. |
| 854 | 881 | elseif ($config_var['type'] == 'select') |
| 855 | 882 | { |
| 856 | 883 | echo ' |
| 857 | 884 | <select name="', $config_var['name'], '" id="', $config_var['name'], '" ', $javascript, $disabled, (!empty($config_var['multiple']) ? ' multiple="multiple"' : ''), (!empty($config_var['multiple']) && !empty($config_var['size']) ? ' size="' . $config_var['size'] . '"' : ''), '>'; |
| 858 | 885 | |
| 859 | - foreach ($config_var['data'] as $option) |
|
| 860 | - echo ' |
|
| 886 | + foreach ($config_var['data'] as $option) { |
|
| 887 | + echo ' |
|
| 861 | 888 | <option value="', $option[0], '"', (!empty($config_var['value']) && ($option[0] == $config_var['value'] || (!empty($config_var['multiple']) && in_array($option[0], $config_var['value']))) ? ' selected' : ''), '>', $option[1], '</option>'; |
| 889 | + } |
|
| 862 | 890 | echo ' |
| 863 | 891 | </select>'; |
| 864 | 892 | } |
@@ -875,16 +903,18 @@ discard block |
||
| 875 | 903 | |
| 876 | 904 | foreach ($context['board_list'] as $id_cat => $cat) |
| 877 | 905 | { |
| 878 | - if (!$first) |
|
| 879 | - echo ' |
|
| 906 | + if (!$first) { |
|
| 907 | + echo ' |
|
| 880 | 908 | <hr>'; |
| 909 | + } |
|
| 881 | 910 | echo ' |
| 882 | 911 | <strong>', $cat['name'], '</strong> |
| 883 | 912 | <ul>'; |
| 884 | 913 | |
| 885 | - foreach ($cat['boards'] as $id_board => $brd) |
|
| 886 | - echo ' |
|
| 914 | + foreach ($cat['boards'] as $id_board => $brd) { |
|
| 915 | + echo ' |
|
| 887 | 916 | <li><label><input type="checkbox" name="', $config_var['name'], '[', $brd['id'], ']" value="1"', in_array($brd['id'], $config_var['value']) ? ' checked' : '', '> ', $brd['child_level'] > 0 ? str_repeat(' ', $brd['child_level']) : '', $brd['name'], '</label></li>'; |
| 917 | + } |
|
| 888 | 918 | |
| 889 | 919 | echo ' |
| 890 | 920 | </ul>'; |
@@ -894,12 +924,14 @@ discard block |
||
| 894 | 924 | </fieldset>'; |
| 895 | 925 | } |
| 896 | 926 | // Text area? |
| 897 | - elseif ($config_var['type'] == 'large_text') |
|
| 898 | - echo ' |
|
| 927 | + elseif ($config_var['type'] == 'large_text') { |
|
| 928 | + echo ' |
|
| 899 | 929 | <textarea rows="', (!empty($config_var['size']) ? $config_var['size'] : (!empty($config_var['rows']) ? $config_var['rows'] : 4)), '" cols="', (!empty($config_var['cols']) ? $config_var['cols'] : 30), '" ', $javascript, $disabled, ' name="', $config_var['name'], '" id="', $config_var['name'], '">', $config_var['value'], '</textarea>'; |
| 930 | + } |
|
| 900 | 931 | // Permission group? |
| 901 | - elseif ($config_var['type'] == 'permissions') |
|
| 902 | - theme_inline_permissions($config_var['name']); |
|
| 932 | + elseif ($config_var['type'] == 'permissions') { |
|
| 933 | + theme_inline_permissions($config_var['name']); |
|
| 934 | + } |
|
| 903 | 935 | |
| 904 | 936 | // BBC selection? |
| 905 | 937 | elseif ($config_var['type'] == 'bbc') |
@@ -911,22 +943,24 @@ discard block |
||
| 911 | 943 | |
| 912 | 944 | foreach ($context['bbc_columns'] as $bbcColumn) |
| 913 | 945 | { |
| 914 | - foreach ($bbcColumn as $bbcTag) |
|
| 915 | - echo ' |
|
| 946 | + foreach ($bbcColumn as $bbcTag) { |
|
| 947 | + echo ' |
|
| 916 | 948 | <li class="list_bbc floatleft"> |
| 917 | 949 | <input type="checkbox" name="', $config_var['name'], '_enabledTags[]" id="tag_', $config_var['name'], '_', $bbcTag['tag'], '" value="', $bbcTag['tag'], '"', !in_array($bbcTag['tag'], $context['bbc_sections'][$config_var['name']]['disabled']) ? ' checked' : '', '> <label for="tag_', $config_var['name'], '_', $bbcTag['tag'], '">', $bbcTag['tag'], '</label>', $bbcTag['show_help'] ? ' (<a href="' . $scripturl . '?action=helpadmin;help=tag_' . $bbcTag['tag'] . '" onclick="return reqOverlayDiv(this.href);">?</a>)' : '', ' |
| 918 | 950 | </li>'; |
| 951 | + } |
|
| 919 | 952 | } |
| 920 | 953 | echo ' </ul> |
| 921 | 954 | <input type="checkbox" id="bbc_', $config_var['name'], '_select_all" onclick="invertAll(this, this.form, \'', $config_var['name'], '_enabledTags\');"', $context['bbc_sections'][$config_var['name']]['all_selected'] ? ' checked' : '', '> <label for="bbc_', $config_var['name'], '_select_all"><em>', $txt['bbcTagsToUse_select_all'], '</em></label> |
| 922 | 955 | </fieldset>'; |
| 923 | 956 | } |
| 924 | 957 | // A simple message? |
| 925 | - elseif ($config_var['type'] == 'var_message') |
|
| 926 | - echo ' |
|
| 958 | + elseif ($config_var['type'] == 'var_message') { |
|
| 959 | + echo ' |
|
| 927 | 960 | <div', !empty($config_var['name']) ? ' id="' . $config_var['name'] . '"' : '', '> |
| 928 | 961 | ', $config_var['var_message'], ' |
| 929 | 962 | </div>'; |
| 963 | + } |
|
| 930 | 964 | // Assume it must be a text box |
| 931 | 965 | else |
| 932 | 966 | { |
@@ -951,62 +985,70 @@ discard block |
||
| 951 | 985 | ' . $config_var['postinput'] : '',' |
| 952 | 986 | </dd>'; |
| 953 | 987 | } |
| 954 | - } |
|
| 955 | - else |
|
| 988 | + } else |
|
| 956 | 989 | { |
| 957 | 990 | // Just show a separator. |
| 958 | - if ($config_var == '') |
|
| 959 | - echo ' |
|
| 991 | + if ($config_var == '') { |
|
| 992 | + echo ' |
|
| 960 | 993 | </dl> |
| 961 | 994 | <hr> |
| 962 | 995 | <dl class="settings">'; |
| 963 | - else |
|
| 964 | - echo ' |
|
| 996 | + } else { |
|
| 997 | + echo ' |
|
| 965 | 998 | <dd> |
| 966 | 999 | <strong>' . $config_var . '</strong> |
| 967 | 1000 | </dd>'; |
| 1001 | + } |
|
| 968 | 1002 | } |
| 969 | 1003 | } |
| 970 | 1004 | |
| 971 | - if ($is_open) |
|
| 972 | - echo ' |
|
| 1005 | + if ($is_open) { |
|
| 1006 | + echo ' |
|
| 973 | 1007 | </dl>'; |
| 1008 | + } |
|
| 974 | 1009 | |
| 975 | - if (empty($context['settings_save_dont_show'])) |
|
| 976 | - echo ' |
|
| 1010 | + if (empty($context['settings_save_dont_show'])) { |
|
| 1011 | + echo ' |
|
| 977 | 1012 | <input type="submit" value="', $txt['save'], '"', (!empty($context['save_disabled']) ? ' disabled' : ''), (!empty($context['settings_save_onclick']) ? ' onclick="' . $context['settings_save_onclick'] . '"' : ''), ' class="button">'; |
| 1013 | + } |
|
| 978 | 1014 | |
| 979 | - if ($is_open) |
|
| 980 | - echo ' |
|
| 1015 | + if ($is_open) { |
|
| 1016 | + echo ' |
|
| 981 | 1017 | </div><!-- .windowbg -->'; |
| 1018 | + } |
|
| 982 | 1019 | |
| 983 | 1020 | |
| 984 | 1021 | // At least one token has to be used! |
| 985 | - if (isset($context['admin-ssc_token'])) |
|
| 986 | - echo ' |
|
| 1022 | + if (isset($context['admin-ssc_token'])) { |
|
| 1023 | + echo ' |
|
| 987 | 1024 | <input type="hidden" name="', $context['admin-ssc_token_var'], '" value="', $context['admin-ssc_token'], '">'; |
| 1025 | + } |
|
| 988 | 1026 | |
| 989 | - if (isset($context['admin-dbsc_token'])) |
|
| 990 | - echo ' |
|
| 1027 | + if (isset($context['admin-dbsc_token'])) { |
|
| 1028 | + echo ' |
|
| 991 | 1029 | <input type="hidden" name="', $context['admin-dbsc_token_var'], '" value="', $context['admin-dbsc_token'], '">'; |
| 1030 | + } |
|
| 992 | 1031 | |
| 993 | - if (isset($context['admin-mp_token'])) |
|
| 994 | - echo ' |
|
| 1032 | + if (isset($context['admin-mp_token'])) { |
|
| 1033 | + echo ' |
|
| 995 | 1034 | <input type="hidden" name="', $context['admin-mp_token_var'], '" value="', $context['admin-mp_token'], '">'; |
| 1035 | + } |
|
| 996 | 1036 | |
| 997 | 1037 | echo ' |
| 998 | 1038 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
| 999 | 1039 | </form> |
| 1000 | 1040 | </div><!-- #admincenter -->'; |
| 1001 | 1041 | |
| 1002 | - if (!empty($context['settings_post_javascript'])) |
|
| 1003 | - echo ' |
|
| 1042 | + if (!empty($context['settings_post_javascript'])) { |
|
| 1043 | + echo ' |
|
| 1004 | 1044 | <script> |
| 1005 | 1045 | ', $context['settings_post_javascript'], ' |
| 1006 | 1046 | </script>'; |
| 1047 | + } |
|
| 1007 | 1048 | |
| 1008 | - if (!empty($context['settings_insert_below'])) |
|
| 1009 | - echo $context['settings_insert_below']; |
|
| 1049 | + if (!empty($context['settings_insert_below'])) { |
|
| 1050 | + echo $context['settings_insert_below']; |
|
| 1051 | + } |
|
| 1010 | 1052 | |
| 1011 | 1053 | // We may have added a board listing. If we did, we need to make it work. |
| 1012 | 1054 | addInlineJavascript(' |
@@ -1029,9 +1071,10 @@ discard block |
||
| 1029 | 1071 | { |
| 1030 | 1072 | global $context, $txt; |
| 1031 | 1073 | |
| 1032 | - if (!empty($context['saved_successful'])) |
|
| 1033 | - echo ' |
|
| 1074 | + if (!empty($context['saved_successful'])) { |
|
| 1075 | + echo ' |
|
| 1034 | 1076 | <div class="infobox">', $txt['settings_saved'], '</div>'; |
| 1077 | + } |
|
| 1035 | 1078 | |
| 1036 | 1079 | // Standard fields. |
| 1037 | 1080 | template_show_list('standard_profile_fields'); |
@@ -1065,11 +1108,12 @@ discard block |
||
| 1065 | 1108 | { |
| 1066 | 1109 | loadLanguage('Errors'); |
| 1067 | 1110 | |
| 1068 | - if (isset($txt['custom_option_' . $_GET['msg']])) |
|
| 1069 | - echo ' |
|
| 1111 | + if (isset($txt['custom_option_' . $_GET['msg']])) { |
|
| 1112 | + echo ' |
|
| 1070 | 1113 | <div class="errorbox">', |
| 1071 | 1114 | $txt['custom_option_' . $_GET['msg']], ' |
| 1072 | 1115 | </div>'; |
| 1116 | + } |
|
| 1073 | 1117 | } |
| 1074 | 1118 | |
| 1075 | 1119 | echo ' |
@@ -1136,9 +1180,10 @@ discard block |
||
| 1136 | 1180 | <dd> |
| 1137 | 1181 | <select name="placement" id="placement">'; |
| 1138 | 1182 | |
| 1139 | - foreach ($context['cust_profile_fields_placement'] as $order => $name) |
|
| 1140 | - echo ' |
|
| 1183 | + foreach ($context['cust_profile_fields_placement'] as $order => $name) { |
|
| 1184 | + echo ' |
|
| 1141 | 1185 | <option value="', $order, '"', $context['field']['placement'] == $order ? ' selected' : '', '>', $txt['custom_profile_placement_' . $name], '</option>'; |
| 1186 | + } |
|
| 1142 | 1187 | |
| 1143 | 1188 | echo ' |
| 1144 | 1189 | </select> |
@@ -1162,9 +1207,10 @@ discard block |
||
| 1162 | 1207 | <dd> |
| 1163 | 1208 | <select name="field_type" id="field_type" onchange="updateInputBoxes();">'; |
| 1164 | 1209 | |
| 1165 | - foreach (array('text', 'textarea', 'select', 'radio', 'check') as $field_type) |
|
| 1166 | - echo ' |
|
| 1210 | + foreach (array('text', 'textarea', 'select', 'radio', 'check') as $field_type) { |
|
| 1211 | + echo ' |
|
| 1167 | 1212 | <option value="', $field_type, '"', $context['field']['type'] == $field_type ? ' selected' : '', '>', $txt['custom_profile_type_' . $field_type], '</option>'; |
| 1213 | + } |
|
| 1168 | 1214 | |
| 1169 | 1215 | echo ' |
| 1170 | 1216 | </select> |
@@ -1196,9 +1242,10 @@ discard block |
||
| 1196 | 1242 | </dt> |
| 1197 | 1243 | <dd id="options_dd">'; |
| 1198 | 1244 | |
| 1199 | - foreach ($context['field']['options'] as $k => $option) |
|
| 1200 | - echo ' |
|
| 1245 | + foreach ($context['field']['options'] as $k => $option) { |
|
| 1246 | + echo ' |
|
| 1201 | 1247 | ', $k == 0 ? '' : '<br>', '<input type="radio" name="default_select" value="', $k, '"', $context['field']['default_select'] == $option ? ' checked' : '', '><input type="text" name="select_option[', $k, ']" value="', $option, '">'; |
| 1248 | + } |
|
| 1202 | 1249 | |
| 1203 | 1250 | echo ' |
| 1204 | 1251 | <span id="addopt"></span> |
@@ -1262,9 +1309,10 @@ discard block |
||
| 1262 | 1309 | </fieldset> |
| 1263 | 1310 | <input type="submit" name="save" value="', $txt['save'], '" class="button">'; |
| 1264 | 1311 | |
| 1265 | - if ($context['fid']) |
|
| 1266 | - echo ' |
|
| 1312 | + if ($context['fid']) { |
|
| 1313 | + echo ' |
|
| 1267 | 1314 | <input type="submit" name="delete" value="', $txt['delete'], '" data-confirm="', $txt['custom_edit_delete_sure'], '" class="button you_sure">'; |
| 1315 | + } |
|
| 1268 | 1316 | |
| 1269 | 1317 | echo ' |
| 1270 | 1318 | </div><!-- .windowbg --> |
@@ -1311,8 +1359,7 @@ discard block |
||
| 1311 | 1359 | <p class="centertext"> |
| 1312 | 1360 | <strong>', $txt['admin_search_results_none'], '</strong> |
| 1313 | 1361 | </p>'; |
| 1314 | - } |
|
| 1315 | - else |
|
| 1362 | + } else |
|
| 1316 | 1363 | { |
| 1317 | 1364 | echo ' |
| 1318 | 1365 | <ol class="search_results">'; |
@@ -1339,9 +1386,10 @@ discard block |
||
| 1339 | 1386 | <li> |
| 1340 | 1387 | <a href="', $result['url'], '"><strong>', $result['name'], '</strong></a> [', isset($txt['admin_search_section_' . $result['type']]) ? $txt['admin_search_section_' . $result['type']] : $result['type'], ']'; |
| 1341 | 1388 | |
| 1342 | - if ($result['help']) |
|
| 1343 | - echo ' |
|
| 1389 | + if ($result['help']) { |
|
| 1390 | + echo ' |
|
| 1344 | 1391 | <p class="double_height">', $result['help'], '</p>'; |
| 1392 | + } |
|
| 1345 | 1393 | |
| 1346 | 1394 | echo ' |
| 1347 | 1395 | </li>'; |
@@ -1381,10 +1429,11 @@ discard block |
||
| 1381 | 1429 | <strong>', $txt['setup_verification_answer'], '</strong> |
| 1382 | 1430 | </dd>'; |
| 1383 | 1431 | |
| 1384 | - if (!empty($context['qa_by_lang'][$lang_id])) |
|
| 1385 | - foreach ($context['qa_by_lang'][$lang_id] as $q_id) |
|
| 1432 | + if (!empty($context['qa_by_lang'][$lang_id])) { |
|
| 1433 | + foreach ($context['qa_by_lang'][$lang_id] as $q_id) |
|
| 1386 | 1434 | { |
| 1387 | 1435 | $question = $context['question_answers'][$q_id]; |
| 1436 | + } |
|
| 1388 | 1437 | |
| 1389 | 1438 | echo ' |
| 1390 | 1439 | <dt> |
@@ -1392,9 +1441,10 @@ discard block |
||
| 1392 | 1441 | </dt> |
| 1393 | 1442 | <dd>'; |
| 1394 | 1443 | |
| 1395 | - foreach ($question['answers'] as $answer) |
|
| 1396 | - echo ' |
|
| 1444 | + foreach ($question['answers'] as $answer) { |
|
| 1445 | + echo ' |
|
| 1397 | 1446 | <input type="text" name="answer[', $lang_id, '][', $q_id, '][]" value="', $answer, '" size="50" class="verification_answer">'; |
| 1447 | + } |
|
| 1398 | 1448 | |
| 1399 | 1449 | echo ' |
| 1400 | 1450 | <div class="qa_add_answer"><a href="javascript:void(0);" onclick="return addAnswer(this);">[ ', $txt['setup_verification_add_answer'], ' ]</a></div> |
@@ -1433,11 +1483,12 @@ discard block |
||
| 1433 | 1483 | ', $txt['errors_found'], ': |
| 1434 | 1484 | <ul>'; |
| 1435 | 1485 | |
| 1436 | - foreach ($context['repair_errors'] as $error) |
|
| 1437 | - echo ' |
|
| 1486 | + foreach ($context['repair_errors'] as $error) { |
|
| 1487 | + echo ' |
|
| 1438 | 1488 | <li> |
| 1439 | 1489 | ', $error, ' |
| 1440 | 1490 | </li>'; |
| 1491 | + } |
|
| 1441 | 1492 | |
| 1442 | 1493 | echo ' |
| 1443 | 1494 | </ul> |
@@ -1447,15 +1498,14 @@ discard block |
||
| 1447 | 1498 | <p class="padding"> |
| 1448 | 1499 | <strong><a href="', $scripturl, '?action=admin;area=repairboards;fixErrors;', $context['session_var'], '=', $context['session_id'], '">', $txt['yes'], '</a> - <a href="', $scripturl, '?action=admin;area=maintain">', $txt['no'], '</a></strong> |
| 1449 | 1500 | </p>'; |
| 1450 | - } |
|
| 1451 | - else |
|
| 1452 | - echo ' |
|
| 1501 | + } else { |
|
| 1502 | + echo ' |
|
| 1453 | 1503 | <p>', $txt['maintain_no_errors'], '</p> |
| 1454 | 1504 | <p class="padding"> |
| 1455 | 1505 | <a href="', $scripturl, '?action=admin;area=maintain;sa=routine">', $txt['maintain_return'], '</a> |
| 1456 | 1506 | </p>'; |
| 1457 | - } |
|
| 1458 | - else |
|
| 1507 | + } |
|
| 1508 | + } else |
|
| 1459 | 1509 | { |
| 1460 | 1510 | if (!empty($context['redirect_to_recount'])) |
| 1461 | 1511 | { |
@@ -1467,8 +1517,7 @@ discard block |
||
| 1467 | 1517 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
| 1468 | 1518 | <input type="submit" name="recount" id="recount_now" value="', $txt['errors_recount_now'], '"> |
| 1469 | 1519 | </form>'; |
| 1470 | - } |
|
| 1471 | - else |
|
| 1520 | + } else |
|
| 1472 | 1521 | { |
| 1473 | 1522 | echo ' |
| 1474 | 1523 | <p>', $txt['errors_fixed'], '</p> |
@@ -1559,9 +1608,10 @@ discard block |
||
| 1559 | 1608 | <tr class="windowbg"> |
| 1560 | 1609 | <td class="equal_table">', $key, '</td>'; |
| 1561 | 1610 | |
| 1562 | - foreach ($setting as $key_lm => $value) |
|
| 1563 | - echo ' |
|
| 1611 | + foreach ($setting as $key_lm => $value) { |
|
| 1612 | + echo ' |
|
| 1564 | 1613 | <td class="equal_table">', $value, '</td>'; |
| 1614 | + } |
|
| 1565 | 1615 | |
| 1566 | 1616 | echo ' |
| 1567 | 1617 | </tr>'; |
@@ -1621,8 +1671,8 @@ discard block |
||
| 1621 | 1671 | { |
| 1622 | 1672 | global $context, $txt; |
| 1623 | 1673 | |
| 1624 | - if ($context['user']['is_admin']) |
|
| 1625 | - echo ' |
|
| 1674 | + if ($context['user']['is_admin']) { |
|
| 1675 | + echo ' |
|
| 1626 | 1676 | <span class="floatright admin_search"> |
| 1627 | 1677 | <span class="generic_icons filter centericon"></span> |
| 1628 | 1678 | <input type="search" name="search_term" placeholder="', $txt['admin_search'], '"> |
@@ -1633,6 +1683,7 @@ discard block |
||
| 1633 | 1683 | </select> |
| 1634 | 1684 | <input type="submit" name="search_go" id="search_go" value="', $txt['admin_search_go'], '" class="button"> |
| 1635 | 1685 | </span>'; |
| 1636 | -} |
|
| 1686 | + } |
|
| 1687 | + } |
|
| 1637 | 1688 | |
| 1638 | 1689 | ?> |
| 1639 | 1690 | \ No newline at end of file |
@@ -28,14 +28,15 @@ 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"><br> |
| 34 | 34 | <br> |
| 35 | 35 | <input type="submit" name="accept_agreement_coppa" value="', $context['coppa_agree_below'], '" class="button">'; |
| 36 | - else |
|
| 37 | - echo ' |
|
| 36 | + } else { |
|
| 37 | + echo ' |
|
| 38 | 38 | <input type="submit" name="accept_agreement" value="', $txt['agreement_agree'], '" class="button">'; |
| 39 | + } |
|
| 39 | 40 | |
| 40 | 41 | echo ' |
| 41 | 42 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -78,9 +79,10 @@ discard block |
||
| 78 | 79 | <ul>'; |
| 79 | 80 | |
| 80 | 81 | // Cycle through each error and display an error message. |
| 81 | - foreach ($context['registration_errors'] as $error) |
|
| 82 | - echo ' |
|
| 82 | + foreach ($context['registration_errors'] as $error) { |
|
| 83 | + echo ' |
|
| 83 | 84 | <li>', $error, '</li>'; |
| 85 | + } |
|
| 84 | 86 | |
| 85 | 87 | echo ' |
| 86 | 88 | </ul> |
@@ -149,14 +151,15 @@ discard block |
||
| 149 | 151 | echo ' |
| 150 | 152 | <dl class="register_form">'; |
| 151 | 153 | |
| 152 | - foreach ($context['custom_fields'] as $field) |
|
| 153 | - if ($field['show_reg'] > 1) |
|
| 154 | + foreach ($context['custom_fields'] as $field) { |
|
| 155 | + if ($field['show_reg'] > 1) |
|
| 154 | 156 | echo ' |
| 155 | 157 | <dt> |
| 156 | 158 | <strong', !empty($field['is_error']) ? ' class="red"' : '', '>', $field['name'], ':</strong> |
| 157 | 159 | <span class="smalltext">', $field['desc'], '</span> |
| 158 | 160 | </dt> |
| 159 | 161 | <dd>', str_replace('name="', 'tabindex="' . $context['tabindex']++ . '" name="', $field['input_html']), '</dd>'; |
| 162 | + } |
|
| 160 | 163 | |
| 161 | 164 | echo ' |
| 162 | 165 | </dl>'; |
@@ -167,14 +170,15 @@ discard block |
||
| 167 | 170 | </div><!-- .roundframe -->'; |
| 168 | 171 | |
| 169 | 172 | // If we have either of these, show the extra group. |
| 170 | - if (!empty($context['profile_fields']) || !empty($context['custom_fields'])) |
|
| 171 | - echo ' |
|
| 173 | + if (!empty($context['profile_fields']) || !empty($context['custom_fields'])) { |
|
| 174 | + echo ' |
|
| 172 | 175 | <div class="title_bar title_top"> |
| 173 | 176 | <h3 class="titlebg">', $txt['additional_information'], '</h3> |
| 174 | 177 | </div> |
| 175 | 178 | <div class="roundframe noup"> |
| 176 | 179 | <fieldset> |
| 177 | 180 | <dl class="register_form" id="custom_group">'; |
| 181 | + } |
|
| 178 | 182 | |
| 179 | 183 | if (!empty($context['profile_fields'])) |
| 180 | 184 | { |
@@ -188,41 +192,45 @@ discard block |
||
| 188 | 192 | $callback_func = 'template_profile_' . $field['callback_func']; |
| 189 | 193 | $callback_func(); |
| 190 | 194 | } |
| 191 | - } |
|
| 192 | - else |
|
| 195 | + } else |
|
| 193 | 196 | { |
| 194 | 197 | echo ' |
| 195 | 198 | <dt> |
| 196 | 199 | <strong', !empty($field['is_error']) ? ' class="red"' : '', '>', $field['label'], ':</strong>'; |
| 197 | 200 | |
| 198 | 201 | // Does it have any subtext to show? |
| 199 | - if (!empty($field['subtext'])) |
|
| 200 | - echo ' |
|
| 202 | + if (!empty($field['subtext'])) { |
|
| 203 | + echo ' |
|
| 201 | 204 | <span class="smalltext">', $field['subtext'], '</span>'; |
| 205 | + } |
|
| 202 | 206 | |
| 203 | 207 | echo ' |
| 204 | 208 | </dt> |
| 205 | 209 | <dd>'; |
| 206 | 210 | |
| 207 | 211 | // Want to put something infront of the box? |
| 208 | - if (!empty($field['preinput'])) |
|
| 209 | - echo ' |
|
| 212 | + if (!empty($field['preinput'])) { |
|
| 213 | + echo ' |
|
| 210 | 214 | ', $field['preinput']; |
| 215 | + } |
|
| 211 | 216 | |
| 212 | 217 | // What type of data are we showing? |
| 213 | - if ($field['type'] == 'label') |
|
| 214 | - echo ' |
|
| 218 | + if ($field['type'] == 'label') { |
|
| 219 | + echo ' |
|
| 215 | 220 | ', $field['value']; |
| 221 | + } |
|
| 216 | 222 | |
| 217 | 223 | // Maybe it's a text box - very likely! |
| 218 | - elseif (in_array($field['type'], array('int', 'float', 'text', 'password', 'url'))) |
|
| 219 | - echo ' |
|
| 224 | + elseif (in_array($field['type'], array('int', 'float', 'text', 'password', 'url'))) { |
|
| 225 | + echo ' |
|
| 220 | 226 | <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'], '>'; |
| 227 | + } |
|
| 221 | 228 | |
| 222 | 229 | // You "checking" me out? ;) |
| 223 | - elseif ($field['type'] == 'check') |
|
| 224 | - echo ' |
|
| 230 | + elseif ($field['type'] == 'check') { |
|
| 231 | + echo ' |
|
| 225 | 232 | <input type="hidden" name="', $key, '" value="0"><input type="checkbox" name="', $key, '" id="', $key, '"', !empty($field['value']) ? ' checked' : '', ' value="1" tabindex="', $context['tabindex']++, '" ', $field['input_attr'], '>'; |
| 233 | + } |
|
| 226 | 234 | |
| 227 | 235 | // Always fun - select boxes! |
| 228 | 236 | elseif ($field['type'] == 'select') |
@@ -233,14 +241,16 @@ discard block |
||
| 233 | 241 | if (isset($field['options'])) |
| 234 | 242 | { |
| 235 | 243 | // Is this some code to generate the options? |
| 236 | - if (!is_array($field['options'])) |
|
| 237 | - $field['options'] = eval($field['options']); |
|
| 244 | + if (!is_array($field['options'])) { |
|
| 245 | + $field['options'] = eval($field['options']); |
|
| 246 | + } |
|
| 238 | 247 | |
| 239 | 248 | // Assuming we now have some! |
| 240 | - if (is_array($field['options'])) |
|
| 241 | - foreach ($field['options'] as $value => $name) |
|
| 249 | + if (is_array($field['options'])) { |
|
| 250 | + foreach ($field['options'] as $value => $name) |
|
| 242 | 251 | echo ' |
| 243 | 252 | <option', is_numeric($value) ? ' value="" disabled' : ' value="' . $value . '"', $value === $field['value'] ? ' selected' : '', '>', $name, '</option>'; |
| 253 | + } |
|
| 244 | 254 | } |
| 245 | 255 | |
| 246 | 256 | echo ' |
@@ -248,9 +258,10 @@ discard block |
||
| 248 | 258 | } |
| 249 | 259 | |
| 250 | 260 | // Something to end with? |
| 251 | - if (!empty($field['postinput'])) |
|
| 252 | - echo ' |
|
| 261 | + if (!empty($field['postinput'])) { |
|
| 262 | + echo ' |
|
| 253 | 263 | ', $field['postinput']; |
| 264 | + } |
|
| 254 | 265 | |
| 255 | 266 | echo ' |
| 256 | 267 | </dd>'; |
@@ -261,25 +272,27 @@ discard block |
||
| 261 | 272 | // Are there any custom fields? |
| 262 | 273 | if (!empty($context['custom_fields'])) |
| 263 | 274 | { |
| 264 | - foreach ($context['custom_fields'] as $field) |
|
| 265 | - if ($field['show_reg'] < 2) |
|
| 275 | + foreach ($context['custom_fields'] as $field) { |
|
| 276 | + if ($field['show_reg'] < 2) |
|
| 266 | 277 | echo ' |
| 267 | 278 | <dt> |
| 268 | 279 | <strong', !empty($field['is_error']) ? ' class="red"' : '', '>', $field['name'], ':</strong> |
| 269 | 280 | <span class="smalltext">', $field['desc'], '</span> |
| 270 | 281 | </dt> |
| 271 | 282 | <dd>', $field['input_html'], '</dd>'; |
| 283 | + } |
|
| 272 | 284 | } |
| 273 | 285 | |
| 274 | 286 | // If we have either of these, close the list like a proper gent. |
| 275 | - if (!empty($context['profile_fields']) || !empty($context['custom_fields'])) |
|
| 276 | - echo ' |
|
| 287 | + if (!empty($context['profile_fields']) || !empty($context['custom_fields'])) { |
|
| 288 | + echo ' |
|
| 277 | 289 | </dl> |
| 278 | 290 | </fieldset> |
| 279 | 291 | </div><!-- .roundframe -->'; |
| 292 | + } |
|
| 280 | 293 | |
| 281 | - if ($context['visual_verification']) |
|
| 282 | - echo ' |
|
| 294 | + if ($context['visual_verification']) { |
|
| 295 | + echo ' |
|
| 283 | 296 | <div class="title_bar title_top"> |
| 284 | 297 | <h3 class="titlebg">', $txt['verification'], '</h3> |
| 285 | 298 | </div> |
@@ -288,19 +301,21 @@ discard block |
||
| 288 | 301 | ', template_control_verification($context['visual_verification_id'], 'all'), ' |
| 289 | 302 | </fieldset> |
| 290 | 303 | </div>'; |
| 304 | + } |
|
| 291 | 305 | |
| 292 | 306 | echo ' |
| 293 | 307 | <div id="confirm_buttons" class="flow_auto">'; |
| 294 | 308 | |
| 295 | 309 | // Age restriction in effect? |
| 296 | - if (!$context['require_agreement'] && $context['show_coppa']) |
|
| 297 | - echo ' |
|
| 310 | + if (!$context['require_agreement'] && $context['show_coppa']) { |
|
| 311 | + echo ' |
|
| 298 | 312 | <input type="submit" name="accept_agreement" value="', $context['coppa_agree_above'], '" class="button"><br> |
| 299 | 313 | <br> |
| 300 | 314 | <input type="submit" name="accept_agreement_coppa" value="', $context['coppa_agree_below'], '" class="button">'; |
| 301 | - else |
|
| 302 | - echo ' |
|
| 315 | + } else { |
|
| 316 | + echo ' |
|
| 303 | 317 | <input type="submit" name="regSubmit" value="', $txt['register'], '" tabindex="', $context['tabindex']++, '" class="button">'; |
| 318 | + } |
|
| 304 | 319 | |
| 305 | 320 | echo ' |
| 306 | 321 | </div> |
@@ -362,25 +377,28 @@ discard block |
||
| 362 | 377 | <p>', $context['coppa']['many_options'] ? $txt['coppa_send_to_two_options'] : $txt['coppa_send_to_one_option'], '</p>'; |
| 363 | 378 | |
| 364 | 379 | // Can they send by post? |
| 365 | - if (!empty($context['coppa']['post'])) |
|
| 366 | - echo ' |
|
| 380 | + if (!empty($context['coppa']['post'])) { |
|
| 381 | + echo ' |
|
| 367 | 382 | <h4>1) ', $txt['coppa_send_by_post'], '</h4> |
| 368 | 383 | <div class="coppa_contact"> |
| 369 | 384 | ', $context['coppa']['post'], ' |
| 370 | 385 | </div>'; |
| 386 | + } |
|
| 371 | 387 | |
| 372 | 388 | // Can they send by fax?? |
| 373 | - if (!empty($context['coppa']['fax'])) |
|
| 374 | - echo ' |
|
| 389 | + if (!empty($context['coppa']['fax'])) { |
|
| 390 | + echo ' |
|
| 375 | 391 | <h4>', !empty($context['coppa']['post']) ? '2' : '1', ') ', $txt['coppa_send_by_fax'], '</h4> |
| 376 | 392 | <div class="coppa_contact"> |
| 377 | 393 | ', $context['coppa']['fax'], ' |
| 378 | 394 | </div>'; |
| 395 | + } |
|
| 379 | 396 | |
| 380 | 397 | // Offer an alternative Phone Number? |
| 381 | - if ($context['coppa']['phone']) |
|
| 382 | - echo ' |
|
| 398 | + if ($context['coppa']['phone']) { |
|
| 399 | + echo ' |
|
| 383 | 400 | <p>', $context['coppa']['phone'], '</p>'; |
| 401 | + } |
|
| 384 | 402 | |
| 385 | 403 | echo ' |
| 386 | 404 | </div><!-- #coppa -->'; |
@@ -445,19 +463,20 @@ discard block |
||
| 445 | 463 | <body style="margin: 1ex;"> |
| 446 | 464 | <div class="windowbg description" style="text-align: center;">'; |
| 447 | 465 | |
| 448 | - if (isBrowser('is_ie') || isBrowser('is_ie11')) |
|
| 449 | - echo ' |
|
| 466 | + if (isBrowser('is_ie') || isBrowser('is_ie11')) { |
|
| 467 | + echo ' |
|
| 450 | 468 | <object classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" type="audio/x-wav"> |
| 451 | 469 | <param name="AutoStart" value="1"> |
| 452 | 470 | <param name="FileName" value="', $context['verification_sound_href'], '"> |
| 453 | 471 | </object>'; |
| 454 | - else |
|
| 455 | - echo ' |
|
| 472 | + } else { |
|
| 473 | + echo ' |
|
| 456 | 474 | <audio src="', $context['verification_sound_href'], '" controls> |
| 457 | 475 | <object type="audio/x-wav" data="', $context['verification_sound_href'], '"> |
| 458 | 476 | <a href="', $context['verification_sound_href'], '" rel="nofollow">', $context['verification_sound_href'], '</a> |
| 459 | 477 | </object> |
| 460 | 478 | </audio>'; |
| 479 | + } |
|
| 461 | 480 | |
| 462 | 481 | echo ' |
| 463 | 482 | <br> |
@@ -485,11 +504,12 @@ discard block |
||
| 485 | 504 | </div> |
| 486 | 505 | <div id="register_screen" class="windowbg noup">'; |
| 487 | 506 | |
| 488 | - if (!empty($context['registration_done'])) |
|
| 489 | - echo ' |
|
| 507 | + if (!empty($context['registration_done'])) { |
|
| 508 | + echo ' |
|
| 490 | 509 | <div class="infobox"> |
| 491 | 510 | ', $context['registration_done'], ' |
| 492 | 511 | </div>'; |
| 512 | + } |
|
| 493 | 513 | |
| 494 | 514 | echo ' |
| 495 | 515 | <dl class="register_form" id="admin_register_form"> |
@@ -525,9 +545,10 @@ discard block |
||
| 525 | 545 | <dd> |
| 526 | 546 | <select name="group" id="group_select" tabindex="', $context['tabindex']++, '">'; |
| 527 | 547 | |
| 528 | - foreach ($context['member_groups'] as $id => $name) |
|
| 529 | - echo ' |
|
| 548 | + foreach ($context['member_groups'] as $id => $name) { |
|
| 549 | + echo ' |
|
| 530 | 550 | <option value="', $id, '">', $name, '</option>'; |
| 551 | + } |
|
| 531 | 552 | |
| 532 | 553 | echo ' |
| 533 | 554 | </select> |
@@ -535,8 +556,8 @@ discard block |
||
| 535 | 556 | } |
| 536 | 557 | |
| 537 | 558 | // If there is any field marked as required, show it here! |
| 538 | - if (!empty($context['custom_fields_required']) && !empty($context['custom_fields'])) |
|
| 539 | - foreach ($context['custom_fields'] as $field) |
|
| 559 | + if (!empty($context['custom_fields_required']) && !empty($context['custom_fields'])) { |
|
| 560 | + foreach ($context['custom_fields'] as $field) |
|
| 540 | 561 | if ($field['show_reg'] > 1) |
| 541 | 562 | echo ' |
| 542 | 563 | <dt> |
@@ -546,6 +567,7 @@ discard block |
||
| 546 | 567 | <dd> |
| 547 | 568 | ', str_replace('name="', 'tabindex="' . $context['tabindex']++ . '" name="', $field['input_html']), ' |
| 548 | 569 | </dd>'; |
| 570 | + } |
|
| 549 | 571 | |
| 550 | 572 | echo ' |
| 551 | 573 | <dt> |
@@ -582,13 +604,13 @@ discard block |
||
| 582 | 604 | { |
| 583 | 605 | global $context, $scripturl, $txt; |
| 584 | 606 | |
| 585 | - if (!empty($context['saved_successful'])) |
|
| 586 | - echo ' |
|
| 607 | + if (!empty($context['saved_successful'])) { |
|
| 608 | + echo ' |
|
| 587 | 609 | <div class="infobox">', $txt['settings_saved'], '</div>'; |
| 588 | - |
|
| 589 | - elseif (!empty($context['could_not_save'])) |
|
| 590 | - echo ' |
|
| 610 | + } elseif (!empty($context['could_not_save'])) { |
|
| 611 | + echo ' |
|
| 591 | 612 | <div class="errorbox">', $txt['admin_agreement_not_saved'], '</div>'; |
| 613 | + } |
|
| 592 | 614 | |
| 593 | 615 | // Just a big box to edit the text file ;) |
| 594 | 616 | echo ' |
@@ -598,9 +620,10 @@ discard block |
||
| 598 | 620 | </div>'; |
| 599 | 621 | |
| 600 | 622 | // Warning for if the file isn't writable. |
| 601 | - if (!empty($context['warning'])) |
|
| 602 | - echo ' |
|
| 623 | + if (!empty($context['warning'])) { |
|
| 624 | + echo ' |
|
| 603 | 625 | <p class="error">', $context['warning'], '</p>'; |
| 626 | + } |
|
| 604 | 627 | |
| 605 | 628 | echo ' |
| 606 | 629 | <div class="windowbg noup" id="registration_agreement">'; |
@@ -617,9 +640,10 @@ discard block |
||
| 617 | 640 | <strong>', $txt['admin_agreement_select_language'], ':</strong> |
| 618 | 641 | <select name="agree_lang" onchange="document.getElementById(\'change_reg\').submit();" tabindex="', $context['tabindex']++, '">'; |
| 619 | 642 | |
| 620 | - foreach ($context['editable_agreements'] as $file => $name) |
|
| 621 | - echo ' |
|
| 643 | + foreach ($context['editable_agreements'] as $file => $name) { |
|
| 644 | + echo ' |
|
| 622 | 645 | <option value="', $file, '"', $context['current_agreement'] == $file ? ' selected' : '', '>', $name, '</option>'; |
| 646 | + } |
|
| 623 | 647 | |
| 624 | 648 | echo ' |
| 625 | 649 | </select> |
@@ -659,9 +683,10 @@ discard block |
||
| 659 | 683 | { |
| 660 | 684 | global $context, $scripturl, $txt; |
| 661 | 685 | |
| 662 | - if (!empty($context['saved_successful'])) |
|
| 663 | - echo ' |
|
| 686 | + if (!empty($context['saved_successful'])) { |
|
| 687 | + echo ' |
|
| 664 | 688 | <div class="infobox">', $txt['settings_saved'], '</div>'; |
| 689 | + } |
|
| 665 | 690 | |
| 666 | 691 | echo ' |
| 667 | 692 | <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. |
@@ -68,13 +70,13 @@ discard block |
||
| 68 | 70 | </div> |
| 69 | 71 | <div class="pm_unread">'; |
| 70 | 72 | |
| 71 | - if (empty($context['unread_pms'])) |
|
| 72 | - echo ' |
|
| 73 | + if (empty($context['unread_pms'])) { |
|
| 74 | + echo ' |
|
| 73 | 75 | <div class="no_unread">', $txt['pm_no_unread'], '</div>'; |
| 74 | - else |
|
| 76 | + } else |
|
| 75 | 77 | { |
| 76 | - foreach ($context['unread_pms'] as $id_pm => $pm_details) |
|
| 77 | - echo ' |
|
| 78 | + foreach ($context['unread_pms'] as $id_pm => $pm_details) { |
|
| 79 | + echo ' |
|
| 78 | 80 | <div class="unread"> |
| 79 | 81 | ', !empty($pm_details['member']) ? $pm_details['member']['avatar']['image'] : '', ' |
| 80 | 82 | <div class="details"> |
@@ -85,6 +87,7 @@ discard block |
||
| 85 | 87 | </div> |
| 86 | 88 | </div> |
| 87 | 89 | </div>'; |
| 90 | + } |
|
| 88 | 91 | } |
| 89 | 92 | |
| 90 | 93 | echo ' |
@@ -193,14 +196,15 @@ discard block |
||
| 193 | 196 | if ($context['get_pmessage']('message', true)) |
| 194 | 197 | { |
| 195 | 198 | // Show the helpful titlebar - generally. |
| 196 | - if ($context['display_mode'] != 1) |
|
| 197 | - echo ' |
|
| 199 | + if ($context['display_mode'] != 1) { |
|
| 200 | + echo ' |
|
| 198 | 201 | <div class="cat_bar"> |
| 199 | 202 | <h3 class="catbg"> |
| 200 | 203 | <span id="author">', $txt['author'], '</span> |
| 201 | 204 | <span id="topic_title">', $txt[$context['display_mode'] == 0 ? 'messages' : 'conversation'], '</span> |
| 202 | 205 | </h3> |
| 203 | 206 | </div>'; |
| 207 | + } |
|
| 204 | 208 | |
| 205 | 209 | // Show a few buttons if we are in conversation mode and outputting the first message. |
| 206 | 210 | if ($context['display_mode'] == 2) |
@@ -228,9 +232,10 @@ discard block |
||
| 228 | 232 | <div class="custom_fields_above_member"> |
| 229 | 233 | <ul class="nolist">'; |
| 230 | 234 | |
| 231 | - foreach ($message['custom_fields']['above_member'] as $custom) |
|
| 232 | - echo ' |
|
| 235 | + foreach ($message['custom_fields']['above_member'] as $custom) { |
|
| 236 | + echo ' |
|
| 233 | 237 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
| 238 | + } |
|
| 234 | 239 | |
| 235 | 240 | echo ' |
| 236 | 241 | </ul> |
@@ -242,25 +247,28 @@ discard block |
||
| 242 | 247 | <a id="msg', $message['id'], '"></a>'; |
| 243 | 248 | |
| 244 | 249 | // Show online and offline buttons? |
| 245 | - if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest']) |
|
| 246 | - echo ' |
|
| 250 | + if (!empty($modSettings['onlineEnable']) && !$message['member']['is_guest']) { |
|
| 251 | + echo ' |
|
| 247 | 252 | <span class="' . ($message['member']['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $message['member']['online']['text'] . '"></span>'; |
| 253 | + } |
|
| 248 | 254 | |
| 249 | 255 | // Custom fields BEFORE the username? |
| 250 | - if (!empty($message['custom_fields']['before_member'])) |
|
| 251 | - foreach ($message['custom_fields']['before_member'] as $custom) |
|
| 256 | + if (!empty($message['custom_fields']['before_member'])) { |
|
| 257 | + foreach ($message['custom_fields']['before_member'] as $custom) |
|
| 252 | 258 | echo ' |
| 253 | 259 | <span class="custom ', $custom['col_name'], '">', $custom['value'], '</span>'; |
| 260 | + } |
|
| 254 | 261 | |
| 255 | 262 | // Show a link to the member's profile. |
| 256 | 263 | echo ' |
| 257 | 264 | ', $message['member']['link']; |
| 258 | 265 | |
| 259 | 266 | // Custom fields AFTER the username? |
| 260 | - if (!empty($message['custom_fields']['after_member'])) |
|
| 261 | - foreach ($message['custom_fields']['after_member'] as $custom) |
|
| 267 | + if (!empty($message['custom_fields']['after_member'])) { |
|
| 268 | + foreach ($message['custom_fields']['after_member'] as $custom) |
|
| 262 | 269 | echo ' |
| 263 | 270 | <span class="custom ', $custom['col_name'], '">', $custom['value'], '</span>'; |
| 271 | + } |
|
| 264 | 272 | |
| 265 | 273 | echo ' |
| 266 | 274 | </h4>'; |
@@ -269,48 +277,56 @@ discard block |
||
| 269 | 277 | <ul class="user_info">'; |
| 270 | 278 | |
| 271 | 279 | // Show the user's avatar. |
| 272 | - if (!empty($modSettings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image'])) |
|
| 273 | - echo ' |
|
| 280 | + if (!empty($modSettings['show_user_images']) && empty($options['show_no_avatars']) && !empty($message['member']['avatar']['image'])) { |
|
| 281 | + echo ' |
|
| 274 | 282 | <li class="avatar"> |
| 275 | 283 | <a href="', $scripturl, '?action=profile;u=', $message['member']['id'], '">', $message['member']['avatar']['image'], '</a> |
| 276 | 284 | </li>'; |
| 285 | + } |
|
| 277 | 286 | |
| 278 | 287 | // Are there any custom fields below the avatar? |
| 279 | - if (!empty($message['custom_fields']['below_avatar'])) |
|
| 280 | - foreach ($message['custom_fields']['below_avatar'] as $custom) |
|
| 288 | + if (!empty($message['custom_fields']['below_avatar'])) { |
|
| 289 | + foreach ($message['custom_fields']['below_avatar'] as $custom) |
|
| 281 | 290 | echo ' |
| 282 | 291 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
| 292 | + } |
|
| 283 | 293 | |
| 284 | - if (!$message['member']['is_guest']) |
|
| 285 | - echo ' |
|
| 294 | + if (!$message['member']['is_guest']) { |
|
| 295 | + echo ' |
|
| 286 | 296 | <li class="icons">', $message['member']['group_icons'], '</li>'; |
| 297 | + } |
|
| 287 | 298 | // Show the member's primary group (like 'Administrator') if they have one. |
| 288 | - if (isset($message['member']['group']) && $message['member']['group'] != '') |
|
| 289 | - echo ' |
|
| 299 | + if (isset($message['member']['group']) && $message['member']['group'] != '') { |
|
| 300 | + echo ' |
|
| 290 | 301 | <li class="membergroup">', $message['member']['group'], '</li>'; |
| 302 | + } |
|
| 291 | 303 | |
| 292 | 304 | // Show the member's custom title, if they have one. |
| 293 | - if (isset($message['member']['title']) && $message['member']['title'] != '') |
|
| 294 | - echo ' |
|
| 305 | + if (isset($message['member']['title']) && $message['member']['title'] != '') { |
|
| 306 | + echo ' |
|
| 295 | 307 | <li class="title">', $message['member']['title'], '</li>'; |
| 308 | + } |
|
| 296 | 309 | |
| 297 | 310 | // Don't show these things for guests. |
| 298 | 311 | if (!$message['member']['is_guest']) |
| 299 | 312 | { |
| 300 | 313 | // 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. |
| 301 | - if ((empty($modSettings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '') |
|
| 302 | - echo ' |
|
| 314 | + if ((empty($modSettings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '') { |
|
| 315 | + echo ' |
|
| 303 | 316 | <li class="postgroup">', $message['member']['post_group'], '</li>'; |
| 317 | + } |
|
| 304 | 318 | |
| 305 | 319 | // Show how many posts they have made. |
| 306 | - if (!isset($context['disabled_fields']['posts'])) |
|
| 307 | - echo ' |
|
| 320 | + if (!isset($context['disabled_fields']['posts'])) { |
|
| 321 | + echo ' |
|
| 308 | 322 | <li class="postcount">', $txt['member_postcount'], ': ', $message['member']['posts'], '</li>'; |
| 323 | + } |
|
| 309 | 324 | |
| 310 | 325 | // Show their personal text? |
| 311 | - if (!empty($modSettings['show_blurb']) && $message['member']['blurb'] != '') |
|
| 312 | - echo ' |
|
| 326 | + if (!empty($modSettings['show_blurb']) && $message['member']['blurb'] != '') { |
|
| 327 | + echo ' |
|
| 313 | 328 | <li class="blurb">', $message['member']['blurb'], '</li>'; |
| 329 | + } |
|
| 314 | 330 | |
| 315 | 331 | // Any custom fields to show as icons? |
| 316 | 332 | if (!empty($message['custom_fields']['icons'])) |
@@ -319,9 +335,10 @@ discard block |
||
| 319 | 335 | <li class="im_icons"> |
| 320 | 336 | <ol>'; |
| 321 | 337 | |
| 322 | - foreach ($message['custom_fields']['icons'] as $custom) |
|
| 323 | - echo ' |
|
| 338 | + foreach ($message['custom_fields']['icons'] as $custom) { |
|
| 339 | + echo ' |
|
| 324 | 340 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
| 341 | + } |
|
| 325 | 342 | |
| 326 | 343 | echo ' |
| 327 | 344 | </ol> |
@@ -329,25 +346,28 @@ discard block |
||
| 329 | 346 | } |
| 330 | 347 | |
| 331 | 348 | // Show the IP to this user for this post - because you can moderate? |
| 332 | - if (!empty($context['can_moderate_forum']) && !empty($message['member']['ip'])) |
|
| 333 | - echo ' |
|
| 349 | + if (!empty($context['can_moderate_forum']) && !empty($message['member']['ip'])) { |
|
| 350 | + echo ' |
|
| 334 | 351 | <li class="poster_ip"> |
| 335 | 352 | <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> |
| 336 | 353 | </li>'; |
| 354 | + } |
|
| 337 | 355 | |
| 338 | 356 | // Or, should we show it because this is you? |
| 339 | - elseif ($message['can_see_ip']) |
|
| 340 | - echo ' |
|
| 357 | + elseif ($message['can_see_ip']) { |
|
| 358 | + echo ' |
|
| 341 | 359 | <li class="poster_ip"> |
| 342 | 360 | <a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $message['member']['ip'], '</a> |
| 343 | 361 | </li>'; |
| 362 | + } |
|
| 344 | 363 | |
| 345 | 364 | // Okay, you are logged in, then we can show something about why IPs are logged... |
| 346 | - else |
|
| 347 | - echo ' |
|
| 365 | + else { |
|
| 366 | + echo ' |
|
| 348 | 367 | <li class="poster_ip"> |
| 349 | 368 | <a href="', $scripturl, '?action=helpadmin;help=see_member_ip" onclick="return reqOverlayDiv(this.href);" class="help">', $txt['logged'], '</a> |
| 350 | 369 | </li>'; |
| 370 | + } |
|
| 351 | 371 | |
| 352 | 372 | // Show the profile, website, email address, and personal message buttons. |
| 353 | 373 | if ($message['member']['show_profile_buttons']) |
@@ -357,24 +377,28 @@ discard block |
||
| 357 | 377 | <ol class="profile_icons">'; |
| 358 | 378 | |
| 359 | 379 | // Show the profile button |
| 360 | - if ($message['member']['can_view_profile']) |
|
| 361 | - echo ' |
|
| 380 | + if ($message['member']['can_view_profile']) { |
|
| 381 | + echo ' |
|
| 362 | 382 | <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>'; |
| 383 | + } |
|
| 363 | 384 | |
| 364 | 385 | // Don't show an icon if they haven't specified a website. |
| 365 | - if ($message['member']['website']['url'] != '' && !isset($context['disabled_fields']['website'])) |
|
| 366 | - echo ' |
|
| 386 | + if ($message['member']['website']['url'] != '' && !isset($context['disabled_fields']['website'])) { |
|
| 387 | + echo ' |
|
| 367 | 388 | <li><a href="', $message['member']['website']['url'], '" title="' . $message['member']['website']['title'] . '" target="_blank" rel="noopener">', ($settings['use_image_buttons'] ? '<span class="generic_icons www centericon" title="' . $message['member']['website']['title'] . '"></span>' : $txt['www']), '</a></li>'; |
| 389 | + } |
|
| 368 | 390 | |
| 369 | 391 | // Don't show the email address if they want it hidden. |
| 370 | - if ($message['member']['show_email']) |
|
| 371 | - echo ' |
|
| 392 | + if ($message['member']['show_email']) { |
|
| 393 | + echo ' |
|
| 372 | 394 | <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>'; |
| 395 | + } |
|
| 373 | 396 | |
| 374 | 397 | // Since we know this person isn't a guest, you *can* message them. |
| 375 | - if ($context['can_send_pm']) |
|
| 376 | - echo ' |
|
| 398 | + if ($context['can_send_pm']) { |
|
| 399 | + echo ' |
|
| 377 | 400 | <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>'; |
| 401 | + } |
|
| 378 | 402 | |
| 379 | 403 | echo ' |
| 380 | 404 | </ol> |
@@ -382,21 +406,24 @@ discard block |
||
| 382 | 406 | } |
| 383 | 407 | |
| 384 | 408 | // Any custom fields for standard placement? |
| 385 | - if (!empty($message['custom_fields']['standard'])) |
|
| 386 | - foreach ($message['custom_fields']['standard'] as $custom) |
|
| 409 | + if (!empty($message['custom_fields']['standard'])) { |
|
| 410 | + foreach ($message['custom_fields']['standard'] as $custom) |
|
| 387 | 411 | echo ' |
| 388 | 412 | <li class="custom ', $custom['col_name'] ,'">', $custom['title'], ': ', $custom['value'], '</li>'; |
| 413 | + } |
|
| 389 | 414 | |
| 390 | 415 | // Are we showing the warning status? |
| 391 | - if ($message['member']['can_see_warning']) |
|
| 392 | - echo ' |
|
| 416 | + if ($message['member']['can_see_warning']) { |
|
| 417 | + echo ' |
|
| 393 | 418 | <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>'; |
| 419 | + } |
|
| 394 | 420 | |
| 395 | 421 | // Are there any custom fields to show at the bottom of the poster info? |
| 396 | - if (!empty($message['custom_fields']['bottom_poster'])) |
|
| 397 | - foreach ($message['custom_fields']['bottom_poster'] as $custom) |
|
| 422 | + if (!empty($message['custom_fields']['bottom_poster'])) { |
|
| 423 | + foreach ($message['custom_fields']['bottom_poster'] as $custom) |
|
| 398 | 424 | echo ' |
| 399 | 425 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
| 426 | + } |
|
| 400 | 427 | } |
| 401 | 428 | |
| 402 | 429 | // Done with the information about the poster... on to the post itself. |
@@ -415,25 +442,29 @@ discard block |
||
| 415 | 442 | <span class="smalltext">« <strong> ', $txt['sent_to'], ':</strong> '; |
| 416 | 443 | |
| 417 | 444 | // People it was sent directly to.... |
| 418 | - if (!empty($message['recipients']['to'])) |
|
| 419 | - echo implode(', ', $message['recipients']['to']); |
|
| 445 | + if (!empty($message['recipients']['to'])) { |
|
| 446 | + echo implode(', ', $message['recipients']['to']); |
|
| 447 | + } |
|
| 420 | 448 | |
| 421 | 449 | // Otherwise, we're just going to say "some people"... |
| 422 | - elseif ($context['folder'] != 'sent') |
|
| 423 | - echo '(', $txt['pm_undisclosed_recipients'], ')'; |
|
| 450 | + elseif ($context['folder'] != 'sent') { |
|
| 451 | + echo '(', $txt['pm_undisclosed_recipients'], ')'; |
|
| 452 | + } |
|
| 424 | 453 | |
| 425 | 454 | echo ' |
| 426 | 455 | <strong> ', $txt['on'], ':</strong> ', $message['time'], ' » |
| 427 | 456 | </span>'; |
| 428 | 457 | |
| 429 | 458 | // If we're in the sent items, show who it was sent to besides the "To:" people. |
| 430 | - if (!empty($message['recipients']['bcc'])) |
|
| 431 | - echo '<br> |
|
| 459 | + if (!empty($message['recipients']['bcc'])) { |
|
| 460 | + echo '<br> |
|
| 432 | 461 | <span class="smalltext">« <strong> ', $txt['pm_bcc'], ':</strong> ', implode(', ', $message['recipients']['bcc']), ' »</span>'; |
| 462 | + } |
|
| 433 | 463 | |
| 434 | - if (!empty($message['is_replied_to'])) |
|
| 435 | - echo '<br> |
|
| 464 | + if (!empty($message['is_replied_to'])) { |
|
| 465 | + echo '<br> |
|
| 436 | 466 | <span class="smalltext">« ', $context['folder'] == 'sent' ? $txt['pm_sent_is_replied_to'] : $txt['pm_is_replied_to'], ' »</span>'; |
| 467 | + } |
|
| 437 | 468 | |
| 438 | 469 | echo ' |
| 439 | 470 | </div><!-- .keyinfo --> |
@@ -443,13 +474,15 @@ discard block |
||
| 443 | 474 | ', $message['body'], ' |
| 444 | 475 | </div>'; |
| 445 | 476 | |
| 446 | - if ($message['can_report'] || $context['can_send_pm']) |
|
| 447 | - echo ' |
|
| 477 | + if ($message['can_report'] || $context['can_send_pm']) { |
|
| 478 | + echo ' |
|
| 448 | 479 | <div class="under_message">'; |
| 480 | + } |
|
| 449 | 481 | |
| 450 | - if ($message['can_report']) |
|
| 451 | - echo ' |
|
| 482 | + if ($message['can_report']) { |
|
| 483 | + echo ' |
|
| 452 | 484 | <a href="' . $scripturl . '?action=pm;sa=report;l=' . $context['current_label_id'] . ';pmsg=' . $message['id'] . '" class="floatright">' . $txt['pm_report_to_admin'] . '</a>'; |
| 485 | + } |
|
| 453 | 486 | |
| 454 | 487 | echo ' |
| 455 | 488 | <ul class="quickbuttons">'; |
@@ -461,32 +494,36 @@ discard block |
||
| 461 | 494 | if (!$message['member']['is_guest']) |
| 462 | 495 | { |
| 463 | 496 | // Is there than more than one recipient you can reply to? |
| 464 | - if ($message['number_recipients'] > 1) |
|
| 465 | - echo ' |
|
| 497 | + if ($message['number_recipients'] > 1) { |
|
| 498 | + echo ' |
|
| 466 | 499 | <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>'; |
| 500 | + } |
|
| 467 | 501 | |
| 468 | 502 | echo ' |
| 469 | 503 | <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> |
| 470 | 504 | <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>'; |
| 471 | 505 | } |
| 472 | 506 | // This is for "forwarding" - even if the member is gone. |
| 473 | - else |
|
| 474 | - echo ' |
|
| 507 | + else { |
|
| 508 | + echo ' |
|
| 475 | 509 | <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>'; |
| 510 | + } |
|
| 476 | 511 | } |
| 477 | 512 | echo ' |
| 478 | 513 | <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>'; |
| 479 | 514 | |
| 480 | - if (empty($context['display_mode'])) |
|
| 481 | - echo ' |
|
| 515 | + if (empty($context['display_mode'])) { |
|
| 516 | + echo ' |
|
| 482 | 517 | <li><input type="checkbox" name="pms[]" id="deletedisplay', $message['id'], '" value="', $message['id'], '" onclick="document.getElementById(\'deletelisting', $message['id'], '\').checked = this.checked;"></li>'; |
| 518 | + } |
|
| 483 | 519 | |
| 484 | 520 | echo ' |
| 485 | 521 | </ul>'; |
| 486 | 522 | |
| 487 | - if ($message['can_report'] || $context['can_send_pm']) |
|
| 488 | - echo ' |
|
| 523 | + if ($message['can_report'] || $context['can_send_pm']) { |
|
| 524 | + echo ' |
|
| 489 | 525 | </div><!-- .under_message -->'; |
| 526 | + } |
|
| 490 | 527 | |
| 491 | 528 | // Are there any custom profile fields for above the signature? |
| 492 | 529 | if (!empty($message['custom_fields']['above_signature'])) |
@@ -495,9 +532,10 @@ discard block |
||
| 495 | 532 | <div class="custom_fields_above_signature"> |
| 496 | 533 | <ul class="nolist">'; |
| 497 | 534 | |
| 498 | - foreach ($message['custom_fields']['above_signature'] as $custom) |
|
| 499 | - echo ' |
|
| 535 | + foreach ($message['custom_fields']['above_signature'] as $custom) { |
|
| 536 | + echo ' |
|
| 500 | 537 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
| 538 | + } |
|
| 501 | 539 | |
| 502 | 540 | echo ' |
| 503 | 541 | </ul> |
@@ -505,11 +543,12 @@ discard block |
||
| 505 | 543 | } |
| 506 | 544 | |
| 507 | 545 | // Show the member's signature? |
| 508 | - if (!empty($message['member']['signature']) && empty($options['show_no_signatures']) && $context['signature_enabled']) |
|
| 509 | - echo ' |
|
| 546 | + if (!empty($message['member']['signature']) && empty($options['show_no_signatures']) && $context['signature_enabled']) { |
|
| 547 | + echo ' |
|
| 510 | 548 | <div class="signature"> |
| 511 | 549 | ', $message['member']['signature'], ' |
| 512 | 550 | </div>'; |
| 551 | + } |
|
| 513 | 552 | |
| 514 | 553 | // Are there any custom profile fields for below the signature? |
| 515 | 554 | if (!empty($message['custom_fields']['below_signature'])) |
@@ -518,9 +557,10 @@ discard block |
||
| 518 | 557 | <div class="custom_fields_below_signature"> |
| 519 | 558 | <ul class="nolist">'; |
| 520 | 559 | |
| 521 | - foreach ($message['custom_fields']['below_signature'] as $custom) |
|
| 522 | - echo ' |
|
| 560 | + foreach ($message['custom_fields']['below_signature'] as $custom) { |
|
| 561 | + echo ' |
|
| 523 | 562 | <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
| 563 | + } |
|
| 524 | 564 | |
| 525 | 565 | echo ' |
| 526 | 566 | </ul> |
@@ -547,10 +587,11 @@ discard block |
||
| 547 | 587 | echo ' |
| 548 | 588 | <option value="" disabled>', $txt['pm_msg_label_apply'], ':</option>'; |
| 549 | 589 | |
| 550 | - foreach ($context['labels'] as $label) |
|
| 551 | - if (!isset($message['labels'][$label['id']])) |
|
| 590 | + foreach ($context['labels'] as $label) { |
|
| 591 | + if (!isset($message['labels'][$label['id']])) |
|
| 552 | 592 | echo ' |
| 553 | 593 | <option value="', $label['id'], '">', $label['name'], '</option>'; |
| 594 | + } |
|
| 554 | 595 | } |
| 555 | 596 | |
| 556 | 597 | // ... and are there any that can be removed? |
@@ -559,9 +600,10 @@ discard block |
||
| 559 | 600 | echo ' |
| 560 | 601 | <option value="" disabled>', $txt['pm_msg_label_remove'], ':</option>'; |
| 561 | 602 | |
| 562 | - foreach ($message['labels'] as $label) |
|
| 563 | - echo ' |
|
| 603 | + foreach ($message['labels'] as $label) { |
|
| 604 | + echo ' |
|
| 564 | 605 | <option value="', $label['id'], '"> ', $label['name'], '</option>'; |
| 606 | + } |
|
| 565 | 607 | } |
| 566 | 608 | echo ' |
| 567 | 609 | </select> |
@@ -580,14 +622,15 @@ discard block |
||
| 580 | 622 | </div><!-- .windowbg -->'; |
| 581 | 623 | } |
| 582 | 624 | |
| 583 | - if (empty($context['display_mode'])) |
|
| 584 | - echo ' |
|
| 625 | + if (empty($context['display_mode'])) { |
|
| 626 | + echo ' |
|
| 585 | 627 | <div class="pagesection"> |
| 586 | 628 | <div class="floatleft">', $context['page_index'], '</div> |
| 587 | 629 | <div class="floatright"> |
| 588 | 630 | <input type="submit" name="del_selected" value="', $txt['quickmod_delete_selected'], '" onclick="if (!confirm(\'', $txt['delete_selected_confirm'], '\')) return false;" class="button"> |
| 589 | 631 | </div> |
| 590 | 632 | </div>'; |
| 633 | + } |
|
| 591 | 634 | |
| 592 | 635 | // Show a few buttons if we are in conversation mode and outputting the first message. |
| 593 | 636 | elseif ($context['display_mode'] == 2 && isset($context['conversation_buttons'])) |
@@ -647,11 +690,12 @@ discard block |
||
| 647 | 690 | </thead> |
| 648 | 691 | <tbody>'; |
| 649 | 692 | |
| 650 | - if (!$context['show_delete']) |
|
| 651 | - echo ' |
|
| 693 | + if (!$context['show_delete']) { |
|
| 694 | + echo ' |
|
| 652 | 695 | <tr class="windowbg"> |
| 653 | 696 | <td colspan="5">', $txt['pm_alert_none'], '</td> |
| 654 | 697 | </tr>'; |
| 698 | + } |
|
| 655 | 699 | |
| 656 | 700 | while ($message = $context['get_pmessage']('subject')) |
| 657 | 701 | { |
@@ -709,17 +753,19 @@ discard block |
||
| 709 | 753 | |
| 710 | 754 | foreach ($context['labels'] as $label) |
| 711 | 755 | { |
| 712 | - if ($label['id'] != $context['current_label_id']) |
|
| 713 | - echo ' |
|
| 756 | + if ($label['id'] != $context['current_label_id']) { |
|
| 757 | + echo ' |
|
| 714 | 758 | <option value="add_', $label['id'], '"> ', $label['name'], '</option>'; |
| 759 | + } |
|
| 715 | 760 | } |
| 716 | 761 | |
| 717 | 762 | echo ' |
| 718 | 763 | <option value="" disabled>', $txt['pm_msg_label_remove'], ':</option>'; |
| 719 | 764 | |
| 720 | - foreach ($context['labels'] as $label) |
|
| 721 | - echo ' |
|
| 765 | + foreach ($context['labels'] as $label) { |
|
| 766 | + echo ' |
|
| 722 | 767 | <option value="rem_', $label['id'], '"> ', $label['name'], '</option>'; |
| 768 | + } |
|
| 723 | 769 | |
| 724 | 770 | echo ' |
| 725 | 771 | </select> |
@@ -750,11 +796,12 @@ discard block |
||
| 750 | 796 | <h3 class="catbg">', $txt['pm_search_title'], '</h3> |
| 751 | 797 | </div>'; |
| 752 | 798 | |
| 753 | - if (!empty($context['search_errors'])) |
|
| 754 | - echo ' |
|
| 799 | + if (!empty($context['search_errors'])) { |
|
| 800 | + echo ' |
|
| 755 | 801 | <div class="errorbox"> |
| 756 | 802 | ', implode('<br>', $context['search_errors']['messages']), ' |
| 757 | 803 | </div>'; |
| 804 | + } |
|
| 758 | 805 | |
| 759 | 806 | |
| 760 | 807 | echo ' |
@@ -803,9 +850,10 @@ discard block |
||
| 803 | 850 | </dd> |
| 804 | 851 | </dl>'; |
| 805 | 852 | |
| 806 | - if (!$context['currently_using_labels']) |
|
| 807 | - echo ' |
|
| 853 | + if (!$context['currently_using_labels']) { |
|
| 854 | + echo ' |
|
| 808 | 855 | <input type="submit" name="pm_search" value="', $txt['pm_search_go'], '" class="button">'; |
| 856 | + } |
|
| 809 | 857 | |
| 810 | 858 | echo ' |
| 811 | 859 | <br class="clear_right"> |
@@ -826,12 +874,13 @@ discard block |
||
| 826 | 874 | <div id="advanced_panel_div"> |
| 827 | 875 | <ul id="searchLabelsExpand">'; |
| 828 | 876 | |
| 829 | - foreach ($context['search_labels'] as $label) |
|
| 830 | - echo ' |
|
| 877 | + foreach ($context['search_labels'] as $label) { |
|
| 878 | + echo ' |
|
| 831 | 879 | <li> |
| 832 | 880 | <label for="searchlabel_', $label['id'], '"><input type="checkbox" id="searchlabel_', $label['id'], '" name="searchlabel[', $label['id'], ']" value="', $label['id'], '"', $label['checked'] ? ' checked' : '', '> |
| 833 | 881 | ', $label['name'], '</label> |
| 834 | 882 | </li>'; |
| 883 | + } |
|
| 835 | 884 | |
| 836 | 885 | echo ' |
| 837 | 886 | </ul> |
@@ -893,8 +942,8 @@ discard block |
||
| 893 | 942 | </div>'; |
| 894 | 943 | |
| 895 | 944 | // Complete results? |
| 896 | - if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages'])) |
|
| 897 | - echo ' |
|
| 945 | + if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages'])) { |
|
| 946 | + echo ' |
|
| 898 | 947 | <table class="table_grid"> |
| 899 | 948 | <thead> |
| 900 | 949 | <tr class="title_bar"> |
@@ -904,6 +953,7 @@ discard block |
||
| 904 | 953 | </tr> |
| 905 | 954 | </thead> |
| 906 | 955 | <tbody>'; |
| 956 | + } |
|
| 907 | 957 | |
| 908 | 958 | // Print each message out... |
| 909 | 959 | foreach ($context['personal_messages'] as $message) |
@@ -923,12 +973,14 @@ discard block |
||
| 923 | 973 | |
| 924 | 974 | // Show the recipients. |
| 925 | 975 | // @todo This doesn't deal with the sent item searching quite right for bcc. |
| 926 | - if (!empty($message['recipients']['to'])) |
|
| 927 | - echo implode(', ', $message['recipients']['to']); |
|
| 976 | + if (!empty($message['recipients']['to'])) { |
|
| 977 | + echo implode(', ', $message['recipients']['to']); |
|
| 978 | + } |
|
| 928 | 979 | |
| 929 | 980 | // Otherwise, we're just going to say "some people"... |
| 930 | - elseif ($context['folder'] != 'sent') |
|
| 931 | - echo '(', $txt['pm_undisclosed_recipients'], ')'; |
|
| 981 | + elseif ($context['folder'] != 'sent') { |
|
| 982 | + echo '(', $txt['pm_undisclosed_recipients'], ')'; |
|
| 983 | + } |
|
| 932 | 984 | |
| 933 | 985 | echo ' |
| 934 | 986 | </h3> |
@@ -943,15 +995,17 @@ discard block |
||
| 943 | 995 | $reply_button = create_button('im_reply.png', 'reply', 'reply', 'class="centericon"'); |
| 944 | 996 | |
| 945 | 997 | // You can only reply if they are not a guest... |
| 946 | - if (!$message['member']['is_guest']) |
|
| 947 | - echo ' |
|
| 998 | + if (!$message['member']['is_guest']) { |
|
| 999 | + echo ' |
|
| 948 | 1000 | <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'], ' |
| 949 | 1001 | <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']; |
| 1002 | + } |
|
| 950 | 1003 | |
| 951 | 1004 | // This is for "forwarding" - even if the member is gone. |
| 952 | - else |
|
| 953 | - echo ' |
|
| 1005 | + else { |
|
| 1006 | + echo ' |
|
| 954 | 1007 | <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']; |
| 1008 | + } |
|
| 955 | 1009 | } |
| 956 | 1010 | |
| 957 | 1011 | echo ' |
@@ -960,27 +1014,30 @@ discard block |
||
| 960 | 1014 | } |
| 961 | 1015 | // Otherwise just a simple list! |
| 962 | 1016 | // @todo No context at all of the search? |
| 963 | - else |
|
| 964 | - echo ' |
|
| 1017 | + else { |
|
| 1018 | + echo ' |
|
| 965 | 1019 | <tr class="windowbg"> |
| 966 | 1020 | <td>', $message['time'], '</td> |
| 967 | 1021 | <td>', $message['link'], '</td> |
| 968 | 1022 | <td>', $message['member']['link'], '</td> |
| 969 | 1023 | </tr>'; |
| 1024 | + } |
|
| 970 | 1025 | } |
| 971 | 1026 | |
| 972 | 1027 | // Finish off the page... |
| 973 | - if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages'])) |
|
| 974 | - echo ' |
|
| 1028 | + if (empty($context['search_params']['show_complete']) && !empty($context['personal_messages'])) { |
|
| 1029 | + echo ' |
|
| 975 | 1030 | </tbody> |
| 976 | 1031 | </table>'; |
| 1032 | + } |
|
| 977 | 1033 | |
| 978 | 1034 | // No results? |
| 979 | - if (empty($context['personal_messages'])) |
|
| 980 | - echo ' |
|
| 1035 | + if (empty($context['personal_messages'])) { |
|
| 1036 | + echo ' |
|
| 981 | 1037 | <div class="windowbg"> |
| 982 | 1038 | <p class="centertext">', $txt['pm_search_none_found'], '</p> |
| 983 | 1039 | </div>'; |
| 1040 | + } |
|
| 984 | 1041 | |
| 985 | 1042 | echo ' |
| 986 | 1043 | <div class="pagesection"> |
@@ -1005,15 +1062,17 @@ discard block |
||
| 1005 | 1062 | </div> |
| 1006 | 1063 | <div class="windowbg">'; |
| 1007 | 1064 | |
| 1008 | - if (!empty($context['send_log']['sent'])) |
|
| 1009 | - foreach ($context['send_log']['sent'] as $log_entry) |
|
| 1065 | + if (!empty($context['send_log']['sent'])) { |
|
| 1066 | + foreach ($context['send_log']['sent'] as $log_entry) |
|
| 1010 | 1067 | echo ' |
| 1011 | 1068 | <span class="error">', $log_entry, '</span><br>'; |
| 1069 | + } |
|
| 1012 | 1070 | |
| 1013 | - if (!empty($context['send_log']['failed'])) |
|
| 1014 | - foreach ($context['send_log']['failed'] as $log_entry) |
|
| 1071 | + if (!empty($context['send_log']['failed'])) { |
|
| 1072 | + foreach ($context['send_log']['failed'] as $log_entry) |
|
| 1015 | 1073 | echo ' |
| 1016 | 1074 | <span class="error">', $log_entry, '</span><br>'; |
| 1075 | + } |
|
| 1017 | 1076 | |
| 1018 | 1077 | echo ' |
| 1019 | 1078 | </div> |
@@ -1061,12 +1120,13 @@ discard block |
||
| 1061 | 1120 | </dl> |
| 1062 | 1121 | </div>'; |
| 1063 | 1122 | |
| 1064 | - if (!empty($modSettings['drafts_pm_enabled'])) |
|
| 1065 | - echo ' |
|
| 1123 | + if (!empty($modSettings['drafts_pm_enabled'])) { |
|
| 1124 | + echo ' |
|
| 1066 | 1125 | <div id="draft_section" class="infobox"', isset($context['draft_saved']) ? '' : ' style="display: none;"', '>', |
| 1067 | 1126 | sprintf($txt['draft_pm_saved'], $scripturl . '?action=pm;sa=showpmdrafts'), ' |
| 1068 | 1127 | ', (!empty($modSettings['drafts_keep_days']) ? ' <strong>' . sprintf($txt['draft_save_warning'], $modSettings['drafts_keep_days']) . '</strong>' : ''), ' |
| 1069 | 1128 | </div>'; |
| 1129 | + } |
|
| 1070 | 1130 | |
| 1071 | 1131 | echo ' |
| 1072 | 1132 | <dl id="post_header">'; |
@@ -1132,22 +1192,24 @@ discard block |
||
| 1132 | 1192 | <dt><strong>', $txt['subject'], '</strong></dt> |
| 1133 | 1193 | <dd><strong>', $txt['draft_saved_on'], '</strong></dd>'; |
| 1134 | 1194 | |
| 1135 | - foreach ($context['drafts'] as $draft) |
|
| 1136 | - echo ' |
|
| 1195 | + foreach ($context['drafts'] as $draft) { |
|
| 1196 | + echo ' |
|
| 1137 | 1197 | <dt>', $draft['link'], '</dt> |
| 1138 | 1198 | <dd>', $draft['poster_time'], '</dd>'; |
| 1199 | + } |
|
| 1139 | 1200 | echo ' |
| 1140 | 1201 | </dl> |
| 1141 | 1202 | </div>'; |
| 1142 | 1203 | } |
| 1143 | 1204 | |
| 1144 | 1205 | // Require an image to be typed to save spamming? |
| 1145 | - if ($context['require_verification']) |
|
| 1146 | - echo ' |
|
| 1206 | + if ($context['require_verification']) { |
|
| 1207 | + echo ' |
|
| 1147 | 1208 | <div class="post_verification"> |
| 1148 | 1209 | <strong>', $txt['pm_visual_verification_label'], ':</strong> |
| 1149 | 1210 | ', template_control_verification($context['visual_verification_id'], 'all'), ' |
| 1150 | 1211 | </div>'; |
| 1212 | + } |
|
| 1151 | 1213 | |
| 1152 | 1214 | // Send, Preview, spellcheck buttons. |
| 1153 | 1215 | echo ' |
@@ -1265,8 +1327,8 @@ discard block |
||
| 1265 | 1327 | }'; |
| 1266 | 1328 | |
| 1267 | 1329 | // Code for showing and hiding drafts |
| 1268 | - if (!empty($context['drafts'])) |
|
| 1269 | - echo ' |
|
| 1330 | + if (!empty($context['drafts'])) { |
|
| 1331 | + echo ' |
|
| 1270 | 1332 | var oSwapDraftOptions = new smc_Toggle({ |
| 1271 | 1333 | bToggleEnabled: true, |
| 1272 | 1334 | bCurrentlyCollapsed: true, |
@@ -1288,13 +1350,14 @@ discard block |
||
| 1288 | 1350 | } |
| 1289 | 1351 | ] |
| 1290 | 1352 | });'; |
| 1353 | + } |
|
| 1291 | 1354 | |
| 1292 | 1355 | echo ' |
| 1293 | 1356 | </script>'; |
| 1294 | 1357 | |
| 1295 | 1358 | // Show the message you're replying to. |
| 1296 | - if ($context['reply']) |
|
| 1297 | - echo ' |
|
| 1359 | + if ($context['reply']) { |
|
| 1360 | + echo ' |
|
| 1298 | 1361 | <br><br> |
| 1299 | 1362 | <div class="cat_bar"> |
| 1300 | 1363 | <h3 class="catbg">', $txt['subject'], ': ', $context['quoted_message']['subject'], '</h3> |
@@ -1308,6 +1371,7 @@ discard block |
||
| 1308 | 1371 | ', $context['quoted_message']['body'], ' |
| 1309 | 1372 | </div> |
| 1310 | 1373 | <br class="clear">'; |
| 1374 | + } |
|
| 1311 | 1375 | |
| 1312 | 1376 | echo ' |
| 1313 | 1377 | <script> |
@@ -1319,23 +1383,25 @@ discard block |
||
| 1319 | 1383 | sToControlId: \'to_control\', |
| 1320 | 1384 | aToRecipients: ['; |
| 1321 | 1385 | |
| 1322 | - foreach ($context['recipients']['to'] as $i => $member) |
|
| 1323 | - echo ' |
|
| 1386 | + foreach ($context['recipients']['to'] as $i => $member) { |
|
| 1387 | + echo ' |
|
| 1324 | 1388 | { |
| 1325 | 1389 | sItemId: ', JavaScriptEscape($member['id']), ', |
| 1326 | 1390 | sItemName: ', JavaScriptEscape($member['name']), ' |
| 1327 | 1391 | }', $i == count($context['recipients']['to']) - 1 ? '' : ','; |
| 1392 | + } |
|
| 1328 | 1393 | |
| 1329 | 1394 | echo ' |
| 1330 | 1395 | ], |
| 1331 | 1396 | aBccRecipients: ['; |
| 1332 | 1397 | |
| 1333 | - foreach ($context['recipients']['bcc'] as $i => $member) |
|
| 1334 | - echo ' |
|
| 1398 | + foreach ($context['recipients']['bcc'] as $i => $member) { |
|
| 1399 | + echo ' |
|
| 1335 | 1400 | { |
| 1336 | 1401 | sItemId: ', JavaScriptEscape($member['id']), ', |
| 1337 | 1402 | sItemName: ', JavaScriptEscape($member['name']), ' |
| 1338 | 1403 | }', $i == count($context['recipients']['bcc']) - 1 ? '' : ','; |
| 1404 | + } |
|
| 1339 | 1405 | |
| 1340 | 1406 | echo ' |
| 1341 | 1407 | ], |
@@ -1424,26 +1490,28 @@ discard block |
||
| 1424 | 1490 | </th> |
| 1425 | 1491 | <th class="centertext table_icon">'; |
| 1426 | 1492 | |
| 1427 | - if (count($context['labels']) > 2) |
|
| 1428 | - echo ' |
|
| 1493 | + if (count($context['labels']) > 2) { |
|
| 1494 | + echo ' |
|
| 1429 | 1495 | <input type="checkbox" onclick="invertAll(this, this.form);">'; |
| 1496 | + } |
|
| 1430 | 1497 | |
| 1431 | 1498 | echo ' |
| 1432 | 1499 | </th> |
| 1433 | 1500 | </tr> |
| 1434 | 1501 | </thead> |
| 1435 | 1502 | <tbody>'; |
| 1436 | - if (count($context['labels']) < 2) |
|
| 1437 | - echo ' |
|
| 1503 | + if (count($context['labels']) < 2) { |
|
| 1504 | + echo ' |
|
| 1438 | 1505 | <tr class="windowbg"> |
| 1439 | 1506 | <td colspan="2">', $txt['pm_labels_no_exist'], '</td> |
| 1440 | 1507 | </tr>'; |
| 1441 | - else |
|
| 1508 | + } else |
|
| 1442 | 1509 | { |
| 1443 | 1510 | foreach ($context['labels'] as $label) |
| 1444 | 1511 | { |
| 1445 | - if ($label['id'] == -1) |
|
| 1446 | - continue; |
|
| 1512 | + if ($label['id'] == -1) { |
|
| 1513 | + continue; |
|
| 1514 | + } |
|
| 1447 | 1515 | |
| 1448 | 1516 | echo ' |
| 1449 | 1517 | <tr class="windowbg"> |
@@ -1458,12 +1526,13 @@ discard block |
||
| 1458 | 1526 | </tbody> |
| 1459 | 1527 | </table>'; |
| 1460 | 1528 | |
| 1461 | - if (!count($context['labels']) < 2) |
|
| 1462 | - echo ' |
|
| 1529 | + if (!count($context['labels']) < 2) { |
|
| 1530 | + echo ' |
|
| 1463 | 1531 | <div class="padding"> |
| 1464 | 1532 | <input type="submit" name="save" value="', $txt['save'], '" class="button"> |
| 1465 | 1533 | <input type="submit" name="delete" value="', $txt['quickmod_delete_selected'], '" data-confirm="', $txt['pm_labels_delete'] ,'" class="button you_sure"> |
| 1466 | 1534 | </div>'; |
| 1535 | + } |
|
| 1467 | 1536 | |
| 1468 | 1537 | echo ' |
| 1469 | 1538 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -1520,9 +1589,10 @@ discard block |
||
| 1520 | 1589 | <select name="id_admin"> |
| 1521 | 1590 | <option value="0">', $txt['pm_report_all_admins'], '</option>'; |
| 1522 | 1591 | |
| 1523 | - foreach ($context['admins'] as $id => $name) |
|
| 1524 | - echo ' |
|
| 1592 | + foreach ($context['admins'] as $id => $name) { |
|
| 1593 | + echo ' |
|
| 1525 | 1594 | <option value="', $id, '">', $name, '</option>'; |
| 1595 | + } |
|
| 1526 | 1596 | |
| 1527 | 1597 | echo ' |
| 1528 | 1598 | </select> |
@@ -1585,9 +1655,10 @@ discard block |
||
| 1585 | 1655 | </th> |
| 1586 | 1656 | <th class="centertext table_icon">'; |
| 1587 | 1657 | |
| 1588 | - if (!empty($context['rules'])) |
|
| 1589 | - echo ' |
|
| 1658 | + if (!empty($context['rules'])) { |
|
| 1659 | + echo ' |
|
| 1590 | 1660 | <input type="checkbox" onclick="invertAll(this, this.form);">'; |
| 1661 | + } |
|
| 1591 | 1662 | |
| 1592 | 1663 | echo ' |
| 1593 | 1664 | </th> |
@@ -1595,16 +1666,17 @@ discard block |
||
| 1595 | 1666 | </thead> |
| 1596 | 1667 | <tbody>'; |
| 1597 | 1668 | |
| 1598 | - if (empty($context['rules'])) |
|
| 1599 | - echo ' |
|
| 1669 | + if (empty($context['rules'])) { |
|
| 1670 | + echo ' |
|
| 1600 | 1671 | <tr class="windowbg"> |
| 1601 | 1672 | <td colspan="2"> |
| 1602 | 1673 | ', $txt['pm_rules_none'], ' |
| 1603 | 1674 | </td> |
| 1604 | 1675 | </tr>'; |
| 1676 | + } |
|
| 1605 | 1677 | |
| 1606 | - foreach ($context['rules'] as $rule) |
|
| 1607 | - echo ' |
|
| 1678 | + foreach ($context['rules'] as $rule) { |
|
| 1679 | + echo ' |
|
| 1608 | 1680 | <tr class="windowbg"> |
| 1609 | 1681 | <td> |
| 1610 | 1682 | <a href="', $scripturl, '?action=pm;sa=manrules;add;rid=', $rule['id'], '">', $rule['name'], '</a> |
@@ -1613,6 +1685,7 @@ discard block |
||
| 1613 | 1685 | <input type="checkbox" name="delrule[', $rule['id'], ']"> |
| 1614 | 1686 | </td> |
| 1615 | 1687 | </tr>'; |
| 1688 | + } |
|
| 1616 | 1689 | |
| 1617 | 1690 | echo ' |
| 1618 | 1691 | </tbody> |
@@ -1620,14 +1693,16 @@ discard block |
||
| 1620 | 1693 | <div class="righttext"> |
| 1621 | 1694 | <a class="button" href="', $scripturl, '?action=pm;sa=manrules;add;rid=0">', $txt['pm_add_rule'], '</a>'; |
| 1622 | 1695 | |
| 1623 | - if (!empty($context['rules'])) |
|
| 1624 | - echo ' |
|
| 1696 | + if (!empty($context['rules'])) { |
|
| 1697 | + echo ' |
|
| 1625 | 1698 | [<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>]'; |
| 1699 | + } |
|
| 1626 | 1700 | |
| 1627 | - if (!empty($context['rules'])) |
|
| 1628 | - echo ' |
|
| 1701 | + if (!empty($context['rules'])) { |
|
| 1702 | + echo ' |
|
| 1629 | 1703 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
| 1630 | 1704 | <input type="submit" name="delselected" value="', $txt['pm_delete_selected_rule'], '" data-confirm="', $txt['pm_js_delete_rule_confirm'] ,'" class="button smalltext you_sure">'; |
| 1705 | + } |
|
| 1631 | 1706 | |
| 1632 | 1707 | echo ' |
| 1633 | 1708 | </div> |
@@ -1649,14 +1724,16 @@ discard block |
||
| 1649 | 1724 | var groups = new Array() |
| 1650 | 1725 | var labels = new Array()'; |
| 1651 | 1726 | |
| 1652 | - foreach ($context['groups'] as $id => $title) |
|
| 1653 | - echo ' |
|
| 1727 | + foreach ($context['groups'] as $id => $title) { |
|
| 1728 | + echo ' |
|
| 1654 | 1729 | groups[', $id, '] = "', addslashes($title), '";'; |
| 1730 | + } |
|
| 1655 | 1731 | |
| 1656 | - foreach ($context['labels'] as $label) |
|
| 1657 | - if ($label['id'] != -1) |
|
| 1732 | + foreach ($context['labels'] as $label) { |
|
| 1733 | + if ($label['id'] != -1) |
|
| 1658 | 1734 | echo ' |
| 1659 | 1735 | labels[', ($label['id']), '] = "', addslashes($label['name']), '";'; |
| 1736 | + } |
|
| 1660 | 1737 | |
| 1661 | 1738 | echo ' |
| 1662 | 1739 | function addCriteriaOption() |
@@ -1671,8 +1748,9 @@ discard block |
||
| 1671 | 1748 | |
| 1672 | 1749 | 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=""><\' + \'/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>'; |
| 1673 | 1750 | |
| 1674 | - foreach ($context['groups'] as $id => $group) |
|
| 1675 | - echo '<option value="', $id, '">', strtr($group, array("'" => "\'")), '<\' + \'/option>'; |
|
| 1751 | + foreach ($context['groups'] as $id => $group) { |
|
| 1752 | + echo '<option value="', $id, '">', strtr($group, array("'" => "\'")), '<\' + \'/option>'; |
|
| 1753 | + } |
|
| 1676 | 1754 | |
| 1677 | 1755 | echo '<\' + \'/select><\' + \'/span><span id="criteriaAddHere"><\' + \'/span>\'); |
| 1678 | 1756 | } |
@@ -1689,9 +1767,10 @@ discard block |
||
| 1689 | 1767 | |
| 1690 | 1768 | 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>'; |
| 1691 | 1769 | |
| 1692 | - foreach ($context['labels'] as $label) |
|
| 1693 | - if ($label['id'] != -1) |
|
| 1770 | + foreach ($context['labels'] as $label) { |
|
| 1771 | + if ($label['id'] != -1) |
|
| 1694 | 1772 | echo '<option value="', ($label['id']), '">', addslashes($label['name']), '<\' + \'/option>'; |
| 1773 | + } |
|
| 1695 | 1774 | |
| 1696 | 1775 | echo '<\' + \'/select><\' + \'/span><span id="actionAddHere"><\' + \'/span>\'); |
| 1697 | 1776 | } |
@@ -1805,19 +1884,20 @@ discard block |
||
| 1805 | 1884 | $isFirst = true; |
| 1806 | 1885 | foreach ($context['rule']['criteria'] as $k => $criteria) |
| 1807 | 1886 | { |
| 1808 | - if (!$isFirst && $criteria['t'] == '') |
|
| 1809 | - echo '<div id="removeonjs1">'; |
|
| 1810 | - |
|
| 1811 | - elseif (!$isFirst) |
|
| 1812 | - echo '<br>'; |
|
| 1887 | + if (!$isFirst && $criteria['t'] == '') { |
|
| 1888 | + echo '<div id="removeonjs1">'; |
|
| 1889 | + } elseif (!$isFirst) { |
|
| 1890 | + echo '<br>'; |
|
| 1891 | + } |
|
| 1813 | 1892 | |
| 1814 | 1893 | echo ' |
| 1815 | 1894 | <select name="ruletype[', $k, ']" id="ruletype', $k, '" onchange="updateRuleDef(', $k, '); rebuildRuleDesc();"> |
| 1816 | 1895 | <option value="">', $txt['pm_rule_criteria_pick'], ':</option>'; |
| 1817 | 1896 | |
| 1818 | - foreach (array('mid', 'gid', 'sub', 'msg', 'bud') as $cr) |
|
| 1819 | - echo ' |
|
| 1897 | + foreach (array('mid', 'gid', 'sub', 'msg', 'bud') as $cr) { |
|
| 1898 | + echo ' |
|
| 1820 | 1899 | <option value="', $cr, '"', $criteria['t'] == $cr ? ' selected' : '', '>', $txt['pm_rule_' . $cr], '</option>'; |
| 1900 | + } |
|
| 1821 | 1901 | |
| 1822 | 1902 | echo ' |
| 1823 | 1903 | </select> |
@@ -1828,19 +1908,20 @@ discard block |
||
| 1828 | 1908 | <select name="ruledefgroup[', $k, ']" id="ruledefgroup', $k, '" onchange="rebuildRuleDesc();"> |
| 1829 | 1909 | <option value="">', $txt['pm_rule_sel_group'], '</option>'; |
| 1830 | 1910 | |
| 1831 | - foreach ($context['groups'] as $id => $group) |
|
| 1832 | - echo ' |
|
| 1911 | + foreach ($context['groups'] as $id => $group) { |
|
| 1912 | + echo ' |
|
| 1833 | 1913 | <option value="', $id, '"', $criteria['t'] == 'gid' && $criteria['v'] == $id ? ' selected' : '', '>', $group, '</option>'; |
| 1914 | + } |
|
| 1834 | 1915 | echo ' |
| 1835 | 1916 | </select> |
| 1836 | 1917 | </span>'; |
| 1837 | 1918 | |
| 1838 | 1919 | // If this is the dummy we add a means to hide for non js users. |
| 1839 | - if ($isFirst) |
|
| 1840 | - $isFirst = false; |
|
| 1841 | - |
|
| 1842 | - elseif ($criteria['t'] == '') |
|
| 1843 | - echo '</div><!-- .removeonjs1 -->'; |
|
| 1920 | + if ($isFirst) { |
|
| 1921 | + $isFirst = false; |
|
| 1922 | + } elseif ($criteria['t'] == '') { |
|
| 1923 | + echo '</div><!-- .removeonjs1 -->'; |
|
| 1924 | + } |
|
| 1844 | 1925 | } |
| 1845 | 1926 | |
| 1846 | 1927 | echo ' |
@@ -1863,10 +1944,11 @@ discard block |
||
| 1863 | 1944 | $isFirst = true; |
| 1864 | 1945 | foreach ($context['rule']['actions'] as $k => $action) |
| 1865 | 1946 | { |
| 1866 | - if (!$isFirst && $action['t'] == '') |
|
| 1867 | - echo '<div id="removeonjs2">'; |
|
| 1868 | - elseif (!$isFirst) |
|
| 1869 | - echo '<br>'; |
|
| 1947 | + if (!$isFirst && $action['t'] == '') { |
|
| 1948 | + echo '<div id="removeonjs2">'; |
|
| 1949 | + } elseif (!$isFirst) { |
|
| 1950 | + echo '<br>'; |
|
| 1951 | + } |
|
| 1870 | 1952 | |
| 1871 | 1953 | echo ' |
| 1872 | 1954 | <select name="acttype[', $k, ']" id="acttype', $k, '" onchange="updateActionDef(', $k, '); rebuildRuleDesc();"> |
@@ -1878,20 +1960,21 @@ discard block |
||
| 1878 | 1960 | <select name="labdef[', $k, ']" id="labdef', $k, '" onchange="rebuildRuleDesc();"> |
| 1879 | 1961 | <option value="">', $txt['pm_rule_sel_label'], '</option>'; |
| 1880 | 1962 | |
| 1881 | - foreach ($context['labels'] as $label) |
|
| 1882 | - if ($label['id'] != -1) |
|
| 1963 | + foreach ($context['labels'] as $label) { |
|
| 1964 | + if ($label['id'] != -1) |
|
| 1883 | 1965 | echo ' |
| 1884 | 1966 | <option value="', ($label['id']), '"', $action['t'] == 'lab' && $action['v'] == $label['id'] ? ' selected' : '', '>', $label['name'], '</option>'; |
| 1967 | + } |
|
| 1885 | 1968 | |
| 1886 | 1969 | echo ' |
| 1887 | 1970 | </select> |
| 1888 | 1971 | </span>'; |
| 1889 | 1972 | |
| 1890 | - if ($isFirst) |
|
| 1891 | - $isFirst = false; |
|
| 1892 | - |
|
| 1893 | - elseif ($action['t'] == '') |
|
| 1894 | - echo '</div><!-- .removeonjs2 -->'; |
|
| 1973 | + if ($isFirst) { |
|
| 1974 | + $isFirst = false; |
|
| 1975 | + } elseif ($action['t'] == '') { |
|
| 1976 | + echo '</div><!-- .removeonjs2 -->'; |
|
| 1977 | + } |
|
| 1895 | 1978 | } |
| 1896 | 1979 | |
| 1897 | 1980 | echo ' |
@@ -1915,22 +1998,25 @@ discard block |
||
| 1915 | 1998 | echo ' |
| 1916 | 1999 | <script>'; |
| 1917 | 2000 | |
| 1918 | - foreach ($context['rule']['criteria'] as $k => $c) |
|
| 1919 | - echo ' |
|
| 2001 | + foreach ($context['rule']['criteria'] as $k => $c) { |
|
| 2002 | + echo ' |
|
| 1920 | 2003 | updateRuleDef(', $k, ');'; |
| 2004 | + } |
|
| 1921 | 2005 | |
| 1922 | - foreach ($context['rule']['actions'] as $k => $c) |
|
| 1923 | - echo ' |
|
| 2006 | + foreach ($context['rule']['actions'] as $k => $c) { |
|
| 2007 | + echo ' |
|
| 1924 | 2008 | updateActionDef(', $k, ');'; |
| 2009 | + } |
|
| 1925 | 2010 | |
| 1926 | 2011 | echo ' |
| 1927 | 2012 | rebuildRuleDesc();'; |
| 1928 | 2013 | |
| 1929 | 2014 | // If this isn't a new rule and we have JS enabled remove the JS compatibility stuff. |
| 1930 | - if ($context['rid']) |
|
| 1931 | - echo ' |
|
| 2015 | + if ($context['rid']) { |
|
| 2016 | + echo ' |
|
| 1932 | 2017 | document.getElementById("removeonjs1").style.display = "none"; |
| 1933 | 2018 | document.getElementById("removeonjs2").style.display = "none";'; |
| 2019 | + } |
|
| 1934 | 2020 | |
| 1935 | 2021 | echo ' |
| 1936 | 2022 | document.getElementById("addonjs1").style.display = ""; |
@@ -1958,12 +2044,12 @@ discard block |
||
| 1958 | 2044 | </div>'; |
| 1959 | 2045 | |
| 1960 | 2046 | // No drafts? Just show an informative message. |
| 1961 | - if (empty($context['drafts'])) |
|
| 1962 | - echo ' |
|
| 2047 | + if (empty($context['drafts'])) { |
|
| 2048 | + echo ' |
|
| 1963 | 2049 | <div class="windowbg centertext"> |
| 1964 | 2050 | ', $txt['draft_none'], ' |
| 1965 | 2051 | </div>'; |
| 1966 | - else |
|
| 2052 | + } else |
|
| 1967 | 2053 | { |
| 1968 | 2054 | // For every draft to be displayed, give it its own div, and show the important details of the draft. |
| 1969 | 2055 | foreach ($context['drafts'] as $draft) |
@@ -25,18 +25,20 @@ discard block |
||
| 25 | 25 | </div> |
| 26 | 26 | <div class="windowbg noup">'; |
| 27 | 27 | |
| 28 | - if (!empty($context['move_board'])) |
|
| 29 | - echo ' |
|
| 28 | + if (!empty($context['move_board'])) { |
|
| 29 | + echo ' |
|
| 30 | 30 | <div class="noticebox"> |
| 31 | 31 | ', $context['move_title'], ' [<a href="', $scripturl, '?action=admin;area=manageboards">', $txt['mboards_cancel_moving'], '</a>]', ' |
| 32 | 32 | </div>'; |
| 33 | + } |
|
| 33 | 34 | |
| 34 | 35 | // No categories so show a label. |
| 35 | - if (empty($context['categories'])) |
|
| 36 | - echo ' |
|
| 36 | + if (empty($context['categories'])) { |
|
| 37 | + echo ' |
|
| 37 | 38 | <div class="windowbg centertext"> |
| 38 | 39 | ', $txt['mboards_no_cats'], ' |
| 39 | 40 | </div>'; |
| 41 | + } |
|
| 40 | 42 | |
| 41 | 43 | // Loop through every category, listing the boards in each as we go. |
| 42 | 44 | foreach ($context['categories'] as $category) |
@@ -54,9 +56,10 @@ discard block |
||
| 54 | 56 | <form action="', $scripturl, '?action=admin;area=manageboards;sa=newboard;cat=', $category['id'], '" method="post" accept-charset="', $context['character_set'], '"> |
| 55 | 57 | <ul id="category_', $category['id'], '" class="nolist">'; |
| 56 | 58 | |
| 57 | - if (!empty($category['move_link'])) |
|
| 58 | - echo ' |
|
| 59 | + if (!empty($category['move_link'])) { |
|
| 60 | + echo ' |
|
| 59 | 61 | <li><a href="', $category['move_link']['href'], '" title="', $category['move_link']['label'], '"><span class="generic_icons select_above"></span></a></li>'; |
| 62 | + } |
|
| 60 | 63 | |
| 61 | 64 | $recycle_board = '<a href="' . $scripturl . '?action=admin;area=manageboards;sa=settings"> <img src="' . $settings['images_url'] . '/post/recycled.png" alt="' . $txt['recycle_board'] . '" title="' . $txt['recycle_board'] . '"></a>'; |
| 62 | 65 | $redirect_board = '<img src="' . $settings['images_url'] . '/new_redirect.png" alt="' . $txt['redirect_board_desc'] . '" title="' . $txt['redirect_board_desc'] . '">'; |
@@ -79,9 +82,10 @@ discard block |
||
| 79 | 82 | echo ' |
| 80 | 83 | <li class="windowbg" style="padding-', $context['right_to_left'] ? 'right' : 'left', ': ', 5 + 30 * $board['move_links'][0]['child_level'], 'px;">'; |
| 81 | 84 | |
| 82 | - foreach ($board['move_links'] as $link) |
|
| 83 | - echo ' |
|
| 85 | + foreach ($board['move_links'] as $link) { |
|
| 86 | + echo ' |
|
| 84 | 87 | <a href="', $link['href'], '" class="move_links" title="', $link['label'], '"><span class="generic_icons select_', $link['class'], '" title="', $link['label'], '"></span></a>'; |
| 88 | + } |
|
| 85 | 89 | |
| 86 | 90 | echo ' |
| 87 | 91 | </li>'; |
@@ -130,9 +134,10 @@ discard block |
||
| 130 | 134 | <select name="cat_order">'; |
| 131 | 135 | |
| 132 | 136 | // Print every existing category into a select box. |
| 133 | - foreach ($context['category_order'] as $order) |
|
| 134 | - echo ' |
|
| 137 | + foreach ($context['category_order'] as $order) { |
|
| 138 | + echo ' |
|
| 135 | 139 | <option', $order['selected'] ? ' selected' : '', ' value="', $order['id'], '">', $order['name'], '</option>'; |
| 140 | + } |
|
| 136 | 141 | echo ' |
| 137 | 142 | </select> |
| 138 | 143 | </dd>'; |
@@ -167,14 +172,15 @@ discard block |
||
| 167 | 172 | { |
| 168 | 173 | foreach ($context['custom_category_settings'] as $catset_id => $catset) |
| 169 | 174 | { |
| 170 | - if (!empty($catset['dt']) && !empty($catset['dd'])) |
|
| 171 | - echo ' |
|
| 175 | + if (!empty($catset['dt']) && !empty($catset['dd'])) { |
|
| 176 | + echo ' |
|
| 172 | 177 | <dt class="clear', !is_numeric($catset_id) ? ' catset_' . $catset_id : '', '"> |
| 173 | 178 | ', $catset['dt'], ' |
| 174 | 179 | </dt> |
| 175 | 180 | <dd', !is_numeric($catset_id) ? ' class="catset_' . $catset_id . '"' : '', '> |
| 176 | 181 | ', $catset['dd'], ' |
| 177 | 182 | </dd>'; |
| 183 | + } |
|
| 178 | 184 | } |
| 179 | 185 | } |
| 180 | 186 | |
@@ -182,21 +188,23 @@ discard block |
||
| 182 | 188 | echo ' |
| 183 | 189 | </dl>'; |
| 184 | 190 | |
| 185 | - if (isset($context['category']['is_new'])) |
|
| 186 | - echo ' |
|
| 191 | + if (isset($context['category']['is_new'])) { |
|
| 192 | + echo ' |
|
| 187 | 193 | <input type="submit" name="add" value="', $txt['mboards_add_cat_button'], '" onclick="return !isEmptyText(this.form.cat_name);" tabindex="', $context['tabindex']++, '" class="button">'; |
| 188 | - else |
|
| 189 | - echo ' |
|
| 194 | + } else { |
|
| 195 | + echo ' |
|
| 190 | 196 | <input type="submit" name="edit" value="', $txt['modify'], '" onclick="return !isEmptyText(this.form.cat_name);" tabindex="', $context['tabindex']++, '" class="button"> |
| 191 | 197 | <input type="submit" name="delete" value="', $txt['mboards_delete_cat'], '" data-confirm="', $txt['catConfirm'], '" class="button you_sure">'; |
| 198 | + } |
|
| 192 | 199 | echo ' |
| 193 | 200 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
| 194 | 201 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
| 195 | 202 | |
| 196 | 203 | // If this category is empty we don't bother with the next confirmation screen. |
| 197 | - if ($context['category']['is_empty']) |
|
| 198 | - echo ' |
|
| 204 | + if ($context['category']['is_empty']) { |
|
| 205 | + echo ' |
|
| 199 | 206 | <input type="hidden" name="empty" value="1">'; |
| 207 | + } |
|
| 200 | 208 | |
| 201 | 209 | echo ' |
| 202 | 210 | </div><!-- .windowbg --> |
@@ -223,9 +231,10 @@ discard block |
||
| 223 | 231 | <p>', $txt['mboards_delete_cat_contains'], ':</p> |
| 224 | 232 | <ul>'; |
| 225 | 233 | |
| 226 | - foreach ($context['category']['children'] as $child) |
|
| 227 | - echo ' |
|
| 234 | + foreach ($context['category']['children'] as $child) { |
|
| 235 | + echo ' |
|
| 228 | 236 | <li>', $child, '</li>'; |
| 237 | + } |
|
| 229 | 238 | |
| 230 | 239 | echo ' |
| 231 | 240 | </ul> |
@@ -239,10 +248,11 @@ discard block |
||
| 239 | 248 | <label for="delete_action1"><input type="radio" id="delete_action1" name="delete_action" value="1"', count($context['category_order']) == 1 ? ' disabled' : '', '>', $txt['mboards_delete_option2'], '</label>: |
| 240 | 249 | <select name="cat_to"', count($context['category_order']) == 1 ? ' disabled' : '', '>'; |
| 241 | 250 | |
| 242 | - foreach ($context['category_order'] as $cat) |
|
| 243 | - if ($cat['id'] != 0) |
|
| 251 | + foreach ($context['category_order'] as $cat) { |
|
| 252 | + if ($cat['id'] != 0) |
|
| 244 | 253 | echo ' |
| 245 | 254 | <option value="', $cat['id'], '">', $cat['true_name'], '</option>'; |
| 255 | + } |
|
| 246 | 256 | |
| 247 | 257 | echo ' |
| 248 | 258 | </select> |
@@ -285,9 +295,10 @@ discard block |
||
| 285 | 295 | <dd> |
| 286 | 296 | <select name="new_cat" onchange="if (this.form.order) {this.form.order.disabled = this.options[this.selectedIndex].value != 0; this.form.board_order.disabled = this.options[this.selectedIndex].value != 0 || this.form.order.options[this.form.order.selectedIndex].value == \'\';}">'; |
| 287 | 297 | |
| 288 | - foreach ($context['categories'] as $category) |
|
| 289 | - echo ' |
|
| 298 | + foreach ($context['categories'] as $category) { |
|
| 299 | + echo ' |
|
| 290 | 300 | <option', $category['selected'] ? ' selected' : '', ' value="', $category['id'], '">', $category['name'], '</option>'; |
| 301 | + } |
|
| 291 | 302 | echo ' |
| 292 | 303 | </select> |
| 293 | 304 | </dd>'; |
@@ -315,9 +326,10 @@ discard block |
||
| 315 | 326 | <select id="board_order" name="board_order"', !isset($context['board']['is_new']) ? ' disabled' : '', '> |
| 316 | 327 | ', !isset($context['board']['is_new']) ? '<option value="">(' . $txt['mboards_unchanged'] . ')</option>' : ''; |
| 317 | 328 | |
| 318 | - foreach ($context['board_order'] as $order) |
|
| 319 | - echo ' |
|
| 329 | + foreach ($context['board_order'] as $order) { |
|
| 330 | + echo ' |
|
| 320 | 331 | <option', $order['selected'] ? ' selected' : '', ' value="', $order['id'], '">', $order['name'], '</option>'; |
| 332 | + } |
|
| 321 | 333 | echo ' |
| 322 | 334 | </select> |
| 323 | 335 | </dd>'; |
@@ -346,13 +358,15 @@ discard block |
||
| 346 | 358 | <dd> |
| 347 | 359 | <select name="profile">'; |
| 348 | 360 | |
| 349 | - if (isset($context['board']['is_new'])) |
|
| 350 | - echo ' |
|
| 361 | + if (isset($context['board']['is_new'])) { |
|
| 362 | + echo ' |
|
| 351 | 363 | <option value="-1">[', $txt['permission_profile_inherit'], ']</option>'; |
| 364 | + } |
|
| 352 | 365 | |
| 353 | - foreach ($context['profiles'] as $id => $profile) |
|
| 354 | - echo ' |
|
| 366 | + foreach ($context['profiles'] as $id => $profile) { |
|
| 367 | + echo ' |
|
| 355 | 368 | <option value="', $id, '"', $id == $context['board']['profile'] ? ' selected' : '', '>', $profile['name'], '</option>'; |
| 369 | + } |
|
| 356 | 370 | |
| 357 | 371 | echo ' |
| 358 | 372 | </select> |
@@ -365,8 +379,8 @@ discard block |
||
| 365 | 379 | </dt> |
| 366 | 380 | <dd>'; |
| 367 | 381 | |
| 368 | - if (!empty($modSettings['deny_boards_access'])) |
|
| 369 | - echo ' |
|
| 382 | + if (!empty($modSettings['deny_boards_access'])) { |
|
| 383 | + echo ' |
|
| 370 | 384 | <table> |
| 371 | 385 | <tr> |
| 372 | 386 | <td></td> |
@@ -374,10 +388,11 @@ discard block |
||
| 374 | 388 | <th>', $txt['permissions_option_off'], '</th> |
| 375 | 389 | <th>', $txt['permissions_option_deny'], '</th> |
| 376 | 390 | </tr>'; |
| 391 | + } |
|
| 377 | 392 | |
| 378 | 393 | // List all the membergroups so the user can choose who may access this board. |
| 379 | - foreach ($context['groups'] as $group) |
|
| 380 | - if (empty($modSettings['deny_boards_access'])) |
|
| 394 | + foreach ($context['groups'] as $group) { |
|
| 395 | + if (empty($modSettings['deny_boards_access'])) |
|
| 381 | 396 | echo ' |
| 382 | 397 | <label for="groups_', $group['id'], '"> |
| 383 | 398 | <input type="checkbox" name="groups[', $group['id'], ']" value="allow" id="groups_', $group['id'], '"', in_array($group['id'], $context['board_managers']) ? ' checked disabled' : ($group['allow'] ? ' checked' : ''), '> |
@@ -385,8 +400,9 @@ discard block |
||
| 385 | 400 | ', $group['name'], ' |
| 386 | 401 | </span> |
| 387 | 402 | </label><br>'; |
| 388 | - else |
|
| 389 | - echo ' |
|
| 403 | + } |
|
| 404 | + else { |
|
| 405 | + echo ' |
|
| 390 | 406 | <tr> |
| 391 | 407 | <td> |
| 392 | 408 | <label for="groups_', $group['id'], '_a"> |
@@ -406,16 +422,17 @@ discard block |
||
| 406 | 422 | </td> |
| 407 | 423 | <td></td> |
| 408 | 424 | </tr>'; |
| 425 | + } |
|
| 409 | 426 | |
| 410 | - if (empty($modSettings['deny_boards_access'])) |
|
| 411 | - echo ' |
|
| 427 | + if (empty($modSettings['deny_boards_access'])) { |
|
| 428 | + echo ' |
|
| 412 | 429 | <span class="select_all_box"> |
| 413 | 430 | <em>', $txt['check_all'], '</em> <input type="checkbox" onclick="invertAll(this, this.form, \'groups[\');"> |
| 414 | 431 | </span> |
| 415 | 432 | <br><br> |
| 416 | 433 | </dd>'; |
| 417 | - else |
|
| 418 | - echo ' |
|
| 434 | + } else { |
|
| 435 | + echo ' |
|
| 419 | 436 | <tr class="select_all_box"> |
| 420 | 437 | <td> |
| 421 | 438 | </td> |
@@ -434,6 +451,7 @@ discard block |
||
| 434 | 451 | </tr> |
| 435 | 452 | </table> |
| 436 | 453 | </dd>'; |
| 454 | + } |
|
| 437 | 455 | |
| 438 | 456 | // Options to choose moderators, specify as announcement board and choose whether to count posts here. |
| 439 | 457 | echo ' |
@@ -488,8 +506,8 @@ discard block |
||
| 488 | 506 | </dl> |
| 489 | 507 | </div>'; |
| 490 | 508 | |
| 491 | - if ($context['board']['redirect']) |
|
| 492 | - echo ' |
|
| 509 | + if ($context['board']['redirect']) { |
|
| 510 | + echo ' |
|
| 493 | 511 | <div id="reset_redirect_div"> |
| 494 | 512 | <dl class="settings"> |
| 495 | 513 | <dt> |
@@ -502,6 +520,7 @@ discard block |
||
| 502 | 520 | </dd> |
| 503 | 521 | </dl> |
| 504 | 522 | </div>'; |
| 523 | + } |
|
| 505 | 524 | } |
| 506 | 525 | |
| 507 | 526 | echo ' |
@@ -529,9 +548,10 @@ discard block |
||
| 529 | 548 | <select name="boardtheme" id="boardtheme" onchange="refreshOptions();"> |
| 530 | 549 | <option value="0"', $context['board']['theme'] == 0 ? ' selected' : '', '>', $txt['mboards_theme_default'], '</option>'; |
| 531 | 550 | |
| 532 | - foreach ($context['themes'] as $theme) |
|
| 533 | - echo ' |
|
| 551 | + foreach ($context['themes'] as $theme) { |
|
| 552 | + echo ' |
|
| 534 | 553 | <option value="', $theme['id'], '"', $context['board']['theme'] == $theme['id'] ? ' selected' : '', '>', $theme['name'], '</option>'; |
| 554 | + } |
|
| 535 | 555 | |
| 536 | 556 | echo ' |
| 537 | 557 | </select> |
@@ -560,14 +580,15 @@ discard block |
||
| 560 | 580 | |
| 561 | 581 | foreach ($context['custom_board_settings'] as $cbs_id => $cbs) |
| 562 | 582 | { |
| 563 | - if (!empty($cbs['dt']) && !empty($cbs['dd'])) |
|
| 564 | - echo ' |
|
| 583 | + if (!empty($cbs['dt']) && !empty($cbs['dd'])) { |
|
| 584 | + echo ' |
|
| 565 | 585 | <dt class="clear', !is_numeric($cbs_id) ? ' cbs_' . $cbs_id : '', '"> |
| 566 | 586 | ', $cbs['dt'], ' |
| 567 | 587 | </dt> |
| 568 | 588 | <dd', !is_numeric($cbs_id) ? ' class="cbs_' . $cbs_id . '"' : '', '> |
| 569 | 589 | ', $cbs['dd'], ' |
| 570 | 590 | </dd>'; |
| 591 | + } |
|
| 571 | 592 | } |
| 572 | 593 | |
| 573 | 594 | echo ' |
@@ -575,9 +596,10 @@ discard block |
||
| 575 | 596 | </div>'; |
| 576 | 597 | } |
| 577 | 598 | |
| 578 | - if (!empty($context['board']['is_recycle'])) |
|
| 579 | - echo ' |
|
| 599 | + if (!empty($context['board']['is_recycle'])) { |
|
| 600 | + echo ' |
|
| 580 | 601 | <div class="noticebox">', $txt['mboards_recycle_disabled_delete'], '</div>'; |
| 602 | + } |
|
| 581 | 603 | |
| 582 | 604 | echo ' |
| 583 | 605 | <input type="hidden" name="rid" value="', $context['redirect_location'], '"> |
@@ -585,21 +607,24 @@ discard block |
||
| 585 | 607 | <input type="hidden" name="', $context['admin-be-' . $context['board']['id'] . '_token_var'], '" value="', $context['admin-be-' . $context['board']['id'] . '_token'], '">'; |
| 586 | 608 | |
| 587 | 609 | // If this board has no children don't bother with the next confirmation screen. |
| 588 | - if ($context['board']['no_children']) |
|
| 589 | - echo ' |
|
| 610 | + if ($context['board']['no_children']) { |
|
| 611 | + echo ' |
|
| 590 | 612 | <input type="hidden" name="no_children" value="1">'; |
| 613 | + } |
|
| 591 | 614 | |
| 592 | - if (isset($context['board']['is_new'])) |
|
| 593 | - echo ' |
|
| 615 | + if (isset($context['board']['is_new'])) { |
|
| 616 | + echo ' |
|
| 594 | 617 | <input type="hidden" name="cur_cat" value="', $context['board']['category'], '"> |
| 595 | 618 | <input type="submit" name="add" value="', $txt['mboards_new_board'], '" onclick="return !isEmptyText(this.form.board_name);" class="button">'; |
| 596 | - else |
|
| 597 | - echo ' |
|
| 619 | + } else { |
|
| 620 | + echo ' |
|
| 598 | 621 | <input type="submit" name="edit" value="', $txt['modify'], '" onclick="return !isEmptyText(this.form.board_name);" class="button">'; |
| 622 | + } |
|
| 599 | 623 | |
| 600 | - if (!isset($context['board']['is_new']) && empty($context['board']['is_recycle'])) |
|
| 601 | - echo ' |
|
| 624 | + if (!isset($context['board']['is_new']) && empty($context['board']['is_recycle'])) { |
|
| 625 | + echo ' |
|
| 602 | 626 | <input type="submit" name="delete" value="', $txt['mboards_delete_board'], '" data-confirm="', $txt['boardConfirm'], '" class="button you_sure">'; |
| 627 | + } |
|
| 603 | 628 | echo ' |
| 604 | 629 | </div><!-- .windowbg --> |
| 605 | 630 | </form> |
@@ -620,12 +645,13 @@ discard block |
||
| 620 | 645 | sItemListContainerId: \'moderator_container\', |
| 621 | 646 | aListItems: ['; |
| 622 | 647 | |
| 623 | - foreach ($context['board']['moderators'] as $id_member => $member_name) |
|
| 624 | - echo ' |
|
| 648 | + foreach ($context['board']['moderators'] as $id_member => $member_name) { |
|
| 649 | + echo ' |
|
| 625 | 650 | { |
| 626 | 651 | sItemId: ', JavaScriptEscape($id_member), ', |
| 627 | 652 | sItemName: ', JavaScriptEscape($member_name), ' |
| 628 | 653 | }', $id_member == $context['board']['last_moderator_id'] ? '' : ','; |
| 654 | + } |
|
| 629 | 655 | |
| 630 | 656 | echo ' |
| 631 | 657 | ] |
@@ -645,12 +671,13 @@ discard block |
||
| 645 | 671 | sItemListContainerId: \'moderator_group_container\', |
| 646 | 672 | aListItems: ['; |
| 647 | 673 | |
| 648 | - foreach ($context['board']['moderator_groups'] as $id_group => $group_name) |
|
| 649 | - echo ' |
|
| 674 | + foreach ($context['board']['moderator_groups'] as $id_group => $group_name) { |
|
| 675 | + echo ' |
|
| 650 | 676 | { |
| 651 | 677 | sItemId: ', JavaScriptEscape($id_group), ', |
| 652 | 678 | sItemName: ', JavaScriptEscape($group_name), ' |
| 653 | 679 | }', $id_group == $context['board']['last_moderator_group_id'] ? '' : ','; |
| 680 | + } |
|
| 654 | 681 | |
| 655 | 682 | echo ' |
| 656 | 683 | ] |
@@ -676,17 +703,19 @@ discard block |
||
| 676 | 703 | echo ' |
| 677 | 704 | document.getElementById("redirect_address_div").style.display = redirectEnabled ? "" : "none";'; |
| 678 | 705 | |
| 679 | - if ($context['board']['redirect']) |
|
| 680 | - echo ' |
|
| 706 | + if ($context['board']['redirect']) { |
|
| 707 | + echo ' |
|
| 681 | 708 | document.getElementById("reset_redirect_div").style.display = redirectEnabled ? "" : "none";'; |
| 709 | + } |
|
| 682 | 710 | } |
| 683 | 711 | |
| 684 | 712 | // Include any JavaScript added by mods using the 'integrate_edit_board' hook. |
| 685 | 713 | if (!empty($context['custom_refreshOptions']) && is_array($context['custom_refreshOptions'])) |
| 686 | 714 | { |
| 687 | - foreach ($context['custom_refreshOptions'] as $refreshOption) |
|
| 688 | - echo ' |
|
| 715 | + foreach ($context['custom_refreshOptions'] as $refreshOption) { |
|
| 716 | + echo ' |
|
| 689 | 717 | ', $refreshOption; |
| 718 | + } |
|
| 690 | 719 | } |
| 691 | 720 | |
| 692 | 721 | echo ' |
@@ -715,9 +744,10 @@ discard block |
||
| 715 | 744 | <p>', $txt['mboards_delete_board_contains'], '</p> |
| 716 | 745 | <ul>'; |
| 717 | 746 | |
| 718 | - foreach ($context['children'] as $child) |
|
| 719 | - echo ' |
|
| 747 | + foreach ($context['children'] as $child) { |
|
| 748 | + echo ' |
|
| 720 | 749 | <li>', $child['node']['name'], '</li>'; |
| 750 | + } |
|
| 721 | 751 | |
| 722 | 752 | echo ' |
| 723 | 753 | </ul> |
@@ -731,10 +761,11 @@ discard block |
||
| 731 | 761 | <label for="delete_action1"><input type="radio" id="delete_action1" name="delete_action" value="1"', empty($context['can_move_children']) ? ' disabled' : '', '>', $txt['mboards_delete_board_option2'], '</label>: |
| 732 | 762 | <select name="board_to"', empty($context['can_move_children']) ? ' disabled' : '', '>'; |
| 733 | 763 | |
| 734 | - foreach ($context['board_order'] as $board) |
|
| 735 | - if ($board['id'] != $context['board']['id'] && empty($board['is_child'])) |
|
| 764 | + foreach ($context['board_order'] as $board) { |
|
| 765 | + if ($board['id'] != $context['board']['id'] && empty($board['is_child'])) |
|
| 736 | 766 | echo ' |
| 737 | 767 | <option value="', $board['id'], '">', $board['name'], '</option>'; |
| 768 | + } |
|
| 738 | 769 | |
| 739 | 770 | echo ' |
| 740 | 771 | </select> |
@@ -121,9 +121,10 @@ discard block |
||
| 121 | 121 | <h3 class="catbg">', $txt['attachment_transfer'], '</h3> |
| 122 | 122 | </div>'; |
| 123 | 123 | |
| 124 | - if (!empty($context['results'])) |
|
| 125 | - echo ' |
|
| 124 | + if (!empty($context['results'])) { |
|
| 125 | + echo ' |
|
| 126 | 126 | <div class="noticebox">', $context['results'], '</div>'; |
| 127 | + } |
|
| 127 | 128 | |
| 128 | 129 | echo ' |
| 129 | 130 | <div class="windowbg noup"> |
@@ -135,9 +136,10 @@ discard block |
||
| 135 | 136 | <select name="from"> |
| 136 | 137 | <option value="0">', $txt['attachment_transfer_select'], '</option>'; |
| 137 | 138 | |
| 138 | - foreach ($context['attach_dirs'] as $id => $dir) |
|
| 139 | - echo ' |
|
| 139 | + foreach ($context['attach_dirs'] as $id => $dir) { |
|
| 140 | + echo ' |
|
| 140 | 141 | <option value="', $id, '">', $dir, '</option>'; |
| 142 | + } |
|
| 141 | 143 | |
| 142 | 144 | echo ' |
| 143 | 145 | </select> |
@@ -148,13 +150,14 @@ discard block |
||
| 148 | 150 | <option value="0">', $txt['attachment_transfer_auto_select'], '</option> |
| 149 | 151 | <option value="-1">', $txt['attachment_transfer_forum_root'], '</option>'; |
| 150 | 152 | |
| 151 | - if (!empty($context['base_dirs'])) |
|
| 152 | - foreach ($context['base_dirs'] as $id => $dir) |
|
| 153 | + if (!empty($context['base_dirs'])) { |
|
| 154 | + foreach ($context['base_dirs'] as $id => $dir) |
|
| 153 | 155 | echo ' |
| 154 | 156 | <option value="', $id, '">', $dir, '</option>'; |
| 155 | - else |
|
| 156 | - echo ' |
|
| 157 | + } else { |
|
| 158 | + echo ' |
|
| 157 | 159 | <option value="0" disabled>', $txt['attachment_transfer_no_base'], '</option>'; |
| 160 | + } |
|
| 158 | 161 | |
| 159 | 162 | echo ' |
| 160 | 163 | </select> |
@@ -164,18 +167,20 @@ discard block |
||
| 164 | 167 | <select name="to"> |
| 165 | 168 | <option value="0">', $txt['attachment_transfer_select'], '</option>'; |
| 166 | 169 | |
| 167 | - foreach ($context['attach_dirs'] as $id => $dir) |
|
| 168 | - echo ' |
|
| 170 | + foreach ($context['attach_dirs'] as $id => $dir) { |
|
| 171 | + echo ' |
|
| 169 | 172 | <option value="', $id, '">', $dir, '</option>'; |
| 173 | + } |
|
| 170 | 174 | |
| 171 | 175 | echo ' |
| 172 | 176 | </select> |
| 173 | 177 | </dd>'; |
| 174 | 178 | |
| 175 | - if (!empty($modSettings['attachmentDirFileLimit'])) |
|
| 176 | - echo ' |
|
| 179 | + if (!empty($modSettings['attachmentDirFileLimit'])) { |
|
| 180 | + echo ' |
|
| 177 | 181 | <dt>', $txt['attachment_transfer_empty'], '</dt> |
| 178 | 182 | <dd><input type="checkbox" name="empty_it"', $context['checked'] ? ' checked' : '', '></dd>'; |
| 183 | + } |
|
| 179 | 184 | |
| 180 | 185 | echo ' |
| 181 | 186 | </dl> |
@@ -211,8 +216,8 @@ discard block |
||
| 211 | 216 | global $context, $txt, $scripturl; |
| 212 | 217 | |
| 213 | 218 | // If we've completed just let them know! |
| 214 | - if ($context['completed']) |
|
| 215 | - echo ' |
|
| 219 | + if ($context['completed']) { |
|
| 220 | + echo ' |
|
| 216 | 221 | <div id="manage_attachments"> |
| 217 | 222 | <div class="cat_bar"> |
| 218 | 223 | <h3 class="catbg">', $txt['repair_attachments_complete'], '</h3> |
@@ -221,10 +226,11 @@ discard block |
||
| 221 | 226 | ', $txt['repair_attachments_complete_desc'], ' |
| 222 | 227 | </div> |
| 223 | 228 | </div>'; |
| 229 | + } |
|
| 224 | 230 | |
| 225 | 231 | // What about if no errors were even found? |
| 226 | - elseif (!$context['errors_found']) |
|
| 227 | - echo ' |
|
| 232 | + elseif (!$context['errors_found']) { |
|
| 233 | + echo ' |
|
| 228 | 234 | <div id="manage_attachments"> |
| 229 | 235 | <div class="cat_bar"> |
| 230 | 236 | <h3 class="catbg">', $txt['repair_attachments_complete'], '</h3> |
@@ -233,6 +239,7 @@ discard block |
||
| 233 | 239 | ', $txt['repair_attachments_no_errors'], ' |
| 234 | 240 | </div> |
| 235 | 241 | </div>'; |
| 242 | + } |
|
| 236 | 243 | |
| 237 | 244 | // Otherwise, I'm sad to say, we have a problem! |
| 238 | 245 | else |
@@ -247,11 +254,12 @@ discard block |
||
| 247 | 254 | <p>', $txt['repair_attachments_error_desc'], '</p>'; |
| 248 | 255 | |
| 249 | 256 | // Loop through each error reporting the status |
| 250 | - foreach ($context['repair_errors'] as $error => $number) |
|
| 251 | - if (!empty($number)) |
|
| 257 | + foreach ($context['repair_errors'] as $error => $number) { |
|
| 258 | + if (!empty($number)) |
|
| 252 | 259 | echo ' |
| 253 | 260 | <input type="checkbox" name="to_fix[]" id="', $error, '" value="', $error, '"> |
| 254 | 261 | <label for="', $error, '">', sprintf($txt['attach_repair_' . $error], $number), '</label><br>'; |
| 262 | + } |
|
| 255 | 263 | |
| 256 | 264 | echo ' |
| 257 | 265 | <br> |
@@ -270,8 +278,9 @@ discard block |
||
| 270 | 278 | { |
| 271 | 279 | global $modSettings; |
| 272 | 280 | |
| 273 | - if (!empty($modSettings['attachment_basedirectories'])) |
|
| 274 | - template_show_list('base_paths'); |
|
| 281 | + if (!empty($modSettings['attachment_basedirectories'])) { |
|
| 282 | + template_show_list('base_paths'); |
|
| 283 | + } |
|
| 275 | 284 | |
| 276 | 285 | template_show_list('attach_paths'); |
| 277 | 286 | } |
@@ -31,25 +31,27 @@ discard block |
||
| 31 | 31 | </div> |
| 32 | 32 | <div class="information">'; |
| 33 | 33 | |
| 34 | - if ($context['is_installed']) |
|
| 35 | - echo ' |
|
| 34 | + if ($context['is_installed']) { |
|
| 35 | + echo ' |
|
| 36 | 36 | <strong>', $txt['package_installed_warning1'], '</strong><br> |
| 37 | 37 | <br> |
| 38 | 38 | ', $txt['package_installed_warning2'], '<br> |
| 39 | 39 | <br>'; |
| 40 | + } |
|
| 40 | 41 | |
| 41 | 42 | echo $txt['package_installed_warning3'], ' |
| 42 | 43 | </div> |
| 43 | 44 | <br>'; |
| 44 | 45 | |
| 45 | 46 | // Do errors exist in the install? If so light them up like a christmas tree. |
| 46 | - if ($context['has_failure']) |
|
| 47 | - echo ' |
|
| 47 | + if ($context['has_failure']) { |
|
| 48 | + echo ' |
|
| 48 | 49 | <div class="errorbox"> |
| 49 | 50 | ', sprintf($txt['package_will_fail_title'], $txt['package_' . ($context['uninstalling'] ? 'uninstall' : 'install')]), '<br> |
| 50 | 51 | ', sprintf($txt['package_will_fail_warning'], $txt['package_' . ($context['uninstalling'] ? 'uninstall' : 'install')]), |
| 51 | 52 | !empty($context['failure_details']) ? '<br><br><strong>' . $context['failure_details'] . '</strong>' : '', ' |
| 52 | 53 | </div>'; |
| 54 | + } |
|
| 53 | 55 | |
| 54 | 56 | // Display the package readme if one exists |
| 55 | 57 | if (isset($context['package_readme'])) |
@@ -63,9 +65,10 @@ discard block |
||
| 63 | 65 | <span class="floatright">', $txt['package_available_readme_language'], ' |
| 64 | 66 | <select name="readme_language" id="readme_language" onchange="if (this.options[this.selectedIndex].value) window.location.href = smf_prepareScriptUrl(smf_scripturl + \'', '?action=admin;area=packages;sa=', $context['uninstalling'] ? 'uninstall' : 'install', ';package=', $context['filename'], ';readme=\' + this.options[this.selectedIndex].value + \';license=\' + get_selected(\'license_language\'));">'; |
| 65 | 67 | |
| 66 | - foreach ($context['readmes'] as $a => $b) |
|
| 67 | - echo ' |
|
| 68 | + foreach ($context['readmes'] as $a => $b) { |
|
| 69 | + echo ' |
|
| 68 | 70 | <option value="', $b, '"', $a === 'selected' ? ' selected' : '', '>', $b == 'default' ? $txt['package_readme_default'] : ucfirst($b), '</option>'; |
| 71 | + } |
|
| 69 | 72 | |
| 70 | 73 | echo ' |
| 71 | 74 | </select> |
@@ -86,9 +89,10 @@ discard block |
||
| 86 | 89 | <span class="floatright">', $txt['package_available_license_language'], ' |
| 87 | 90 | <select name="license_language" id="license_language" onchange="if (this.options[this.selectedIndex].value) window.location.href = smf_prepareScriptUrl(smf_scripturl + \'', '?action=admin;area=packages;sa=install', ';package=', $context['filename'], ';license=\' + this.options[this.selectedIndex].value + \';readme=\' + get_selected(\'readme_language\'));">'; |
| 88 | 91 | |
| 89 | - foreach ($context['licenses'] as $a => $b) |
|
| 90 | - echo ' |
|
| 92 | + foreach ($context['licenses'] as $a => $b) { |
|
| 93 | + echo ' |
|
| 91 | 94 | <option value="', $b, '"', $a === 'selected' ? ' selected' : '', '>', $b == 'default' ? $txt['package_license_default'] : ucfirst($b), '</option>'; |
| 95 | + } |
|
| 92 | 96 | echo ' |
| 93 | 97 | </select> |
| 94 | 98 | </span> |
@@ -115,9 +119,10 @@ discard block |
||
| 115 | 119 | ', $txt['package_db_uninstall_actions'], ': |
| 116 | 120 | <ul>'; |
| 117 | 121 | |
| 118 | - foreach ($context['database_changes'] as $change) |
|
| 119 | - echo ' |
|
| 122 | + foreach ($context['database_changes'] as $change) { |
|
| 123 | + echo ' |
|
| 120 | 124 | <li>', $change, '</li>'; |
| 125 | + } |
|
| 121 | 126 | |
| 122 | 127 | echo ' |
| 123 | 128 | </ul> |
@@ -128,14 +133,14 @@ discard block |
||
| 128 | 133 | echo ' |
| 129 | 134 | <div class="information">'; |
| 130 | 135 | |
| 131 | - if (empty($context['actions']) && empty($context['database_changes'])) |
|
| 132 | - echo ' |
|
| 136 | + if (empty($context['actions']) && empty($context['database_changes'])) { |
|
| 137 | + echo ' |
|
| 133 | 138 | <br> |
| 134 | 139 | <div class="errorbox"> |
| 135 | 140 | ', $txt['corrupt_compatible'], ' |
| 136 | 141 | </div> |
| 137 | 142 | </div><!-- .information -->'; |
| 138 | - else |
|
| 143 | + } else |
|
| 139 | 144 | { |
| 140 | 145 | echo ' |
| 141 | 146 | ', $txt['perform_actions'], ' |
@@ -239,9 +244,10 @@ discard block |
||
| 239 | 244 | <td></td> |
| 240 | 245 | <td>'; |
| 241 | 246 | |
| 242 | - if (!empty($context['themes_locked'])) |
|
| 243 | - echo ' |
|
| 247 | + if (!empty($context['themes_locked'])) { |
|
| 248 | + echo ' |
|
| 244 | 249 | <input type="hidden" name="custom_theme[]" value="', $id, '">'; |
| 250 | + } |
|
| 245 | 251 | echo ' |
| 246 | 252 | <input type="checkbox" name="custom_theme[]" id="custom_theme_', $id, '" value="', $id, '" onclick="', (!empty($theme['has_failure']) ? 'if (this.form.custom_theme_' . $id . '.checked && !confirm(\'' . $txt['package_theme_failure_warning'] . '\')) return false;' : ''), 'invertAll(this, this.form, \'dummy_theme_', $id, '\', true);"', !empty($context['themes_locked']) ? ' disabled checked' : '', '> |
| 247 | 253 | </td> |
@@ -307,21 +313,23 @@ discard block |
||
| 307 | 313 | } |
| 308 | 314 | |
| 309 | 315 | // Are we effectively ready to install? |
| 310 | - if (!$context['ftp_needed'] && (!empty($context['actions']) || !empty($context['database_changes']))) |
|
| 311 | - echo ' |
|
| 316 | + if (!$context['ftp_needed'] && (!empty($context['actions']) || !empty($context['database_changes']))) { |
|
| 317 | + echo ' |
|
| 312 | 318 | <div class="righttext padding"> |
| 313 | 319 | <input type="submit" value="', $context['uninstalling'] ? $txt['package_uninstall_now'] : $txt['package_install_now'], '" onclick="return ', !empty($context['has_failure']) ? '(submitThisOnce(this) && confirm(\'' . ($context['uninstalling'] ? $txt['package_will_fail_popup_uninstall'] : $txt['package_will_fail_popup']) . '\'))' : 'submitThisOnce(this)', ';" class="button"> |
| 314 | 320 | </div>'; |
| 321 | + } |
|
| 315 | 322 | |
| 316 | 323 | // If we need ftp information then demand it! |
| 317 | - elseif ($context['ftp_needed']) |
|
| 318 | - echo ' |
|
| 324 | + elseif ($context['ftp_needed']) { |
|
| 325 | + echo ' |
|
| 319 | 326 | <div class="cat_bar"> |
| 320 | 327 | <h3 class="catbg">', $txt['package_ftp_necessary'], '</h3> |
| 321 | 328 | </div> |
| 322 | 329 | <div> |
| 323 | 330 | ', template_control_chmod(), ' |
| 324 | 331 | </div>'; |
| 332 | + } |
|
| 325 | 333 | |
| 326 | 334 | echo ' |
| 327 | 335 | |
@@ -338,8 +346,8 @@ discard block |
||
| 338 | 346 | // Operations. |
| 339 | 347 | if (!empty($js_operations)) |
| 340 | 348 | { |
| 341 | - foreach ($js_operations as $key => $operation) |
|
| 342 | - echo ' |
|
| 349 | + foreach ($js_operations as $key => $operation) { |
|
| 350 | + echo ' |
|
| 343 | 351 | aOperationElements[', $key, '] = new smc_Toggle({ |
| 344 | 352 | bToggleEnabled: true, |
| 345 | 353 | bNoAnimate: true, |
@@ -357,6 +365,7 @@ discard block |
||
| 357 | 365 | } |
| 358 | 366 | ] |
| 359 | 367 | });'; |
| 368 | + } |
|
| 360 | 369 | } |
| 361 | 370 | |
| 362 | 371 | echo ' |
@@ -378,14 +387,15 @@ discard block |
||
| 378 | 387 | </script>'; |
| 379 | 388 | |
| 380 | 389 | // And a bit more for database changes. |
| 381 | - if (!empty($context['database_changes'])) |
|
| 382 | - echo ' |
|
| 390 | + if (!empty($context['database_changes'])) { |
|
| 391 | + echo ' |
|
| 383 | 392 | <script> |
| 384 | 393 | var database_changes_area = document.getElementById(\'db_changes_div\'); |
| 385 | 394 | var db_vis = false; |
| 386 | 395 | database_changes_area.style.display = "none"; |
| 387 | 396 | </script>'; |
| 388 | -} |
|
| 397 | + } |
|
| 398 | + } |
|
| 389 | 399 | |
| 390 | 400 | /** |
| 391 | 401 | * Extract package contents |
@@ -394,8 +404,8 @@ discard block |
||
| 394 | 404 | { |
| 395 | 405 | global $context, $txt, $scripturl; |
| 396 | 406 | |
| 397 | - if (!empty($context['redirect_url'])) |
|
| 398 | - echo ' |
|
| 407 | + if (!empty($context['redirect_url'])) { |
|
| 408 | + echo ' |
|
| 399 | 409 | <script> |
| 400 | 410 | setTimeout("doRedirect();", ', empty($context['redirect_timeout']) ? '5000' : $context['redirect_timeout'], '); |
| 401 | 411 | |
@@ -404,52 +414,51 @@ discard block |
||
| 404 | 414 | window.location = "', $context['redirect_url'], '"; |
| 405 | 415 | } |
| 406 | 416 | </script>'; |
| 417 | + } |
|
| 407 | 418 | |
| 408 | 419 | echo ' |
| 409 | 420 | <div id="admincenter">'; |
| 410 | 421 | |
| 411 | - if (empty($context['redirect_url'])) |
|
| 412 | - echo ' |
|
| 422 | + if (empty($context['redirect_url'])) { |
|
| 423 | + echo ' |
|
| 413 | 424 | <div class="cat_bar"> |
| 414 | 425 | <h3 class="catbg">', $context['uninstalling'] ? $txt['uninstall'] : $txt['extracting'], '</h3> |
| 415 | 426 | </div> |
| 416 | 427 | <div class="information">', $txt['package_installed_extract'], '</div>'; |
| 417 | - else |
|
| 418 | - echo ' |
|
| 428 | + } else { |
|
| 429 | + echo ' |
|
| 419 | 430 | <div class="cat_bar"> |
| 420 | 431 | <h3 class="catbg">', $txt['package_installed_redirecting'], '</h3> |
| 421 | 432 | </div>'; |
| 433 | + } |
|
| 422 | 434 | |
| 423 | 435 | echo ' |
| 424 | 436 | <div class="windowbg">'; |
| 425 | 437 | |
| 426 | 438 | // If we are going to redirect we have a slightly different agenda. |
| 427 | - if (!empty($context['redirect_url'])) |
|
| 428 | - echo ' |
|
| 439 | + if (!empty($context['redirect_url'])) { |
|
| 440 | + echo ' |
|
| 429 | 441 | ', $context['redirect_text'], '<br><br> |
| 430 | 442 | <a href="', $context['redirect_url'], '">', $txt['package_installed_redirect_go_now'], '</a> | <a href="', $scripturl, '?action=admin;area=packages;sa=browse">', $txt['package_installed_redirect_cancel'], '</a>'; |
| 431 | - |
|
| 432 | - elseif ($context['uninstalling']) |
|
| 433 | - echo ' |
|
| 443 | + } elseif ($context['uninstalling']) { |
|
| 444 | + echo ' |
|
| 434 | 445 | ', $txt['package_uninstall_done']; |
| 435 | - |
|
| 436 | - elseif ($context['install_finished']) |
|
| 446 | + } elseif ($context['install_finished']) |
|
| 437 | 447 | { |
| 438 | - if ($context['extract_type'] == 'avatar') |
|
| 439 | - echo ' |
|
| 448 | + if ($context['extract_type'] == 'avatar') { |
|
| 449 | + echo ' |
|
| 440 | 450 | ', $txt['avatars_extracted']; |
| 441 | - |
|
| 442 | - elseif ($context['extract_type'] == 'language') |
|
| 443 | - echo ' |
|
| 451 | + } elseif ($context['extract_type'] == 'language') { |
|
| 452 | + echo ' |
|
| 444 | 453 | ', $txt['language_extracted']; |
| 445 | - |
|
| 446 | - else |
|
| 447 | - echo ' |
|
| 454 | + } else { |
|
| 455 | + echo ' |
|
| 448 | 456 | ', $txt['package_installed_done']; |
| 449 | - } |
|
| 450 | - else |
|
| 451 | - echo ' |
|
| 457 | + } |
|
| 458 | + } else { |
|
| 459 | + echo ' |
|
| 452 | 460 | ', $txt['corrupt_compatible']; |
| 461 | + } |
|
| 453 | 462 | |
| 454 | 463 | echo ' |
| 455 | 464 | </div><!-- .windowbg -->'; |
@@ -483,9 +492,10 @@ discard block |
||
| 483 | 492 | <div class="windowbg"> |
| 484 | 493 | <ol>'; |
| 485 | 494 | |
| 486 | - foreach ($context['files'] as $fileinfo) |
|
| 487 | - echo ' |
|
| 495 | + foreach ($context['files'] as $fileinfo) { |
|
| 496 | + echo ' |
|
| 488 | 497 | <li><a href="', $scripturl, '?action=admin;area=packages;sa=examine;package=', $context['filename'], ';file=', $fileinfo['filename'], '" title="', $txt['view'], '">', $fileinfo['filename'], '</a> (', $fileinfo['size'], ' ', $txt['package_bytes'], ')</li>'; |
| 498 | + } |
|
| 489 | 499 | |
| 490 | 500 | echo ' |
| 491 | 501 | </ol> |
@@ -549,9 +559,10 @@ discard block |
||
| 549 | 559 | </script> |
| 550 | 560 | <div id="yourVersion" style="display:none">', $context['forum_version'], '</div>'; |
| 551 | 561 | |
| 552 | - if (empty($modSettings['disable_smf_js'])) |
|
| 553 | - echo ' |
|
| 562 | + if (empty($modSettings['disable_smf_js'])) { |
|
| 563 | + echo ' |
|
| 554 | 564 | <script src="', $scripturl, '?action=viewsmfile;filename=latest-news.js"></script>'; |
| 565 | + } |
|
| 555 | 566 | |
| 556 | 567 | // This sets the announcements and current versions themselves ;). |
| 557 | 568 | echo ' |
@@ -589,12 +600,13 @@ discard block |
||
| 589 | 600 | } |
| 590 | 601 | } |
| 591 | 602 | |
| 592 | - if (!$mods_available) |
|
| 593 | - echo ' |
|
| 603 | + if (!$mods_available) { |
|
| 604 | + echo ' |
|
| 594 | 605 | <div class="noticebox">', $txt['no_packages'], '</div>'; |
| 595 | - else |
|
| 596 | - echo ' |
|
| 606 | + } else { |
|
| 607 | + echo ' |
|
| 597 | 608 | <br>'; |
| 609 | + } |
|
| 598 | 610 | |
| 599 | 611 | // The advanced (emulation) box, collapsed by default |
| 600 | 612 | echo ' |
@@ -621,9 +633,10 @@ discard block |
||
| 621 | 633 | <a id="revert" name="revert"></a> |
| 622 | 634 | <select name="version_emulate" id="ve">'; |
| 623 | 635 | |
| 624 | - foreach ($context['emulation_versions'] as $version) |
|
| 625 | - echo ' |
|
| 636 | + foreach ($context['emulation_versions'] as $version) { |
|
| 637 | + echo ' |
|
| 626 | 638 | <option value="', $version, '"', ($version == $context['selected_version'] ? ' selected="selected"' : ''), '>', $version, '</option>'; |
| 639 | + } |
|
| 627 | 640 | |
| 628 | 641 | echo ' |
| 629 | 642 | </select> |
@@ -679,11 +692,12 @@ discard block |
||
| 679 | 692 | { |
| 680 | 693 | global $context, $txt, $scripturl; |
| 681 | 694 | |
| 682 | - if (!empty($context['package_ftp']['error'])) |
|
| 683 | - echo ' |
|
| 695 | + if (!empty($context['package_ftp']['error'])) { |
|
| 696 | + echo ' |
|
| 684 | 697 | <div class="errorbox"> |
| 685 | 698 | <pre>', $context['package_ftp']['error'], '</pre> |
| 686 | 699 | </div>'; |
| 700 | + } |
|
| 687 | 701 | |
| 688 | 702 | echo ' |
| 689 | 703 | <div id="admin_form_wrapper"> |
@@ -766,13 +780,14 @@ discard block |
||
| 766 | 780 | <legend>' . $txt['package_servers'] . '</legend> |
| 767 | 781 | <ul class="package_servers">'; |
| 768 | 782 | |
| 769 | - foreach ($context['servers'] as $server) |
|
| 770 | - echo ' |
|
| 783 | + foreach ($context['servers'] as $server) { |
|
| 784 | + echo ' |
|
| 771 | 785 | <li class="flow_auto"> |
| 772 | 786 | <span class="floatleft">' . $server['name'] . '</span> |
| 773 | 787 | <span class="package_server floatright"><a href="' . $scripturl . '?action=admin;area=packages;get;sa=remove;server=' . $server['id'] . ';', $context['session_var'], '=', $context['session_id'], '">[ ' . $txt['delete'] . ' ]</a></span> |
| 774 | 788 | <span class="package_server floatright"><a href="' . $scripturl . '?action=admin;area=packages;get;sa=browse;server=' . $server['id'] . '">[ ' . $txt['package_browse'] . ' ]</a></span> |
| 775 | 789 | </li>'; |
| 790 | + } |
|
| 776 | 791 | echo ' |
| 777 | 792 | </ul> |
| 778 | 793 | </fieldset> |
@@ -859,11 +874,12 @@ discard block |
||
| 859 | 874 | <div class="windowbg">'; |
| 860 | 875 | |
| 861 | 876 | // No packages, as yet. |
| 862 | - if (empty($context['package_list'])) |
|
| 863 | - echo ' |
|
| 877 | + if (empty($context['package_list'])) { |
|
| 878 | + echo ' |
|
| 864 | 879 | <ul> |
| 865 | 880 | <li>', $txt['no_packages'], '</li> |
| 866 | 881 | </ul>'; |
| 882 | + } |
|
| 867 | 883 | |
| 868 | 884 | // List out the packages... |
| 869 | 885 | else |
@@ -877,11 +893,12 @@ discard block |
||
| 877 | 893 | <li> |
| 878 | 894 | <strong><span id="ps_img_', $i, '" class="toggle_up" alt="*" style="display: none;"></span> ', $packageSection['title'], '</strong>'; |
| 879 | 895 | |
| 880 | - if (!empty($packageSection['text'])) |
|
| 881 | - echo ' |
|
| 896 | + if (!empty($packageSection['text'])) { |
|
| 897 | + echo ' |
|
| 882 | 898 | <div class="sub_bar"> |
| 883 | 899 | <h3 class="subbg">', $packageSection['text'], '</h3> |
| 884 | 900 | </div>'; |
| 901 | + } |
|
| 885 | 902 | |
| 886 | 903 | echo ' |
| 887 | 904 | <', $context['list_type'], ' id="package_section_', $i, '" class="packages">'; |
@@ -892,24 +909,28 @@ discard block |
||
| 892 | 909 | <li>'; |
| 893 | 910 | |
| 894 | 911 | // Textual message. Could be empty just for a blank line... |
| 895 | - if ($package['is_text']) |
|
| 896 | - echo ' |
|
| 912 | + if ($package['is_text']) { |
|
| 913 | + echo ' |
|
| 897 | 914 | ', empty($package['name']) ? ' ' : $package['name']; |
| 915 | + } |
|
| 898 | 916 | |
| 899 | 917 | // This is supposed to be a rule.. |
| 900 | - elseif ($package['is_line']) |
|
| 901 | - echo ' |
|
| 918 | + elseif ($package['is_line']) { |
|
| 919 | + echo ' |
|
| 902 | 920 | <hr>'; |
| 921 | + } |
|
| 903 | 922 | |
| 904 | 923 | // A remote link. |
| 905 | - elseif ($package['is_remote']) |
|
| 906 | - echo ' |
|
| 924 | + elseif ($package['is_remote']) { |
|
| 925 | + echo ' |
|
| 907 | 926 | <strong>', $package['link'], '</strong>'; |
| 927 | + } |
|
| 908 | 928 | |
| 909 | 929 | // A title? |
| 910 | - elseif ($package['is_heading'] || $package['is_title']) |
|
| 911 | - echo ' |
|
| 930 | + elseif ($package['is_heading'] || $package['is_title']) { |
|
| 931 | + echo ' |
|
| 912 | 932 | <strong>', $package['name'], '</strong>'; |
| 933 | + } |
|
| 913 | 934 | |
| 914 | 935 | // Otherwise, it's a package. |
| 915 | 936 | else |
@@ -920,32 +941,36 @@ discard block |
||
| 920 | 941 | <ul id="package_section_', $i, '_pkg_', $id, '" class="package_section">'; |
| 921 | 942 | |
| 922 | 943 | // Show the mod type? |
| 923 | - if ($package['type'] != '') |
|
| 924 | - echo ' |
|
| 944 | + if ($package['type'] != '') { |
|
| 945 | + echo ' |
|
| 925 | 946 | <li class="package_section"> |
| 926 | 947 | ', $txt['package_type'], ': ', $smcFunc['ucwords']($smcFunc['strtolower']($package['type'])), ' |
| 927 | 948 | </li>'; |
| 949 | + } |
|
| 928 | 950 | |
| 929 | 951 | // Show the version number? |
| 930 | - if ($package['version'] != '') |
|
| 931 | - echo ' |
|
| 952 | + if ($package['version'] != '') { |
|
| 953 | + echo ' |
|
| 932 | 954 | <li class="package_section"> |
| 933 | 955 | ', $txt['mod_version'], ': ', $package['version'], ' |
| 934 | 956 | </li>'; |
| 957 | + } |
|
| 935 | 958 | |
| 936 | 959 | // How 'bout the author? |
| 937 | - if (!empty($package['author']) && $package['author']['name'] != '' && isset($package['author']['link'])) |
|
| 938 | - echo ' |
|
| 960 | + if (!empty($package['author']) && $package['author']['name'] != '' && isset($package['author']['link'])) { |
|
| 961 | + echo ' |
|
| 939 | 962 | <li class="package_section"> |
| 940 | 963 | ', $txt['mod_author'], ': ', $package['author']['link'], ' |
| 941 | 964 | </li>'; |
| 965 | + } |
|
| 942 | 966 | |
| 943 | 967 | // The homepage... |
| 944 | - if ($package['author']['website']['link'] != '') |
|
| 945 | - echo ' |
|
| 968 | + if ($package['author']['website']['link'] != '') { |
|
| 969 | + echo ' |
|
| 946 | 970 | <li class="package_section"> |
| 947 | 971 | ', $txt['author_website'], ': ', $package['author']['website']['link'], ' |
| 948 | 972 | </li>'; |
| 973 | + } |
|
| 949 | 974 | |
| 950 | 975 | // Description: bleh bleh! |
| 951 | 976 | // Location of file: http://someplace/. |
@@ -1004,8 +1029,8 @@ discard block |
||
| 1004 | 1029 | |
| 1005 | 1030 | foreach ($ps['items'] as $id => $package) |
| 1006 | 1031 | { |
| 1007 | - if (!$package['is_text'] && !$package['is_line'] && !$package['is_remote']) |
|
| 1008 | - echo ' |
|
| 1032 | + if (!$package['is_text'] && !$package['is_line'] && !$package['is_remote']) { |
|
| 1033 | + echo ' |
|
| 1009 | 1034 | var oPackageToggle_', $section, '_pkg_', $id, ' = new smc_Toggle({ |
| 1010 | 1035 | bToggleEnabled: true, |
| 1011 | 1036 | bCurrentlyCollapsed: true, |
@@ -1020,6 +1045,7 @@ discard block |
||
| 1020 | 1045 | } |
| 1021 | 1046 | ] |
| 1022 | 1047 | });'; |
| 1048 | + } |
|
| 1023 | 1049 | } |
| 1024 | 1050 | } |
| 1025 | 1051 | |
@@ -1064,9 +1090,10 @@ discard block |
||
| 1064 | 1090 | { |
| 1065 | 1091 | global $context, $txt, $scripturl; |
| 1066 | 1092 | |
| 1067 | - if (!empty($context['saved_successful'])) |
|
| 1068 | - echo ' |
|
| 1093 | + if (!empty($context['saved_successful'])) { |
|
| 1094 | + echo ' |
|
| 1069 | 1095 | <div class="infobox">', $txt['settings_saved'], '</div>'; |
| 1096 | + } |
|
| 1070 | 1097 | |
| 1071 | 1098 | echo ' |
| 1072 | 1099 | <div id="admincenter"> |
@@ -1128,8 +1155,9 @@ discard block |
||
| 1128 | 1155 | global $context, $txt; |
| 1129 | 1156 | |
| 1130 | 1157 | // Nothing to do? Brilliant! |
| 1131 | - if (empty($context['package_ftp'])) |
|
| 1132 | - return false; |
|
| 1158 | + if (empty($context['package_ftp'])) { |
|
| 1159 | + return false; |
|
| 1160 | + } |
|
| 1133 | 1161 | |
| 1134 | 1162 | if (empty($context['package_ftp']['form_elements_only'])) |
| 1135 | 1163 | { |
@@ -1139,19 +1167,21 @@ discard block |
||
| 1139 | 1167 | ', $txt['package_ftp_why_file_list'], ' |
| 1140 | 1168 | <ul style="display: inline;">'; |
| 1141 | 1169 | |
| 1142 | - if (!empty($context['notwritable_files'])) |
|
| 1143 | - foreach ($context['notwritable_files'] as $file) |
|
| 1170 | + if (!empty($context['notwritable_files'])) { |
|
| 1171 | + foreach ($context['notwritable_files'] as $file) |
|
| 1144 | 1172 | echo ' |
| 1145 | 1173 | <li>', $file, '</li>'; |
| 1174 | + } |
|
| 1146 | 1175 | |
| 1147 | 1176 | echo ' |
| 1148 | 1177 | </ul>'; |
| 1149 | 1178 | |
| 1150 | - if (!$context['server']['is_windows']) |
|
| 1151 | - echo ' |
|
| 1179 | + if (!$context['server']['is_windows']) { |
|
| 1180 | + echo ' |
|
| 1152 | 1181 | <hr> |
| 1153 | 1182 | ', $txt['package_chmod_linux'], '<br> |
| 1154 | 1183 | <tt># chmod a+w ', implode(' ', $context['notwritable_files']), '</tt>'; |
| 1184 | + } |
|
| 1155 | 1185 | |
| 1156 | 1186 | echo ' |
| 1157 | 1187 | </div><!-- #need_writable_list -->'; |
@@ -1164,9 +1194,10 @@ discard block |
||
| 1164 | 1194 | </div> |
| 1165 | 1195 | </div>'; |
| 1166 | 1196 | |
| 1167 | - if (!empty($context['package_ftp']['destination'])) |
|
| 1168 | - echo ' |
|
| 1197 | + if (!empty($context['package_ftp']['destination'])) { |
|
| 1198 | + echo ' |
|
| 1169 | 1199 | <form action="', $context['package_ftp']['destination'], '" method="post" accept-charset="', $context['character_set'], '">'; |
| 1200 | + } |
|
| 1170 | 1201 | |
| 1171 | 1202 | echo ' |
| 1172 | 1203 | <fieldset> |
@@ -1200,24 +1231,27 @@ discard block |
||
| 1200 | 1231 | </dl> |
| 1201 | 1232 | </fieldset>'; |
| 1202 | 1233 | |
| 1203 | - if (empty($context['package_ftp']['form_elements_only'])) |
|
| 1204 | - echo ' |
|
| 1234 | + if (empty($context['package_ftp']['form_elements_only'])) { |
|
| 1235 | + echo ' |
|
| 1205 | 1236 | <div class="righttext" style="margin: 1ex;"> |
| 1206 | 1237 | <span id="test_ftp_placeholder_full"></span> |
| 1207 | 1238 | <input type="submit" value="', $txt['package_proceed'], '" class="button"> |
| 1208 | 1239 | </div>'; |
| 1240 | + } |
|
| 1209 | 1241 | |
| 1210 | - if (!empty($context['package_ftp']['destination'])) |
|
| 1211 | - echo ' |
|
| 1242 | + if (!empty($context['package_ftp']['destination'])) { |
|
| 1243 | + echo ' |
|
| 1212 | 1244 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
| 1213 | 1245 | </form>'; |
| 1246 | + } |
|
| 1214 | 1247 | |
| 1215 | 1248 | // Hide the details of the list. |
| 1216 | - if (empty($context['package_ftp']['form_elements_only'])) |
|
| 1217 | - echo ' |
|
| 1249 | + if (empty($context['package_ftp']['form_elements_only'])) { |
|
| 1250 | + echo ' |
|
| 1218 | 1251 | <script> |
| 1219 | 1252 | document.getElementById(\'need_writable_list\').style.display = \'none\'; |
| 1220 | 1253 | </script>'; |
| 1254 | + } |
|
| 1221 | 1255 | |
| 1222 | 1256 | // Quick generate the test button. |
| 1223 | 1257 | echo ' |
@@ -1574,9 +1608,10 @@ discard block |
||
| 1574 | 1608 | <td width="30%"> |
| 1575 | 1609 | <strong>'; |
| 1576 | 1610 | |
| 1577 | - if (!empty($dir['type']) && ($dir['type'] == 'dir' || $dir['type'] == 'dir_recursive')) |
|
| 1578 | - echo ' |
|
| 1611 | + if (!empty($dir['type']) && ($dir['type'] == 'dir' || $dir['type'] == 'dir_recursive')) { |
|
| 1612 | + echo ' |
|
| 1579 | 1613 | <span class="generic_icons folder"></span>'; |
| 1614 | + } |
|
| 1580 | 1615 | |
| 1581 | 1616 | echo ' |
| 1582 | 1617 | ', $name, ' |
@@ -1603,8 +1638,9 @@ discard block |
||
| 1603 | 1638 | </td> |
| 1604 | 1639 | </tr>'; |
| 1605 | 1640 | |
| 1606 | - if (!empty($dir['contents'])) |
|
| 1607 | - template_permission_show_contents($name, $dir['contents'], 1); |
|
| 1641 | + if (!empty($dir['contents'])) { |
|
| 1642 | + template_permission_show_contents($name, $dir['contents'], 1); |
|
| 1643 | + } |
|
| 1608 | 1644 | } |
| 1609 | 1645 | |
| 1610 | 1646 | echo ' |
@@ -1640,13 +1676,14 @@ discard block |
||
| 1640 | 1676 | </fieldset>'; |
| 1641 | 1677 | |
| 1642 | 1678 | // Likely to need FTP? |
| 1643 | - if (empty($context['ftp_connected'])) |
|
| 1644 | - echo ' |
|
| 1679 | + if (empty($context['ftp_connected'])) { |
|
| 1680 | + echo ' |
|
| 1645 | 1681 | <p> |
| 1646 | 1682 | ', $txt['package_file_perms_ftp_details'], ': |
| 1647 | 1683 | </p> |
| 1648 | 1684 | ', template_control_chmod(), ' |
| 1649 | 1685 | <div class="noticebox">', $txt['package_file_perms_ftp_retain'], '</div>'; |
| 1686 | + } |
|
| 1650 | 1687 | |
| 1651 | 1688 | echo ' |
| 1652 | 1689 | <span id="test_ftp_placeholder_full"></span> |
@@ -1655,9 +1692,10 @@ discard block |
||
| 1655 | 1692 | </div><!-- .windowbg -->'; |
| 1656 | 1693 | |
| 1657 | 1694 | // Any looks fors we've already done? |
| 1658 | - foreach ($context['look_for'] as $path) |
|
| 1659 | - echo ' |
|
| 1695 | + foreach ($context['look_for'] as $path) { |
|
| 1696 | + echo ' |
|
| 1660 | 1697 | <input type="hidden" name="back_look[]" value="', $path, '">'; |
| 1698 | + } |
|
| 1661 | 1699 | |
| 1662 | 1700 | echo ' |
| 1663 | 1701 | </form> |
@@ -1699,9 +1737,10 @@ discard block |
||
| 1699 | 1737 | <td class="smalltext" width="30%">' . str_repeat(' ', $level * 5), ' |
| 1700 | 1738 | ', (!empty($dir['type']) && $dir['type'] == 'dir_recursive') || !empty($dir['list_contents']) ? '<a id="link_' . $cur_ident . '" href="' . $scripturl . '?action=admin;area=packages;sa=perms;find=' . base64_encode($ident . '/' . $name) . ';back_look=' . $context['back_look_data'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '#fol_' . $cur_ident . '" onclick="return expandFolder(\'' . $cur_ident . '\', \'' . addcslashes($ident . '/' . $name, "'\\") . '\');">' : ''; |
| 1701 | 1739 | |
| 1702 | - if (!empty($dir['type']) && ($dir['type'] == 'dir' || $dir['type'] == 'dir_recursive')) |
|
| 1703 | - echo ' |
|
| 1740 | + if (!empty($dir['type']) && ($dir['type'] == 'dir' || $dir['type'] == 'dir_recursive')) { |
|
| 1741 | + echo ' |
|
| 1704 | 1742 | <span class="generic_icons folder"></span>'; |
| 1743 | + } |
|
| 1705 | 1744 | |
| 1706 | 1745 | echo ' |
| 1707 | 1746 | ', $name, ' |
@@ -1719,34 +1758,38 @@ discard block |
||
| 1719 | 1758 | </tr> |
| 1720 | 1759 | <tr id="insert_div_loc_' . $cur_ident . '" style="display: none;"><td></td></tr>'; |
| 1721 | 1760 | |
| 1722 | - if (!empty($dir['contents'])) |
|
| 1723 | - template_permission_show_contents($ident . '/' . $name, $dir['contents'], $level + 1, !empty($dir['more_files'])); |
|
| 1761 | + if (!empty($dir['contents'])) { |
|
| 1762 | + template_permission_show_contents($ident . '/' . $name, $dir['contents'], $level + 1, !empty($dir['more_files'])); |
|
| 1763 | + } |
|
| 1724 | 1764 | } |
| 1725 | 1765 | } |
| 1726 | 1766 | |
| 1727 | 1767 | // We have more files to show? |
| 1728 | - if ($has_more) |
|
| 1729 | - echo ' |
|
| 1768 | + if ($has_more) { |
|
| 1769 | + echo ' |
|
| 1730 | 1770 | <tr class="windowbg" id="content_', $js_ident, '_more"> |
| 1731 | 1771 | <td class="smalltext" width="40%">' . str_repeat(' ', $level * 5), ' |
| 1732 | 1772 | « <a href="' . $scripturl . '?action=admin;area=packages;sa=perms;find=' . base64_encode($ident) . ';fileoffset=', ($context['file_offset'] + $context['file_limit']), ';' . $context['session_var'] . '=' . $context['session_id'] . '#fol_' . preg_replace('~[^A-Za-z0-9_\-=:]~', ':-:', $ident) . '">', $txt['package_file_perms_more_files'], '</a> » |
| 1733 | 1773 | </td> |
| 1734 | 1774 | <td colspan="6"></td> |
| 1735 | 1775 | </tr>'; |
| 1776 | + } |
|
| 1736 | 1777 | |
| 1737 | 1778 | if ($drawn_div) |
| 1738 | 1779 | { |
| 1739 | 1780 | // Hide anything too far down the tree. |
| 1740 | 1781 | $isFound = false; |
| 1741 | - foreach ($context['look_for'] as $tree) |
|
| 1742 | - if (substr($tree, 0, strlen($ident)) == $ident) |
|
| 1782 | + foreach ($context['look_for'] as $tree) { |
|
| 1783 | + if (substr($tree, 0, strlen($ident)) == $ident) |
|
| 1743 | 1784 | $isFound = true; |
| 1785 | + } |
|
| 1744 | 1786 | |
| 1745 | - if ($level > 1 && !$isFound) |
|
| 1746 | - echo ' |
|
| 1787 | + if ($level > 1 && !$isFound) { |
|
| 1788 | + echo ' |
|
| 1747 | 1789 | <script> |
| 1748 | 1790 | expandFolder(\'', $js_ident, '\', \'\'); |
| 1749 | 1791 | </script>'; |
| 1792 | + } |
|
| 1750 | 1793 | } |
| 1751 | 1794 | } |
| 1752 | 1795 | |
@@ -1766,11 +1809,12 @@ discard block |
||
| 1766 | 1809 | <h3 class="catbg">', $txt['package_file_perms_applying'], '</h3> |
| 1767 | 1810 | </div>'; |
| 1768 | 1811 | |
| 1769 | - if (!empty($context['skip_ftp'])) |
|
| 1770 | - echo ' |
|
| 1812 | + if (!empty($context['skip_ftp'])) { |
|
| 1813 | + echo ' |
|
| 1771 | 1814 | <div class="errorbox"> |
| 1772 | 1815 | ', $txt['package_file_perms_skipping_ftp'], ' |
| 1773 | 1816 | </div>'; |
| 1817 | + } |
|
| 1774 | 1818 | |
| 1775 | 1819 | // How many have we done? |
| 1776 | 1820 | $remaining_items = count($context['method'] == 'individual' ? $context['to_process'] : $context['directory_list']); |
@@ -1808,28 +1852,31 @@ discard block |
||
| 1808 | 1852 | <br>'; |
| 1809 | 1853 | |
| 1810 | 1854 | // Put out the right hidden data. |
| 1811 | - if ($context['method'] == 'individual') |
|
| 1812 | - echo ' |
|
| 1855 | + if ($context['method'] == 'individual') { |
|
| 1856 | + echo ' |
|
| 1813 | 1857 | <input type="hidden" name="custom_value" value="', $context['custom_value'], '"> |
| 1814 | 1858 | <input type="hidden" name="totalItems" value="', $context['total_items'], '"> |
| 1815 | 1859 | <input type="hidden" name="toProcess" value="', $context['to_process_encode'], '">'; |
| 1816 | - else |
|
| 1817 | - echo ' |
|
| 1860 | + } else { |
|
| 1861 | + echo ' |
|
| 1818 | 1862 | <input type="hidden" name="predefined" value="', $context['predefined_type'], '"> |
| 1819 | 1863 | <input type="hidden" name="fileOffset" value="', $context['file_offset'], '"> |
| 1820 | 1864 | <input type="hidden" name="totalItems" value="', $context['total_items'], '"> |
| 1821 | 1865 | <input type="hidden" name="dirList" value="', $context['directory_list_encode'], '"> |
| 1822 | 1866 | <input type="hidden" name="specialFiles" value="', $context['special_files_encode'], '">'; |
| 1867 | + } |
|
| 1823 | 1868 | |
| 1824 | 1869 | // Are we not using FTP for whatever reason. |
| 1825 | - if (!empty($context['skip_ftp'])) |
|
| 1826 | - echo ' |
|
| 1870 | + if (!empty($context['skip_ftp'])) { |
|
| 1871 | + echo ' |
|
| 1827 | 1872 | <input type="hidden" name="skip_ftp" value="1">'; |
| 1873 | + } |
|
| 1828 | 1874 | |
| 1829 | 1875 | // Retain state. |
| 1830 | - foreach ($context['back_look_data'] as $path) |
|
| 1831 | - echo ' |
|
| 1876 | + foreach ($context['back_look_data'] as $path) { |
|
| 1877 | + echo ' |
|
| 1832 | 1878 | <input type="hidden" name="back_look[]" value="', $path, '">'; |
| 1879 | + } |
|
| 1833 | 1880 | |
| 1834 | 1881 | echo ' |
| 1835 | 1882 | <input type="hidden" name="method" value="', $context['method'], '"> |
@@ -54,18 +54,20 @@ discard block |
||
| 54 | 54 | <div class="windowbg noup" id="group_requests_panel"> |
| 55 | 55 | <ul>'; |
| 56 | 56 | |
| 57 | - foreach ($context['group_requests'] as $request) |
|
| 58 | - echo ' |
|
| 57 | + foreach ($context['group_requests'] as $request) { |
|
| 58 | + echo ' |
|
| 59 | 59 | <li class="smalltext"> |
| 60 | 60 | <a href="', $request['request_href'], '">', $request['group']['name'], '</a> ', $txt['mc_groupr_by'], ' ', $request['member']['link'], ' |
| 61 | 61 | </li>'; |
| 62 | + } |
|
| 62 | 63 | |
| 63 | 64 | // Don't have any watched users right now? |
| 64 | - if (empty($context['group_requests'])) |
|
| 65 | - echo ' |
|
| 65 | + if (empty($context['group_requests'])) { |
|
| 66 | + echo ' |
|
| 66 | 67 | <li> |
| 67 | 68 | <strong class="smalltext">', $txt['mc_group_requests_none'], '</strong> |
| 68 | 69 | </li>'; |
| 70 | + } |
|
| 69 | 71 | |
| 70 | 72 | echo ' |
| 71 | 73 | </ul> |
@@ -121,18 +123,20 @@ discard block |
||
| 121 | 123 | <div class="windowbg noup" id="watched_users_panel"> |
| 122 | 124 | <ul>'; |
| 123 | 125 | |
| 124 | - foreach ($context['watched_users'] as $user) |
|
| 125 | - echo ' |
|
| 126 | + foreach ($context['watched_users'] as $user) { |
|
| 127 | + echo ' |
|
| 126 | 128 | <li> |
| 127 | 129 | <span class="smalltext">', sprintf(!empty($user['last_login']) ? $txt['mc_seen'] : $txt['mc_seen_never'], $user['link'], $user['last_login']), '</span> |
| 128 | 130 | </li>'; |
| 131 | + } |
|
| 129 | 132 | |
| 130 | 133 | // Don't have any watched users right now? |
| 131 | - if (empty($context['watched_users'])) |
|
| 132 | - echo ' |
|
| 134 | + if (empty($context['watched_users'])) { |
|
| 135 | + echo ' |
|
| 133 | 136 | <li> |
| 134 | 137 | <strong class="smalltext">', $txt['mc_watched_users_none'], '</strong> |
| 135 | 138 | </li>'; |
| 139 | + } |
|
| 136 | 140 | |
| 137 | 141 | echo ' |
| 138 | 142 | </ul> |
@@ -188,18 +192,20 @@ discard block |
||
| 188 | 192 | <div class="windowbg noup" id="reported_posts_panel"> |
| 189 | 193 | <ul>'; |
| 190 | 194 | |
| 191 | - foreach ($context['reported_posts'] as $post) |
|
| 192 | - echo ' |
|
| 195 | + foreach ($context['reported_posts'] as $post) { |
|
| 196 | + echo ' |
|
| 193 | 197 | <li> |
| 194 | 198 | <span class="smalltext">', sprintf($txt['mc_post_report'], $post['report_link'], $post['author']['link']), '</span> |
| 195 | 199 | </li>'; |
| 200 | + } |
|
| 196 | 201 | |
| 197 | 202 | // Don't have any watched users right now? |
| 198 | - if (empty($context['reported_posts'])) |
|
| 199 | - echo ' |
|
| 203 | + if (empty($context['reported_posts'])) { |
|
| 204 | + echo ' |
|
| 200 | 205 | <li> |
| 201 | 206 | <strong class="smalltext">', $txt['mc_recent_reports_none'], '</strong> |
| 202 | 207 | </li>'; |
| 208 | + } |
|
| 203 | 209 | |
| 204 | 210 | echo ' |
| 205 | 211 | </ul> |
@@ -255,18 +261,20 @@ discard block |
||
| 255 | 261 | <div class="windowbg noup" id="reported_users_panel"> |
| 256 | 262 | <ul>'; |
| 257 | 263 | |
| 258 | - foreach ($context['reported_users'] as $user) |
|
| 259 | - echo ' |
|
| 264 | + foreach ($context['reported_users'] as $user) { |
|
| 265 | + echo ' |
|
| 260 | 266 | <li> |
| 261 | 267 | <span class="smalltext">', $user['user']['link'], '</span> |
| 262 | 268 | </li>'; |
| 269 | + } |
|
| 263 | 270 | |
| 264 | 271 | // Don't have any watched users right now? |
| 265 | - if (empty($context['reported_users'])) |
|
| 266 | - echo ' |
|
| 272 | + if (empty($context['reported_users'])) { |
|
| 273 | + echo ' |
|
| 267 | 274 | <li> |
| 268 | 275 | <strong class="smalltext">', $txt['mc_reported_users_none'], '</strong> |
| 269 | 276 | </li>'; |
| 277 | + } |
|
| 270 | 278 | |
| 271 | 279 | echo ' |
| 272 | 280 | </ul> |
@@ -313,11 +321,12 @@ discard block |
||
| 313 | 321 | global $context, $txt, $scripturl; |
| 314 | 322 | |
| 315 | 323 | // Let them know the action was a success. |
| 316 | - if (!empty($context['report_post_action'])) |
|
| 317 | - echo ' |
|
| 324 | + if (!empty($context['report_post_action'])) { |
|
| 325 | + echo ' |
|
| 318 | 326 | <div class="infobox"> |
| 319 | 327 | ', $txt['report_action_' . $context['report_post_action']], ' |
| 320 | 328 | </div>'; |
| 329 | + } |
|
| 321 | 330 | |
| 322 | 331 | echo ' |
| 323 | 332 | <div id="modnotes"> |
@@ -333,11 +342,12 @@ discard block |
||
| 333 | 342 | <ul class="moderation_notes">'; |
| 334 | 343 | |
| 335 | 344 | // Cycle through the notes. |
| 336 | - foreach ($context['notes'] as $note) |
|
| 337 | - echo ' |
|
| 345 | + foreach ($context['notes'] as $note) { |
|
| 346 | + echo ' |
|
| 338 | 347 | <li class="smalltext"> |
| 339 | 348 | ', ($note['can_delete'] ? '<a href="' . $note['delete_href'] . ';' . $context['mod-modnote-del_token_var'] . '=' . $context['mod-modnote-del_token'] . '" data-confirm="' . $txt['mc_reportedp_delete_confirm'] . '" class="you_sure"><span class="generic_icons delete"></span></a>' : ''), $note['time'], ' <strong>', $note['author']['link'], ':</strong> ', $note['text'], ' |
| 340 | 349 | </li>'; |
| 350 | + } |
|
| 341 | 351 | |
| 342 | 352 | echo ' |
| 343 | 353 | </ul> |
@@ -378,18 +388,19 @@ discard block |
||
| 378 | 388 | $remove_button = create_button('delete', 'remove_message', 'remove'); |
| 379 | 389 | |
| 380 | 390 | // No posts? |
| 381 | - if (empty($context['unapproved_items'])) |
|
| 382 | - echo ' |
|
| 391 | + if (empty($context['unapproved_items'])) { |
|
| 392 | + echo ' |
|
| 383 | 393 | <div class="windowbg"> |
| 384 | 394 | <p class="centertext"> |
| 385 | 395 | ', $txt['mc_unapproved_' . $context['current_view'] . '_none_found'], ' |
| 386 | 396 | </p> |
| 387 | 397 | </div>'; |
| 388 | - else |
|
| 389 | - echo ' |
|
| 398 | + } else { |
|
| 399 | + echo ' |
|
| 390 | 400 | <div class="pagesection floatleft"> |
| 391 | 401 | ', $context['page_index'], ' |
| 392 | 402 | </div>'; |
| 403 | + } |
|
| 393 | 404 | |
| 394 | 405 | foreach ($context['unapproved_items'] as $item) |
| 395 | 406 | { |
@@ -408,14 +419,16 @@ discard block |
||
| 408 | 419 | <span class="floatright"> |
| 409 | 420 | <a href="', $scripturl, '?action=moderate;area=postmod;sa=', $context['current_view'], ';start=', $context['start'], ';', $context['session_var'], '=', $context['session_id'], ';approve=', $item['id'], '">', $approve_button, '</a>'; |
| 410 | 421 | |
| 411 | - if ($item['can_delete']) |
|
| 412 | - echo ' |
|
| 422 | + if ($item['can_delete']) { |
|
| 423 | + echo ' |
|
| 413 | 424 | ', $context['menu_separator'], ' |
| 414 | 425 | <a href="', $scripturl, '?action=moderate;area=postmod;sa=', $context['current_view'], ';start=', $context['start'], ';', $context['session_var'], '=', $context['session_id'], ';delete=', $item['id'], '">', $remove_button, '</a>'; |
| 426 | + } |
|
| 415 | 427 | |
| 416 | - if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1) |
|
| 417 | - echo ' |
|
| 428 | + if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1) { |
|
| 429 | + echo ' |
|
| 418 | 430 | <input type="checkbox" name="item[]" value="', $item['id'], '" checked> '; |
| 431 | + } |
|
| 419 | 432 | |
| 420 | 433 | echo ' |
| 421 | 434 | </span> |
@@ -425,8 +438,8 @@ discard block |
||
| 425 | 438 | echo ' |
| 426 | 439 | <div class="pagesection">'; |
| 427 | 440 | |
| 428 | - if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1) |
|
| 429 | - echo ' |
|
| 441 | + if (!empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1) { |
|
| 442 | + echo ' |
|
| 430 | 443 | <div class="floatright"> |
| 431 | 444 | <select name="do" onchange="if (this.value != 0 && confirm(\'', $txt['mc_unapproved_sure'], '\')) submit();"> |
| 432 | 445 | <option value="0">', $txt['with_selected'], ':</option> |
@@ -438,12 +451,14 @@ discard block |
||
| 438 | 451 | <input type="submit" name="mc_go" value="', $txt['go'], '" class="button"> |
| 439 | 452 | </noscript> |
| 440 | 453 | </div>'; |
| 454 | + } |
|
| 441 | 455 | |
| 442 | - if (!empty($context['unapproved_items'])) |
|
| 443 | - echo ' |
|
| 456 | + if (!empty($context['unapproved_items'])) { |
|
| 457 | + echo ' |
|
| 444 | 458 | <div class="floatleft"> |
| 445 | 459 | <div class="pagelinks">', $context['page_index'], '</div> |
| 446 | 460 | </div>'; |
| 461 | + } |
|
| 447 | 462 | |
| 448 | 463 | echo ' |
| 449 | 464 | </div><!-- .pagesection --> |
@@ -464,8 +479,9 @@ discard block |
||
| 464 | 479 | |
| 465 | 480 | // We'll have a delete please bob. |
| 466 | 481 | // @todo Discuss this with the team and rewrite if required. |
| 467 | - if (empty($delete_button)) |
|
| 468 | - $delete_button = create_button('delete', 'remove_message', 'remove', 'class="centericon"'); |
|
| 482 | + if (empty($delete_button)) { |
|
| 483 | + $delete_button = create_button('delete', 'remove_message', 'remove', 'class="centericon"'); |
|
| 484 | + } |
|
| 469 | 485 | |
| 470 | 486 | $output_html = ' |
| 471 | 487 | <div> |
@@ -474,10 +490,11 @@ discard block |
||
| 474 | 490 | </div> |
| 475 | 491 | <div class="floatright">'; |
| 476 | 492 | |
| 477 | - if ($post['can_delete']) |
|
| 478 | - $output_html .= ' |
|
| 493 | + if ($post['can_delete']) { |
|
| 494 | + $output_html .= ' |
|
| 479 | 495 | <a href="' . $scripturl . '?action=moderate;area=userwatch;sa=post;delete=' . $post['id'] . ';start=' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" data-confirm="' . $txt['mc_watched_users_delete_post'] . '" class="you_sure">' . $delete_button . '</a> |
| 480 | 496 | <input type="checkbox" name="delete[]" value="' . $post['id'] . '">'; |
| 497 | + } |
|
| 481 | 498 | |
| 482 | 499 | $output_html .= ' |
| 483 | 500 | </div> |
@@ -521,12 +538,12 @@ discard block |
||
| 521 | 538 | <input type="submit" name="save" value="', $txt['save'], '" class="button"> |
| 522 | 539 | </div> |
| 523 | 540 | </form>'; |
| 524 | - } |
|
| 525 | - else |
|
| 526 | - echo ' |
|
| 541 | + } else { |
|
| 542 | + echo ' |
|
| 527 | 543 | <div class="windowbg"> |
| 528 | 544 | <div class="centertext">', $txt['mc_no_settings'], '</div> |
| 529 | 545 | </div>'; |
| 546 | + } |
|
| 530 | 547 | |
| 531 | 548 | echo ' |
| 532 | 549 | </div><!-- #modcenter -->'; |
@@ -622,13 +639,14 @@ discard block |
||
| 622 | 639 | </dd> |
| 623 | 640 | </dl>'; |
| 624 | 641 | |
| 625 | - if ($context['template_data']['can_edit_personal']) |
|
| 626 | - echo ' |
|
| 642 | + if ($context['template_data']['can_edit_personal']) { |
|
| 643 | + echo ' |
|
| 627 | 644 | <input type="checkbox" name="make_personal" id="make_personal"', $context['template_data']['personal'] ? ' checked' : '', '> |
| 628 | 645 | <label for="make_personal"> |
| 629 | 646 | <strong>', $txt['mc_warning_template_personal'], '</strong> |
| 630 | 647 | </label> |
| 631 | 648 | <p class="smalltext">', $txt['mc_warning_template_personal_desc'], '</p>'; |
| 649 | + } |
|
| 632 | 650 | |
| 633 | 651 | echo ' |
| 634 | 652 | <input type="submit" name="preview" id="preview_button" value="', $txt['preview'], '" class="button"> |
@@ -18,23 +18,25 @@ discard block |
||
| 18 | 18 | global $context; |
| 19 | 19 | |
| 20 | 20 | // Prevent Chrome from auto completing fields when viewing/editing other members profiles |
| 21 | - if (isBrowser('is_chrome') && !$context['user']['is_owner']) |
|
| 22 | - echo ' |
|
| 21 | + if (isBrowser('is_chrome') && !$context['user']['is_owner']) { |
|
| 22 | + echo ' |
|
| 23 | 23 | <script> |
| 24 | 24 | disableAutoComplete(); |
| 25 | 25 | </script>'; |
| 26 | + } |
|
| 26 | 27 | |
| 27 | 28 | // If an error occurred while trying to save previously, give the user a clue! |
| 28 | 29 | echo ' |
| 29 | 30 | ', template_error_message(); |
| 30 | 31 | |
| 31 | 32 | // If the profile was update successfully, let the user know this. |
| 32 | - if (!empty($context['profile_updated'])) |
|
| 33 | - echo ' |
|
| 33 | + if (!empty($context['profile_updated'])) { |
|
| 34 | + echo ' |
|
| 34 | 35 | <div class="infobox"> |
| 35 | 36 | ', $context['profile_updated'], ' |
| 36 | 37 | </div>'; |
| 37 | -} |
|
| 38 | + } |
|
| 39 | + } |
|
| 38 | 40 | |
| 39 | 41 | /** |
| 40 | 42 | * Template for any HTML needed below the profile (closing off divs/tables, etc.) |
@@ -99,19 +101,19 @@ discard block |
||
| 99 | 101 | </div> |
| 100 | 102 | <div class="alerts_unread">'; |
| 101 | 103 | |
| 102 | - if (empty($context['unread_alerts'])) |
|
| 103 | - template_alerts_all_read(); |
|
| 104 | - |
|
| 105 | - else |
|
| 104 | + if (empty($context['unread_alerts'])) { |
|
| 105 | + template_alerts_all_read(); |
|
| 106 | + } else |
|
| 106 | 107 | { |
| 107 | - foreach ($context['unread_alerts'] as $id_alert => $details) |
|
| 108 | - echo ' |
|
| 108 | + foreach ($context['unread_alerts'] as $id_alert => $details) { |
|
| 109 | + echo ' |
|
| 109 | 110 | <div class="unread"> |
| 110 | 111 | ', !empty($details['sender']) ? $details['sender']['avatar']['image'] : '', ' |
| 111 | 112 | <div class="details"> |
| 112 | 113 | ', !empty($details['icon']) ? $details['icon'] : '', '<span>', $details['text'], '</span> - ', $details['time'], ' |
| 113 | 114 | </div> |
| 114 | 115 | </div>'; |
| 116 | + } |
|
| 115 | 117 | } |
| 116 | 118 | |
| 117 | 119 | echo ' |
@@ -158,37 +160,41 @@ discard block |
||
| 158 | 160 | if (!empty($context['print_custom_fields']['above_member'])) |
| 159 | 161 | { |
| 160 | 162 | $fields = ''; |
| 161 | - foreach ($context['print_custom_fields']['above_member'] as $field) |
|
| 162 | - if (!empty($field['output_html'])) |
|
| 163 | + foreach ($context['print_custom_fields']['above_member'] as $field) { |
|
| 164 | + if (!empty($field['output_html'])) |
|
| 163 | 165 | $fields .= ' |
| 164 | 166 | <li>' . $field['output_html'] . '</li>'; |
| 167 | + } |
|
| 165 | 168 | |
| 166 | - if (!empty($fields)) |
|
| 167 | - echo ' |
|
| 169 | + if (!empty($fields)) { |
|
| 170 | + echo ' |
|
| 168 | 171 | <div class="custom_fields_above_name"> |
| 169 | 172 | <ul>', $fields, ' |
| 170 | 173 | </ul> |
| 171 | 174 | </div>'; |
| 175 | + } |
|
| 172 | 176 | } |
| 173 | 177 | |
| 174 | 178 | echo ' |
| 175 | 179 | <div class="username clear"> |
| 176 | 180 | <h4>'; |
| 177 | 181 | |
| 178 | - if (!empty($context['print_custom_fields']['before_member'])) |
|
| 179 | - foreach ($context['print_custom_fields']['before_member'] as $field) |
|
| 182 | + if (!empty($context['print_custom_fields']['before_member'])) { |
|
| 183 | + foreach ($context['print_custom_fields']['before_member'] as $field) |
|
| 180 | 184 | if (!empty($field['output_html'])) |
| 181 | 185 | echo ' |
| 182 | 186 | <span>', $field['output_html'], '</span>'; |
| 187 | + } |
|
| 183 | 188 | |
| 184 | 189 | echo ' |
| 185 | 190 | ', $context['member']['name']; |
| 186 | 191 | |
| 187 | - if (!empty($context['print_custom_fields']['after_member'])) |
|
| 188 | - foreach ($context['print_custom_fields']['after_member'] as $field) |
|
| 192 | + if (!empty($context['print_custom_fields']['after_member'])) { |
|
| 193 | + foreach ($context['print_custom_fields']['after_member'] as $field) |
|
| 189 | 194 | if (!empty($field['output_html'])) |
| 190 | 195 | echo ' |
| 191 | 196 | <span>', $field['output_html'], '</span>'; |
| 197 | + } |
|
| 192 | 198 | |
| 193 | 199 | |
| 194 | 200 | echo ' |
@@ -201,39 +207,44 @@ discard block |
||
| 201 | 207 | if (!empty($context['print_custom_fields']['below_avatar'])) |
| 202 | 208 | { |
| 203 | 209 | $fields = ''; |
| 204 | - foreach ($context['print_custom_fields']['below_avatar'] as $field) |
|
| 205 | - if (!empty($field['output_html'])) |
|
| 210 | + foreach ($context['print_custom_fields']['below_avatar'] as $field) { |
|
| 211 | + if (!empty($field['output_html'])) |
|
| 206 | 212 | $fields .= ' |
| 207 | 213 | <li>' . $field['output_html'] . '</li>'; |
| 214 | + } |
|
| 208 | 215 | |
| 209 | - if (!empty($fields)) |
|
| 210 | - echo ' |
|
| 216 | + if (!empty($fields)) { |
|
| 217 | + echo ' |
|
| 211 | 218 | <div class="custom_fields_below_avatar"> |
| 212 | 219 | <ul>', $fields, ' |
| 213 | 220 | </ul> |
| 214 | 221 | </div>'; |
| 222 | + } |
|
| 215 | 223 | } |
| 216 | 224 | |
| 217 | 225 | echo ' |
| 218 | 226 | <ul class="icon_fields clear">'; |
| 219 | 227 | |
| 220 | 228 | // Email is only visible if it's your profile or you have the moderate_forum permission |
| 221 | - if ($context['member']['show_email']) |
|
| 222 | - echo ' |
|
| 229 | + if ($context['member']['show_email']) { |
|
| 230 | + echo ' |
|
| 223 | 231 | <li><a href="mailto:', $context['member']['email'], '" title="', $context['member']['email'], '" rel="nofollow"><span class="generic_icons mail" title="' . $txt['email'] . '"></span></a></li>'; |
| 232 | + } |
|
| 224 | 233 | |
| 225 | 234 | // Don't show an icon if they haven't specified a website. |
| 226 | - if ($context['member']['website']['url'] !== '' && !isset($context['disabled_fields']['website'])) |
|
| 227 | - echo ' |
|
| 235 | + if ($context['member']['website']['url'] !== '' && !isset($context['disabled_fields']['website'])) { |
|
| 236 | + echo ' |
|
| 228 | 237 | <li><a href="', $context['member']['website']['url'], '" title="' . $context['member']['website']['title'] . '" target="_blank" rel="noopener">', ($settings['use_image_buttons'] ? '<span class="generic_icons www" title="' . $context['member']['website']['title'] . '"></span>' : $txt['www']), '</a></li>'; |
| 238 | + } |
|
| 229 | 239 | |
| 230 | 240 | // Are there any custom profile fields as icons? |
| 231 | 241 | if (!empty($context['print_custom_fields']['icons'])) |
| 232 | 242 | { |
| 233 | - foreach ($context['print_custom_fields']['icons'] as $field) |
|
| 234 | - if (!empty($field['output_html'])) |
|
| 243 | + foreach ($context['print_custom_fields']['icons'] as $field) { |
|
| 244 | + if (!empty($field['output_html'])) |
|
| 235 | 245 | echo ' |
| 236 | 246 | <li class="custom_field">', $field['output_html'], '</li>'; |
| 247 | + } |
|
| 237 | 248 | } |
| 238 | 249 | |
| 239 | 250 | echo ' |
@@ -242,24 +253,27 @@ discard block |
||
| 242 | 253 | ', $context['can_send_pm'] ? '<a href="' . $context['member']['online']['href'] . '" title="' . $context['member']['online']['text'] . '" rel="nofollow">' : '', $settings['use_image_buttons'] ? '<span class="' . ($context['member']['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $context['member']['online']['text'] . '"></span>' : $context['member']['online']['label'], $context['can_send_pm'] ? '</a>' : '', $settings['use_image_buttons'] ? '<span class="smalltext"> ' . $context['member']['online']['label'] . '</span>' : ''; |
| 243 | 254 | |
| 244 | 255 | // Can they add this member as a buddy? |
| 245 | - if (!empty($context['can_have_buddy']) && !$context['user']['is_owner']) |
|
| 246 | - echo ' |
|
| 256 | + if (!empty($context['can_have_buddy']) && !$context['user']['is_owner']) { |
|
| 257 | + echo ' |
|
| 247 | 258 | <br> |
| 248 | 259 | <a href="', $scripturl, '?action=buddy;u=', $context['id_member'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['buddy_' . ($context['member']['is_buddy'] ? 'remove' : 'add')], '</a>'; |
| 260 | + } |
|
| 249 | 261 | |
| 250 | 262 | echo ' |
| 251 | 263 | </span>'; |
| 252 | 264 | |
| 253 | - if (!$context['user']['is_owner'] && $context['can_send_pm']) |
|
| 254 | - echo ' |
|
| 265 | + if (!$context['user']['is_owner'] && $context['can_send_pm']) { |
|
| 266 | + echo ' |
|
| 255 | 267 | <a href="', $scripturl, '?action=pm;sa=send;u=', $context['id_member'], '" class="infolinks">', $txt['profile_sendpm_short'], '</a>'; |
| 268 | + } |
|
| 256 | 269 | |
| 257 | 270 | echo ' |
| 258 | 271 | <a href="', $scripturl, '?action=profile;area=showposts;u=', $context['id_member'], '" class="infolinks">', $txt['showPosts'], '</a>'; |
| 259 | 272 | |
| 260 | - if ($context['user']['is_owner'] && !empty($modSettings['drafts_post_enabled'])) |
|
| 261 | - echo ' |
|
| 273 | + if ($context['user']['is_owner'] && !empty($modSettings['drafts_post_enabled'])) { |
|
| 274 | + echo ' |
|
| 262 | 275 | <a href="', $scripturl, '?action=profile;area=showdrafts;u=', $context['id_member'], '" class="infolinks">', $txt['drafts_show'], '</a>'; |
| 276 | + } |
|
| 263 | 277 | |
| 264 | 278 | echo ' |
| 265 | 279 | <a href="', $scripturl, '?action=profile;area=statistics;u=', $context['id_member'], '" class="infolinks">', $txt['statPanel'], '</a>'; |
@@ -268,17 +282,19 @@ discard block |
||
| 268 | 282 | if (!empty($context['print_custom_fields']['bottom_poster'])) |
| 269 | 283 | { |
| 270 | 284 | $fields = ''; |
| 271 | - foreach ($context['print_custom_fields']['bottom_poster'] as $field) |
|
| 272 | - if (!empty($field['output_html'])) |
|
| 285 | + foreach ($context['print_custom_fields']['bottom_poster'] as $field) { |
|
| 286 | + if (!empty($field['output_html'])) |
|
| 273 | 287 | $fields .= ' |
| 274 | 288 | <li>' . $field['output_html'] . '</li>'; |
| 289 | + } |
|
| 275 | 290 | |
| 276 | - if (!empty($fields)) |
|
| 277 | - echo ' |
|
| 291 | + if (!empty($fields)) { |
|
| 292 | + echo ' |
|
| 278 | 293 | <div class="custom_fields_bottom"> |
| 279 | 294 | <ul class="nolist">', $fields, ' |
| 280 | 295 | </ul> |
| 281 | 296 | </div>'; |
| 297 | + } |
|
| 282 | 298 | } |
| 283 | 299 | |
| 284 | 300 | echo ' |
@@ -287,30 +303,35 @@ discard block |
||
| 287 | 303 | <div id="detailedinfo"> |
| 288 | 304 | <dl class="settings">'; |
| 289 | 305 | |
| 290 | - if ($context['user']['is_owner'] || $context['user']['is_admin']) |
|
| 291 | - echo ' |
|
| 306 | + if ($context['user']['is_owner'] || $context['user']['is_admin']) { |
|
| 307 | + echo ' |
|
| 292 | 308 | <dt>', $txt['username'], ': </dt> |
| 293 | 309 | <dd>', $context['member']['username'], '</dd>'; |
| 310 | + } |
|
| 294 | 311 | |
| 295 | - if (!isset($context['disabled_fields']['posts'])) |
|
| 296 | - echo ' |
|
| 312 | + if (!isset($context['disabled_fields']['posts'])) { |
|
| 313 | + echo ' |
|
| 297 | 314 | <dt>', $txt['profile_posts'], ': </dt> |
| 298 | 315 | <dd>', $context['member']['posts'], ' (', $context['member']['posts_per_day'], ' ', $txt['posts_per_day'], ')</dd>'; |
| 316 | + } |
|
| 299 | 317 | |
| 300 | - if ($context['member']['show_email']) |
|
| 301 | - echo ' |
|
| 318 | + if ($context['member']['show_email']) { |
|
| 319 | + echo ' |
|
| 302 | 320 | <dt>', $txt['email'], ': </dt> |
| 303 | 321 | <dd><a href="mailto:', $context['member']['email'], '">', $context['member']['email'], '</a></dd>'; |
| 322 | + } |
|
| 304 | 323 | |
| 305 | - if (!empty($modSettings['titlesEnable']) && !empty($context['member']['title'])) |
|
| 306 | - echo ' |
|
| 324 | + if (!empty($modSettings['titlesEnable']) && !empty($context['member']['title'])) { |
|
| 325 | + echo ' |
|
| 307 | 326 | <dt>', $txt['custom_title'], ': </dt> |
| 308 | 327 | <dd>', $context['member']['title'], '</dd>'; |
| 328 | + } |
|
| 309 | 329 | |
| 310 | - if (!empty($context['member']['blurb'])) |
|
| 311 | - echo ' |
|
| 330 | + if (!empty($context['member']['blurb'])) { |
|
| 331 | + echo ' |
|
| 312 | 332 | <dt>', $txt['personal_text'], ': </dt> |
| 313 | 333 | <dd>', $context['member']['blurb'], '</dd>'; |
| 334 | + } |
|
| 314 | 335 | |
| 315 | 336 | echo ' |
| 316 | 337 | <dt>', $txt['age'], ':</dt> |
@@ -324,19 +345,21 @@ discard block |
||
| 324 | 345 | { |
| 325 | 346 | $fields = array(); |
| 326 | 347 | |
| 327 | - foreach ($context['print_custom_fields']['standard'] as $field) |
|
| 328 | - if (!empty($field['output_html'])) |
|
| 348 | + foreach ($context['print_custom_fields']['standard'] as $field) { |
|
| 349 | + if (!empty($field['output_html'])) |
|
| 329 | 350 | $fields[] = $field; |
| 351 | + } |
|
| 330 | 352 | |
| 331 | 353 | if (count($fields) > 0) |
| 332 | 354 | { |
| 333 | 355 | echo ' |
| 334 | 356 | <dl class="settings">'; |
| 335 | 357 | |
| 336 | - foreach ($fields as $field) |
|
| 337 | - echo ' |
|
| 358 | + foreach ($fields as $field) { |
|
| 359 | + echo ' |
|
| 338 | 360 | <dt>', $field['name'], ':</dt> |
| 339 | 361 | <dd>', $field['output_html'], '</dd>'; |
| 362 | + } |
|
| 340 | 363 | |
| 341 | 364 | echo ' |
| 342 | 365 | </dl>'; |
@@ -355,9 +378,10 @@ discard block |
||
| 355 | 378 | <a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=', ($context['can_issue_warning'] && !$context['user']['is_owner'] ? 'issuewarning' : 'viewwarning'), '">', $context['member']['warning'], '%</a>'; |
| 356 | 379 | |
| 357 | 380 | // Can we provide information on what this means? |
| 358 | - if (!empty($context['warning_status'])) |
|
| 359 | - echo ' |
|
| 381 | + if (!empty($context['warning_status'])) { |
|
| 382 | + echo ' |
|
| 360 | 383 | <span class="smalltext">(', $context['warning_status'], ')</span>'; |
| 384 | + } |
|
| 361 | 385 | |
| 362 | 386 | echo ' |
| 363 | 387 | </dd>'; |
@@ -367,11 +391,12 @@ discard block |
||
| 367 | 391 | if (!empty($context['activate_message']) || !empty($context['member']['bans'])) |
| 368 | 392 | { |
| 369 | 393 | // If the person looking at the summary has permission, and the account isn't activated, give the viewer the ability to do it themselves. |
| 370 | - if (!empty($context['activate_message'])) |
|
| 371 | - echo ' |
|
| 394 | + if (!empty($context['activate_message'])) { |
|
| 395 | + echo ' |
|
| 372 | 396 | <dt class="clear"> |
| 373 | 397 | <span class="alert">', $context['activate_message'], '</span> (<a href="', $context['activate_link'], '"', ($context['activate_type'] == 4 ? ' class="you_sure" data-confirm="' . $txt['profileConfirm'] . '"' : ''), '>', $context['activate_link_text'], '</a>) |
| 374 | 398 | </dt>'; |
| 399 | + } |
|
| 375 | 400 | |
| 376 | 401 | // If the current member is banned, show a message and possibly a link to the ban. |
| 377 | 402 | if (!empty($context['member']['bans'])) |
@@ -383,10 +408,11 @@ discard block |
||
| 383 | 408 | <dt class="clear" id="ban_info" style="display: none;"> |
| 384 | 409 | <strong>', $txt['user_banned_by_following'], ':</strong>'; |
| 385 | 410 | |
| 386 | - foreach ($context['member']['bans'] as $ban) |
|
| 387 | - echo ' |
|
| 411 | + foreach ($context['member']['bans'] as $ban) { |
|
| 412 | + echo ' |
|
| 388 | 413 | <br> |
| 389 | 414 | <span class="smalltext">', $ban['explanation'], '</span>'; |
| 415 | + } |
|
| 390 | 416 | |
| 391 | 417 | echo ' |
| 392 | 418 | </dt>'; |
@@ -400,30 +426,34 @@ discard block |
||
| 400 | 426 | // If the person looking is allowed, they can check the members IP address and hostname. |
| 401 | 427 | if ($context['can_see_ip']) |
| 402 | 428 | { |
| 403 | - if (!empty($context['member']['ip'])) |
|
| 404 | - echo ' |
|
| 429 | + if (!empty($context['member']['ip'])) { |
|
| 430 | + echo ' |
|
| 405 | 431 | <dt>', $txt['ip'], ': </dt> |
| 406 | 432 | <dd><a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['member']['ip'], ';u=', $context['member']['id'], '">', $context['member']['ip'], '</a></dd>'; |
| 433 | + } |
|
| 407 | 434 | |
| 408 | - if (empty($modSettings['disableHostnameLookup']) && !empty($context['member']['ip'])) |
|
| 409 | - echo ' |
|
| 435 | + if (empty($modSettings['disableHostnameLookup']) && !empty($context['member']['ip'])) { |
|
| 436 | + echo ' |
|
| 410 | 437 | <dt>', $txt['hostname'], ': </dt> |
| 411 | 438 | <dd>', $context['member']['hostname'], '</dd>'; |
| 439 | + } |
|
| 412 | 440 | } |
| 413 | 441 | |
| 414 | 442 | echo ' |
| 415 | 443 | <dt>', $txt['local_time'], ':</dt> |
| 416 | 444 | <dd>', $context['member']['local_time'], '</dd>'; |
| 417 | 445 | |
| 418 | - if (!empty($modSettings['userLanguage']) && !empty($context['member']['language'])) |
|
| 419 | - echo ' |
|
| 446 | + if (!empty($modSettings['userLanguage']) && !empty($context['member']['language'])) { |
|
| 447 | + echo ' |
|
| 420 | 448 | <dt>', $txt['language'], ':</dt> |
| 421 | 449 | <dd>', $context['member']['language'], '</dd>'; |
| 450 | + } |
|
| 422 | 451 | |
| 423 | - if ($context['member']['show_last_login']) |
|
| 424 | - echo ' |
|
| 452 | + if ($context['member']['show_last_login']) { |
|
| 453 | + echo ' |
|
| 425 | 454 | <dt>', $txt['lastLoggedIn'], ': </dt> |
| 426 | 455 | <dd>', $context['member']['last_login'], (!empty($context['member']['is_hidden']) ? ' (' . $txt['hidden'] . ')' : ''), '</dd>'; |
| 456 | + } |
|
| 427 | 457 | |
| 428 | 458 | echo ' |
| 429 | 459 | </dl>'; |
@@ -432,42 +462,47 @@ discard block |
||
| 432 | 462 | if (!empty($context['print_custom_fields']['above_signature'])) |
| 433 | 463 | { |
| 434 | 464 | $fields = ''; |
| 435 | - foreach ($context['print_custom_fields']['above_signature'] as $field) |
|
| 436 | - if (!empty($field['output_html'])) |
|
| 465 | + foreach ($context['print_custom_fields']['above_signature'] as $field) { |
|
| 466 | + if (!empty($field['output_html'])) |
|
| 437 | 467 | $fields .= ' |
| 438 | 468 | <li>' . $field['output_html'] . '</li>'; |
| 469 | + } |
|
| 439 | 470 | |
| 440 | - if (!empty($fields)) |
|
| 441 | - echo ' |
|
| 471 | + if (!empty($fields)) { |
|
| 472 | + echo ' |
|
| 442 | 473 | <div class="custom_fields_above_signature"> |
| 443 | 474 | <ul class="nolist">', $fields, ' |
| 444 | 475 | </ul> |
| 445 | 476 | </div>'; |
| 477 | + } |
|
| 446 | 478 | } |
| 447 | 479 | |
| 448 | 480 | // Show the users signature. |
| 449 | - if ($context['signature_enabled'] && !empty($context['member']['signature'])) |
|
| 450 | - echo ' |
|
| 481 | + if ($context['signature_enabled'] && !empty($context['member']['signature'])) { |
|
| 482 | + echo ' |
|
| 451 | 483 | <div class="signature"> |
| 452 | 484 | <h5>', $txt['signature'], ':</h5> |
| 453 | 485 | ', $context['member']['signature'], ' |
| 454 | 486 | </div>'; |
| 487 | + } |
|
| 455 | 488 | |
| 456 | 489 | // Are there any custom profile fields for below the signature? |
| 457 | 490 | if (!empty($context['print_custom_fields']['below_signature'])) |
| 458 | 491 | { |
| 459 | 492 | $fields = ''; |
| 460 | - foreach ($context['print_custom_fields']['below_signature'] as $field) |
|
| 461 | - if (!empty($field['output_html'])) |
|
| 493 | + foreach ($context['print_custom_fields']['below_signature'] as $field) { |
|
| 494 | + if (!empty($field['output_html'])) |
|
| 462 | 495 | $fields .= ' |
| 463 | 496 | <li>' . $field['output_html'] . '</li>'; |
| 497 | + } |
|
| 464 | 498 | |
| 465 | - if (!empty($fields)) |
|
| 466 | - echo ' |
|
| 499 | + if (!empty($fields)) { |
|
| 500 | + echo ' |
|
| 467 | 501 | <div class="custom_fields_below_signature"> |
| 468 | 502 | <ul class="nolist">', $fields, ' |
| 469 | 503 | </ul> |
| 470 | 504 | </div>'; |
| 505 | + } |
|
| 471 | 506 | } |
| 472 | 507 | |
| 473 | 508 | echo ' |
@@ -509,62 +544,70 @@ discard block |
||
| 509 | 544 | </div> |
| 510 | 545 | <div class="list_posts">'; |
| 511 | 546 | |
| 512 | - if (!$post['approved']) |
|
| 513 | - echo ' |
|
| 547 | + if (!$post['approved']) { |
|
| 548 | + echo ' |
|
| 514 | 549 | <div class="approve_post"> |
| 515 | 550 | <em>', $txt['post_awaiting_approval'], '</em> |
| 516 | 551 | </div>'; |
| 552 | + } |
|
| 517 | 553 | |
| 518 | 554 | echo ' |
| 519 | 555 | ', $post['body'], ' |
| 520 | 556 | </div>'; |
| 521 | 557 | |
| 522 | - if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) |
|
| 523 | - echo ' |
|
| 558 | + if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) { |
|
| 559 | + echo ' |
|
| 524 | 560 | <div class="floatright"> |
| 525 | 561 | <ul class="quickbuttons">'; |
| 562 | + } |
|
| 526 | 563 | |
| 527 | 564 | // If they *can* reply? |
| 528 | - if ($post['can_reply']) |
|
| 529 | - echo ' |
|
| 565 | + if ($post['can_reply']) { |
|
| 566 | + echo ' |
|
| 530 | 567 | <li><a href="', $scripturl, '?action=post;topic=', $post['topic'], '.', $post['start'], '"><span class="generic_icons reply_button"></span>', $txt['reply'], '</a></li>'; |
| 568 | + } |
|
| 531 | 569 | |
| 532 | 570 | // If they *can* quote? |
| 533 | - if ($post['can_quote']) |
|
| 534 | - echo ' |
|
| 571 | + if ($post['can_quote']) { |
|
| 572 | + echo ' |
|
| 535 | 573 | <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>'; |
| 574 | + } |
|
| 536 | 575 | |
| 537 | 576 | // How about... even... remove it entirely?! |
| 538 | - if ($post['can_delete']) |
|
| 539 | - echo ' |
|
| 577 | + if ($post['can_delete']) { |
|
| 578 | + echo ' |
|
| 540 | 579 | <li><a href="', $scripturl, '?action=deletemsg;msg=', $post['id'], ';topic=', $post['topic'], ';profile;u=', $context['member']['id'], ';start=', $context['start'], ';', $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>'; |
| 580 | + } |
|
| 541 | 581 | |
| 542 | - if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) |
|
| 543 | - echo ' |
|
| 582 | + if ($post['can_reply'] || $post['can_quote'] || $post['can_delete']) { |
|
| 583 | + echo ' |
|
| 544 | 584 | </ul> |
| 545 | 585 | </div><!-- .floatright -->'; |
| 586 | + } |
|
| 546 | 587 | |
| 547 | 588 | echo ' |
| 548 | 589 | </div><!-- $post[css_class] -->'; |
| 549 | 590 | } |
| 591 | + } else { |
|
| 592 | + template_show_list('attachments'); |
|
| 550 | 593 | } |
| 551 | - else |
|
| 552 | - template_show_list('attachments'); |
|
| 553 | 594 | |
| 554 | 595 | // No posts? Just end with a informative message. |
| 555 | - if ((isset($context['attachments']) && empty($context['attachments'])) || (!isset($context['attachments']) && empty($context['posts']))) |
|
| 556 | - echo ' |
|
| 596 | + if ((isset($context['attachments']) && empty($context['attachments'])) || (!isset($context['attachments']) && empty($context['posts']))) { |
|
| 597 | + echo ' |
|
| 557 | 598 | <div class="windowbg"> |
| 558 | 599 | ', isset($context['attachments']) ? $txt['show_attachments_none'] : ($context['is_topics'] ? $txt['show_topics_none'] : $txt['show_posts_none']), ' |
| 559 | 600 | </div>'; |
| 601 | + } |
|
| 560 | 602 | |
| 561 | 603 | // Show more page numbers. |
| 562 | - if (!empty($context['page_index'])) |
|
| 563 | - echo ' |
|
| 604 | + if (!empty($context['page_index'])) { |
|
| 605 | + echo ' |
|
| 564 | 606 | <div class="pagesection"> |
| 565 | 607 | <div class="pagelinks">', $context['page_index'], '</div> |
| 566 | 608 | </div>'; |
| 567 | -} |
|
| 609 | + } |
|
| 610 | + } |
|
| 568 | 611 | |
| 569 | 612 | /** |
| 570 | 613 | * Template for showing alerts within the alerts popup |
@@ -574,11 +617,12 @@ discard block |
||
| 574 | 617 | global $context, $txt, $scripturl; |
| 575 | 618 | |
| 576 | 619 | // Do we have an update message? |
| 577 | - if (!empty($context['update_message'])) |
|
| 578 | - echo ' |
|
| 620 | + if (!empty($context['update_message'])) { |
|
| 621 | + echo ' |
|
| 579 | 622 | <div class="infobox"> |
| 580 | 623 | ', $context['update_message'], ' |
| 581 | 624 | </div>'; |
| 625 | + } |
|
| 582 | 626 | |
| 583 | 627 | echo ' |
| 584 | 628 | <div class="cat_bar"> |
@@ -587,18 +631,18 @@ discard block |
||
| 587 | 631 | </h3> |
| 588 | 632 | </div>'; |
| 589 | 633 | |
| 590 | - if (empty($context['alerts'])) |
|
| 591 | - echo ' |
|
| 634 | + if (empty($context['alerts'])) { |
|
| 635 | + echo ' |
|
| 592 | 636 | <div class="information"> |
| 593 | 637 | ', $txt['alerts_none'], ' |
| 594 | 638 | </div>'; |
| 595 | - |
|
| 596 | - else |
|
| 639 | + } else |
|
| 597 | 640 | { |
| 598 | 641 | // Start the form if checkboxes are in use |
| 599 | - if ($context['showCheckboxes']) |
|
| 600 | - echo ' |
|
| 642 | + if ($context['showCheckboxes']) { |
|
| 643 | + echo ' |
|
| 601 | 644 | <form action="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=showalerts;save" method="post" accept-charset="', $context['character_set'], '" id="mark_all">'; |
| 645 | + } |
|
| 602 | 646 | |
| 603 | 647 | echo ' |
| 604 | 648 | <table id="alerts" class="table_grid">'; |
@@ -614,9 +658,10 @@ discard block |
||
| 614 | 658 | <li><a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=showalerts;do=remove;aid=', $id, ';', $context['session_var'], '=', $context['session_id'], '" class="you_sure"><span class="generic_icons remove_button"></span>', $txt['delete'], '</a></li> |
| 615 | 659 | <li><a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=showalerts;do=', ($alert['is_read'] != 0 ? 'unread' : 'read'), ';aid=', $id, ';', $context['session_var'], '=', $context['session_id'], '"><span class="generic_icons ', $alert['is_read'] != 0 ? 'unread_button' : 'read_button', '"></span>', ($alert['is_read'] != 0 ? $txt['mark_unread'] : $txt['mark_read_short']), '</a></li>'; |
| 616 | 660 | |
| 617 | - if ($context['showCheckboxes']) |
|
| 618 | - echo ' |
|
| 661 | + if ($context['showCheckboxes']) { |
|
| 662 | + echo ' |
|
| 619 | 663 | <li><input type="checkbox" name="mark[', $id, ']" value="', $id, '"></li>'; |
| 664 | + } |
|
| 620 | 665 | |
| 621 | 666 | echo ' |
| 622 | 667 | </ul> |
@@ -631,8 +676,8 @@ discard block |
||
| 631 | 676 | ', $context['pagination'], ' |
| 632 | 677 | </div>'; |
| 633 | 678 | |
| 634 | - if ($context['showCheckboxes']) |
|
| 635 | - echo ' |
|
| 679 | + if ($context['showCheckboxes']) { |
|
| 680 | + echo ' |
|
| 636 | 681 | <div class="floatright"> |
| 637 | 682 | ', $txt['check_all'], ': <input type="checkbox" name="select_all" id="select_all"> |
| 638 | 683 | <select name="mark_as"> |
@@ -643,14 +688,16 @@ discard block |
||
| 643 | 688 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
| 644 | 689 | <input type="submit" name="req" value="', $txt['quick_mod_go'], '" class="button you_sure"> |
| 645 | 690 | </div>'; |
| 691 | + } |
|
| 646 | 692 | |
| 647 | 693 | echo ' |
| 648 | 694 | </div>'; |
| 649 | 695 | |
| 650 | - if ($context['showCheckboxes']) |
|
| 651 | - echo ' |
|
| 696 | + if ($context['showCheckboxes']) { |
|
| 697 | + echo ' |
|
| 652 | 698 | </form>'; |
| 653 | 699 | } |
| 700 | + } |
|
| 654 | 701 | } |
| 655 | 702 | |
| 656 | 703 | /** |
@@ -671,12 +718,12 @@ discard block |
||
| 671 | 718 | </div>' : ''; |
| 672 | 719 | |
| 673 | 720 | // No drafts? Just show an informative message. |
| 674 | - if (empty($context['drafts'])) |
|
| 675 | - echo ' |
|
| 721 | + if (empty($context['drafts'])) { |
|
| 722 | + echo ' |
|
| 676 | 723 | <div class="windowbg centertext"> |
| 677 | 724 | ', $txt['draft_none'], ' |
| 678 | 725 | </div>'; |
| 679 | - else |
|
| 726 | + } else |
|
| 680 | 727 | { |
| 681 | 728 | // For every draft to be displayed, give it its own div, and show the important details of the draft. |
| 682 | 729 | foreach ($context['drafts'] as $draft) |
@@ -688,13 +735,15 @@ discard block |
||
| 688 | 735 | <h5> |
| 689 | 736 | <strong><a href="', $scripturl, '?board=', $draft['board']['id'], '.0">', $draft['board']['name'], '</a> / ', $draft['topic']['link'], '</strong> '; |
| 690 | 737 | |
| 691 | - if (!empty($draft['sticky'])) |
|
| 692 | - echo ' |
|
| 738 | + if (!empty($draft['sticky'])) { |
|
| 739 | + echo ' |
|
| 693 | 740 | <span class="generic_icons sticky" title="', $txt['sticky_topic'], '"></span>'; |
| 741 | + } |
|
| 694 | 742 | |
| 695 | - if (!empty($draft['locked'])) |
|
| 696 | - echo ' |
|
| 743 | + if (!empty($draft['locked'])) { |
|
| 744 | + echo ' |
|
| 697 | 745 | <span class="generic_icons lock" title="', $txt['locked_topic'], '"></span>'; |
| 746 | + } |
|
| 698 | 747 | |
| 699 | 748 | echo ' |
| 700 | 749 | </h5> |
@@ -727,13 +776,13 @@ discard block |
||
| 727 | 776 | { |
| 728 | 777 | global $context, $scripturl, $txt; |
| 729 | 778 | |
| 730 | - if (!empty($context['saved_successful'])) |
|
| 731 | - echo ' |
|
| 779 | + if (!empty($context['saved_successful'])) { |
|
| 780 | + echo ' |
|
| 732 | 781 | <div class="infobox">', $context['user']['is_owner'] ? $txt['profile_updated_own'] : sprintf($txt['profile_updated_else'], $context['member']['name']), '</div>'; |
| 733 | - |
|
| 734 | - elseif (!empty($context['saved_failed'])) |
|
| 735 | - echo ' |
|
| 782 | + } elseif (!empty($context['saved_failed'])) { |
|
| 783 | + echo ' |
|
| 736 | 784 | <div class="errorbox">', $context['saved_failed'], '</div>'; |
| 785 | + } |
|
| 737 | 786 | |
| 738 | 787 | echo ' |
| 739 | 788 | <div id="edit_buddies"> |
@@ -748,14 +797,16 @@ discard block |
||
| 748 | 797 | <th scope="col" class="quarter_table">', $txt['name'], '</th> |
| 749 | 798 | <th scope="col">', $txt['status'], '</th>'; |
| 750 | 799 | |
| 751 | - if (allowedTo('moderate_forum')) |
|
| 752 | - echo ' |
|
| 800 | + if (allowedTo('moderate_forum')) { |
|
| 801 | + echo ' |
|
| 753 | 802 | <th scope="col">', $txt['email'], '</th>'; |
| 803 | + } |
|
| 754 | 804 | |
| 755 | - if (!empty($context['custom_pf'])) |
|
| 756 | - foreach ($context['custom_pf'] as $column) |
|
| 805 | + if (!empty($context['custom_pf'])) { |
|
| 806 | + foreach ($context['custom_pf'] as $column) |
|
| 757 | 807 | echo ' |
| 758 | 808 | <th scope="col">', $column['label'], '</th>'; |
| 809 | + } |
|
| 759 | 810 | |
| 760 | 811 | echo ' |
| 761 | 812 | <th scope="col">', $txt['remove'], '</th> |
@@ -764,13 +815,14 @@ discard block |
||
| 764 | 815 | <tbody>'; |
| 765 | 816 | |
| 766 | 817 | // If they don't have any buddies don't list them! |
| 767 | - if (empty($context['buddies'])) |
|
| 768 | - echo ' |
|
| 818 | + if (empty($context['buddies'])) { |
|
| 819 | + echo ' |
|
| 769 | 820 | <tr class="windowbg"> |
| 770 | 821 | <td colspan="', allowedTo('moderate_forum') ? '10' : '9', '"> |
| 771 | 822 | <strong>', $txt['no_buddies'], '</strong> |
| 772 | 823 | </td> |
| 773 | 824 | </tr>'; |
| 825 | + } |
|
| 774 | 826 | |
| 775 | 827 | // Now loop through each buddy showing info on each. |
| 776 | 828 | else |
@@ -784,17 +836,19 @@ discard block |
||
| 784 | 836 | <a href="', $buddy['online']['href'], '"><span class="' . ($buddy['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $buddy['online']['text'] . '"></span></a> |
| 785 | 837 | </td>'; |
| 786 | 838 | |
| 787 | - if ($buddy['show_email']) |
|
| 788 | - echo ' |
|
| 839 | + if ($buddy['show_email']) { |
|
| 840 | + echo ' |
|
| 789 | 841 | <td> |
| 790 | 842 | <a href="mailto:' . $buddy['email'] . '" rel="nofollow"><span class="generic_icons mail icon" title="' . $txt['email'] . ' ' . $buddy['name'] . '"></span></a> |
| 791 | 843 | </td>'; |
| 844 | + } |
|
| 792 | 845 | |
| 793 | 846 | // Show the custom profile fields for this user. |
| 794 | - if (!empty($context['custom_pf'])) |
|
| 795 | - foreach ($context['custom_pf'] as $key => $column) |
|
| 847 | + if (!empty($context['custom_pf'])) { |
|
| 848 | + foreach ($context['custom_pf'] as $key => $column) |
|
| 796 | 849 | echo ' |
| 797 | 850 | <td class="lefttext">', $buddy['options'][$key], '</td>'; |
| 851 | + } |
|
| 798 | 852 | |
| 799 | 853 | echo ' |
| 800 | 854 | <td> |
@@ -827,9 +881,10 @@ discard block |
||
| 827 | 881 | </dl> |
| 828 | 882 | </div>'; |
| 829 | 883 | |
| 830 | - if (!empty($context['token_check'])) |
|
| 831 | - echo ' |
|
| 884 | + if (!empty($context['token_check'])) { |
|
| 885 | + echo ' |
|
| 832 | 886 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
| 887 | + } |
|
| 833 | 888 | |
| 834 | 889 | echo ' |
| 835 | 890 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -855,13 +910,13 @@ discard block |
||
| 855 | 910 | { |
| 856 | 911 | global $context, $scripturl, $txt; |
| 857 | 912 | |
| 858 | - if (!empty($context['saved_successful'])) |
|
| 859 | - echo ' |
|
| 913 | + if (!empty($context['saved_successful'])) { |
|
| 914 | + echo ' |
|
| 860 | 915 | <div class="infobox">', $context['user']['is_owner'] ? $txt['profile_updated_own'] : sprintf($txt['profile_updated_else'], $context['member']['name']), '</div>'; |
| 861 | - |
|
| 862 | - elseif (!empty($context['saved_failed'])) |
|
| 863 | - echo ' |
|
| 916 | + } elseif (!empty($context['saved_failed'])) { |
|
| 917 | + echo ' |
|
| 864 | 918 | <div class="errorbox">', $context['saved_failed'], '</div>'; |
| 919 | + } |
|
| 865 | 920 | |
| 866 | 921 | echo ' |
| 867 | 922 | <div id="edit_buddies"> |
@@ -876,9 +931,10 @@ discard block |
||
| 876 | 931 | <th scope="col" class="quarter_table">', $txt['name'], '</th> |
| 877 | 932 | <th scope="col">', $txt['status'], '</th>'; |
| 878 | 933 | |
| 879 | - if (allowedTo('moderate_forum')) |
|
| 880 | - echo ' |
|
| 934 | + if (allowedTo('moderate_forum')) { |
|
| 935 | + echo ' |
|
| 881 | 936 | <th scope="col">', $txt['email'], '</th>'; |
| 937 | + } |
|
| 882 | 938 | |
| 883 | 939 | echo ' |
| 884 | 940 | <th scope="col">', $txt['ignore_remove'], '</th> |
@@ -887,13 +943,14 @@ discard block |
||
| 887 | 943 | <tbody>'; |
| 888 | 944 | |
| 889 | 945 | // If they don't have anyone on their ignore list, don't list it! |
| 890 | - if (empty($context['ignore_list'])) |
|
| 891 | - echo ' |
|
| 946 | + if (empty($context['ignore_list'])) { |
|
| 947 | + echo ' |
|
| 892 | 948 | <tr class="windowbg"> |
| 893 | 949 | <td colspan="', allowedTo('moderate_forum') ? '4' : '3', '"> |
| 894 | 950 | <strong>', $txt['no_ignore'], '</strong> |
| 895 | 951 | </td> |
| 896 | 952 | </tr>'; |
| 953 | + } |
|
| 897 | 954 | |
| 898 | 955 | // Now loop through each buddy showing info on each. |
| 899 | 956 | foreach ($context['ignore_list'] as $member) |
@@ -905,11 +962,12 @@ discard block |
||
| 905 | 962 | <a href="', $member['online']['href'], '"><span class="' . ($member['online']['is_online'] == 1 ? 'on' : 'off') . '" title="' . $member['online']['text'] . '"></span></a> |
| 906 | 963 | </td>'; |
| 907 | 964 | |
| 908 | - if ($member['show_email']) |
|
| 909 | - echo ' |
|
| 965 | + if ($member['show_email']) { |
|
| 966 | + echo ' |
|
| 910 | 967 | <td> |
| 911 | 968 | <a href="mailto:' . $member['email'] . '" rel="nofollow"><span class="generic_icons mail icon" title="' . $txt['email'] . ' ' . $member['name'] . '"></span></a> |
| 912 | 969 | </td>'; |
| 970 | + } |
|
| 913 | 971 | echo ' |
| 914 | 972 | <td> |
| 915 | 973 | <a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=lists;sa=ignore;remove=', $member['id'], ';', $context['session_var'], '=', $context['session_id'], '"><span class="generic_icons delete" title="', $txt['ignore_remove'], '"></span></a> |
@@ -939,9 +997,10 @@ discard block |
||
| 939 | 997 | </dl> |
| 940 | 998 | </div>'; |
| 941 | 999 | |
| 942 | - if (!empty($context['token_check'])) |
|
| 943 | - echo ' |
|
| 1000 | + if (!empty($context['token_check'])) { |
|
| 1001 | + echo ' |
|
| 944 | 1002 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
| 1003 | + } |
|
| 945 | 1004 | |
| 946 | 1005 | echo ' |
| 947 | 1006 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -987,9 +1046,10 @@ discard block |
||
| 987 | 1046 | <a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['last_ip'], ';u=', $context['member']['id'], '">', $context['last_ip'], '</a>'; |
| 988 | 1047 | |
| 989 | 1048 | // Second address detected? |
| 990 | - if (!empty($context['last_ip2'])) |
|
| 991 | - echo ' |
|
| 1049 | + if (!empty($context['last_ip2'])) { |
|
| 1050 | + echo ' |
|
| 992 | 1051 | , <a href="', $scripturl, '?action=profile;area=tracking;sa=ip;searchip=', $context['last_ip2'], ';u=', $context['member']['id'], '">', $context['last_ip2'], '</a>'; |
| 1052 | + } |
|
| 993 | 1053 | |
| 994 | 1054 | echo ' |
| 995 | 1055 | </dd>'; |
@@ -1055,9 +1115,10 @@ discard block |
||
| 1055 | 1115 | </div> |
| 1056 | 1116 | <div class="windowbg noup">'; |
| 1057 | 1117 | |
| 1058 | - foreach ($context['whois_servers'] as $server) |
|
| 1059 | - echo ' |
|
| 1118 | + foreach ($context['whois_servers'] as $server) { |
|
| 1119 | + echo ' |
|
| 1060 | 1120 | <a href="', $server['url'], '" target="_blank" rel="noopener"', '>', $server['name'], '</a><br>'; |
| 1121 | + } |
|
| 1061 | 1122 | echo ' |
| 1062 | 1123 | </div> |
| 1063 | 1124 | <br>'; |
@@ -1069,13 +1130,12 @@ discard block |
||
| 1069 | 1130 | <h3 class="catbg">', $txt['members_from_ip'], ' ', $context['ip'], '</h3> |
| 1070 | 1131 | </div>'; |
| 1071 | 1132 | |
| 1072 | - if (empty($context['ips'])) |
|
| 1073 | - echo ' |
|
| 1133 | + if (empty($context['ips'])) { |
|
| 1134 | + echo ' |
|
| 1074 | 1135 | <p class="windowbg description"> |
| 1075 | 1136 | <em>', $txt['no_members_from_ip'], '</em> |
| 1076 | 1137 | </p>'; |
| 1077 | - |
|
| 1078 | - else |
|
| 1138 | + } else |
|
| 1079 | 1139 | { |
| 1080 | 1140 | echo ' |
| 1081 | 1141 | <table class="table_grid"> |
@@ -1088,12 +1148,13 @@ discard block |
||
| 1088 | 1148 | <tbody>'; |
| 1089 | 1149 | |
| 1090 | 1150 | // Loop through each of the members and display them. |
| 1091 | - foreach ($context['ips'] as $ip => $memberlist) |
|
| 1092 | - echo ' |
|
| 1151 | + foreach ($context['ips'] as $ip => $memberlist) { |
|
| 1152 | + echo ' |
|
| 1093 | 1153 | <tr class="windowbg"> |
| 1094 | 1154 | <td><a href="', $context['base_url'], ';searchip=', $ip, '">', $ip, '</a></td> |
| 1095 | 1155 | <td>', implode(', ', $memberlist), '</td> |
| 1096 | 1156 | </tr>'; |
| 1157 | + } |
|
| 1097 | 1158 | |
| 1098 | 1159 | echo ' |
| 1099 | 1160 | </tbody> |
@@ -1135,11 +1196,10 @@ discard block |
||
| 1135 | 1196 | </h3> |
| 1136 | 1197 | </div>'; |
| 1137 | 1198 | |
| 1138 | - if ($context['member']['has_all_permissions']) |
|
| 1139 | - echo ' |
|
| 1199 | + if ($context['member']['has_all_permissions']) { |
|
| 1200 | + echo ' |
|
| 1140 | 1201 | <div class="information">', $txt['showPermissions_all'], '</div>'; |
| 1141 | - |
|
| 1142 | - else |
|
| 1202 | + } else |
|
| 1143 | 1203 | { |
| 1144 | 1204 | echo ' |
| 1145 | 1205 | <div class="information">',$txt['showPermissions_help'], '</div> |
@@ -1154,9 +1214,10 @@ discard block |
||
| 1154 | 1214 | <div class="windowbg smalltext"> |
| 1155 | 1215 | ', $txt['showPermissions_restricted_boards_desc'], ':<br>'; |
| 1156 | 1216 | |
| 1157 | - foreach ($context['no_access_boards'] as $no_access_board) |
|
| 1158 | - echo ' |
|
| 1217 | + foreach ($context['no_access_boards'] as $no_access_board) { |
|
| 1218 | + echo ' |
|
| 1159 | 1219 | <a href="', $scripturl, '?board=', $no_access_board['id'], '.0">', $no_access_board['name'], '</a>', $no_access_board['is_last'] ? '' : ', '; |
| 1220 | + } |
|
| 1160 | 1221 | echo ' |
| 1161 | 1222 | </div>'; |
| 1162 | 1223 | } |
@@ -1188,12 +1249,13 @@ discard block |
||
| 1188 | 1249 | </td> |
| 1189 | 1250 | <td class="smalltext">'; |
| 1190 | 1251 | |
| 1191 | - if ($permission['is_denied']) |
|
| 1192 | - echo ' |
|
| 1252 | + if ($permission['is_denied']) { |
|
| 1253 | + echo ' |
|
| 1193 | 1254 | <span class="alert">', $txt['showPermissions_denied'], ': ', implode(', ', $permission['groups']['denied']), '</span>'; |
| 1194 | - else |
|
| 1195 | - echo ' |
|
| 1255 | + } else { |
|
| 1256 | + echo ' |
|
| 1196 | 1257 | ', $txt['showPermissions_given'], ': ', implode(', ', $permission['groups']['allowed']); |
| 1258 | + } |
|
| 1197 | 1259 | |
| 1198 | 1260 | echo ' |
| 1199 | 1261 | </td> |
@@ -1204,10 +1266,10 @@ discard block |
||
| 1204 | 1266 | </table> |
| 1205 | 1267 | </div><!-- .tborder --> |
| 1206 | 1268 | <br>'; |
| 1207 | - } |
|
| 1208 | - else |
|
| 1209 | - echo ' |
|
| 1269 | + } else { |
|
| 1270 | + echo ' |
|
| 1210 | 1271 | <p class="windowbg">', $txt['showPermissions_none_general'], '</p>'; |
| 1272 | + } |
|
| 1211 | 1273 | |
| 1212 | 1274 | // Board permission section. |
| 1213 | 1275 | echo ' |
@@ -1218,14 +1280,16 @@ discard block |
||
| 1218 | 1280 | <select name="board" onchange="if (this.options[this.selectedIndex].value) this.form.submit();"> |
| 1219 | 1281 | <option value="0"', $context['board'] == 0 ? ' selected' : '', '>', $txt['showPermissions_global'], '</option>'; |
| 1220 | 1282 | |
| 1221 | - if (!empty($context['boards'])) |
|
| 1222 | - echo ' |
|
| 1283 | + if (!empty($context['boards'])) { |
|
| 1284 | + echo ' |
|
| 1223 | 1285 | <option value="" disabled>---------------------------</option>'; |
| 1286 | + } |
|
| 1224 | 1287 | |
| 1225 | 1288 | // Fill the box with any local permission boards. |
| 1226 | - foreach ($context['boards'] as $board) |
|
| 1227 | - echo ' |
|
| 1289 | + foreach ($context['boards'] as $board) { |
|
| 1290 | + echo ' |
|
| 1228 | 1291 | <option value="', $board['id'], '"', $board['selected'] ? ' selected' : '', '>', $board['name'], ' (', $board['profile_name'], ')</option>'; |
| 1292 | + } |
|
| 1229 | 1293 | |
| 1230 | 1294 | echo ' |
| 1231 | 1295 | </select> |
@@ -1254,13 +1318,13 @@ discard block |
||
| 1254 | 1318 | </td> |
| 1255 | 1319 | <td class="smalltext">'; |
| 1256 | 1320 | |
| 1257 | - if ($permission['is_denied']) |
|
| 1258 | - echo ' |
|
| 1321 | + if ($permission['is_denied']) { |
|
| 1322 | + echo ' |
|
| 1259 | 1323 | <span class="alert">', $txt['showPermissions_denied'], ': ', implode(', ', $permission['groups']['denied']), '</span>'; |
| 1260 | - |
|
| 1261 | - else |
|
| 1262 | - echo ' |
|
| 1324 | + } else { |
|
| 1325 | + echo ' |
|
| 1263 | 1326 | ', $txt['showPermissions_given'], ': ', implode(', ', $permission['groups']['allowed']); |
| 1327 | + } |
|
| 1264 | 1328 | |
| 1265 | 1329 | echo ' |
| 1266 | 1330 | </td> |
@@ -1269,10 +1333,10 @@ discard block |
||
| 1269 | 1333 | echo ' |
| 1270 | 1334 | </tbody> |
| 1271 | 1335 | </table>'; |
| 1272 | - } |
|
| 1273 | - else |
|
| 1274 | - echo ' |
|
| 1336 | + } else { |
|
| 1337 | + echo ' |
|
| 1275 | 1338 | <p class="windowbg">', $txt['showPermissions_none_board'], '</p>'; |
| 1339 | + } |
|
| 1276 | 1340 | echo ' |
| 1277 | 1341 | </div><!-- #permissions -->'; |
| 1278 | 1342 | } |
@@ -1313,9 +1377,10 @@ discard block |
||
| 1313 | 1377 | </div>'; |
| 1314 | 1378 | |
| 1315 | 1379 | // If they haven't post at all, don't draw the graph. |
| 1316 | - if (empty($context['posts_by_time'])) |
|
| 1317 | - echo ' |
|
| 1380 | + if (empty($context['posts_by_time'])) { |
|
| 1381 | + echo ' |
|
| 1318 | 1382 | <p class="centertext padding">', $txt['statPanel_noPosts'], '</p>'; |
| 1383 | + } |
|
| 1319 | 1384 | |
| 1320 | 1385 | // Otherwise do! |
| 1321 | 1386 | else |
@@ -1324,8 +1389,8 @@ discard block |
||
| 1324 | 1389 | <ul class="activity_stats flow_hidden">'; |
| 1325 | 1390 | |
| 1326 | 1391 | // The labels. |
| 1327 | - foreach ($context['posts_by_time'] as $time_of_day) |
|
| 1328 | - echo ' |
|
| 1392 | + foreach ($context['posts_by_time'] as $time_of_day) { |
|
| 1393 | + echo ' |
|
| 1329 | 1394 | <li> |
| 1330 | 1395 | <div class="generic_bar vertical"> |
| 1331 | 1396 | <div class="bar" style="height: ', (int) $time_of_day['relative_percent'], '%;"> |
@@ -1334,6 +1399,7 @@ discard block |
||
| 1334 | 1399 | </div> |
| 1335 | 1400 | <span class="stats_hour">', $time_of_day['hour_format'], '</span> |
| 1336 | 1401 | </li>'; |
| 1402 | + } |
|
| 1337 | 1403 | |
| 1338 | 1404 | echo ' |
| 1339 | 1405 | </ul>'; |
@@ -1352,11 +1418,10 @@ discard block |
||
| 1352 | 1418 | </h3> |
| 1353 | 1419 | </div>'; |
| 1354 | 1420 | |
| 1355 | - if (empty($context['popular_boards'])) |
|
| 1356 | - echo ' |
|
| 1421 | + if (empty($context['popular_boards'])) { |
|
| 1422 | + echo ' |
|
| 1357 | 1423 | <p class="centertext padding">', $txt['statPanel_noPosts'], '</p>'; |
| 1358 | - |
|
| 1359 | - else |
|
| 1424 | + } else |
|
| 1360 | 1425 | { |
| 1361 | 1426 | echo ' |
| 1362 | 1427 | <dl class="stats">'; |
@@ -1386,10 +1451,10 @@ discard block |
||
| 1386 | 1451 | </h3> |
| 1387 | 1452 | </div>'; |
| 1388 | 1453 | |
| 1389 | - if (empty($context['board_activity'])) |
|
| 1390 | - echo ' |
|
| 1454 | + if (empty($context['board_activity'])) { |
|
| 1455 | + echo ' |
|
| 1391 | 1456 | <p class="centertext padding">', $txt['statPanel_noPosts'], '</p>'; |
| 1392 | - else |
|
| 1457 | + } else |
|
| 1393 | 1458 | { |
| 1394 | 1459 | echo ' |
| 1395 | 1460 | <dl class="stats">'; |
@@ -1440,90 +1505,97 @@ discard block |
||
| 1440 | 1505 | <h3 class="catbg profile_hd">'; |
| 1441 | 1506 | |
| 1442 | 1507 | // Don't say "Profile" if this isn't the profile... |
| 1443 | - if (!empty($context['profile_header_text'])) |
|
| 1444 | - echo ' |
|
| 1508 | + if (!empty($context['profile_header_text'])) { |
|
| 1509 | + echo ' |
|
| 1445 | 1510 | ', $context['profile_header_text']; |
| 1446 | - else |
|
| 1447 | - echo ' |
|
| 1511 | + } else { |
|
| 1512 | + echo ' |
|
| 1448 | 1513 | ', $txt['profile']; |
| 1514 | + } |
|
| 1449 | 1515 | |
| 1450 | 1516 | echo ' |
| 1451 | 1517 | </h3> |
| 1452 | 1518 | </div>'; |
| 1453 | 1519 | |
| 1454 | 1520 | // Have we some description? |
| 1455 | - if ($context['page_desc']) |
|
| 1456 | - echo ' |
|
| 1521 | + if ($context['page_desc']) { |
|
| 1522 | + echo ' |
|
| 1457 | 1523 | <p class="information">', $context['page_desc'], '</p>'; |
| 1524 | + } |
|
| 1458 | 1525 | |
| 1459 | 1526 | echo ' |
| 1460 | 1527 | <div class="roundframe">'; |
| 1461 | 1528 | |
| 1462 | 1529 | // Any bits at the start? |
| 1463 | - if (!empty($context['profile_prehtml'])) |
|
| 1464 | - echo ' |
|
| 1530 | + if (!empty($context['profile_prehtml'])) { |
|
| 1531 | + echo ' |
|
| 1465 | 1532 | <div>', $context['profile_prehtml'], '</div>'; |
| 1533 | + } |
|
| 1466 | 1534 | |
| 1467 | - if (!empty($context['profile_fields'])) |
|
| 1468 | - echo ' |
|
| 1535 | + if (!empty($context['profile_fields'])) { |
|
| 1536 | + echo ' |
|
| 1469 | 1537 | <dl class="settings">'; |
| 1538 | + } |
|
| 1470 | 1539 | |
| 1471 | 1540 | // Start the big old loop 'of love. |
| 1472 | 1541 | $lastItem = 'hr'; |
| 1473 | 1542 | foreach ($context['profile_fields'] as $key => $field) |
| 1474 | 1543 | { |
| 1475 | 1544 | // We add a little hack to be sure we never get more than one hr in a row! |
| 1476 | - if ($lastItem == 'hr' && $field['type'] == 'hr') |
|
| 1477 | - continue; |
|
| 1545 | + if ($lastItem == 'hr' && $field['type'] == 'hr') { |
|
| 1546 | + continue; |
|
| 1547 | + } |
|
| 1478 | 1548 | |
| 1479 | 1549 | $lastItem = $field['type']; |
| 1480 | - if ($field['type'] == 'hr') |
|
| 1481 | - echo ' |
|
| 1550 | + if ($field['type'] == 'hr') { |
|
| 1551 | + echo ' |
|
| 1482 | 1552 | </dl> |
| 1483 | 1553 | <hr> |
| 1484 | 1554 | <dl class="settings">'; |
| 1485 | - |
|
| 1486 | - elseif ($field['type'] == 'callback') |
|
| 1555 | + } elseif ($field['type'] == 'callback') |
|
| 1487 | 1556 | { |
| 1488 | 1557 | if (isset($field['callback_func']) && function_exists('template_profile_' . $field['callback_func'])) |
| 1489 | 1558 | { |
| 1490 | 1559 | $callback_func = 'template_profile_' . $field['callback_func']; |
| 1491 | 1560 | $callback_func(); |
| 1492 | 1561 | } |
| 1493 | - } |
|
| 1494 | - else |
|
| 1562 | + } else |
|
| 1495 | 1563 | { |
| 1496 | 1564 | echo ' |
| 1497 | 1565 | <dt> |
| 1498 | 1566 | <strong', !empty($field['is_error']) ? ' class="error"' : '', '>', $field['type'] !== 'label' ? '<label for="' . $key . '">' : '', $field['label'], $field['type'] !== 'label' ? '</label>' : '', '</strong>'; |
| 1499 | 1567 | |
| 1500 | 1568 | // Does it have any subtext to show? |
| 1501 | - if (!empty($field['subtext'])) |
|
| 1502 | - echo ' |
|
| 1569 | + if (!empty($field['subtext'])) { |
|
| 1570 | + echo ' |
|
| 1503 | 1571 | <br> |
| 1504 | 1572 | <span class="smalltext">', $field['subtext'], '</span>'; |
| 1573 | + } |
|
| 1505 | 1574 | |
| 1506 | 1575 | echo ' |
| 1507 | 1576 | </dt> |
| 1508 | 1577 | <dd>'; |
| 1509 | 1578 | |
| 1510 | 1579 | // Want to put something infront of the box? |
| 1511 | - if (!empty($field['preinput'])) |
|
| 1512 | - echo ' |
|
| 1580 | + if (!empty($field['preinput'])) { |
|
| 1581 | + echo ' |
|
| 1513 | 1582 | ', $field['preinput']; |
| 1583 | + } |
|
| 1514 | 1584 | |
| 1515 | 1585 | // What type of data are we showing? |
| 1516 | - if ($field['type'] == 'label') |
|
| 1517 | - echo ' |
|
| 1586 | + if ($field['type'] == 'label') { |
|
| 1587 | + echo ' |
|
| 1518 | 1588 | ', $field['value']; |
| 1589 | + } |
|
| 1519 | 1590 | |
| 1520 | 1591 | // Maybe it's a text box - very likely! |
| 1521 | 1592 | elseif (in_array($field['type'], array('int', 'float', 'text', 'password', 'color', 'date', 'datetime', 'datetime-local', 'email', 'month', 'number', 'time', 'url'))) |
| 1522 | 1593 | { |
| 1523 | - if ($field['type'] == 'int' || $field['type'] == 'float') |
|
| 1524 | - $type = 'number'; |
|
| 1525 | - else |
|
| 1526 | - $type = $field['type']; |
|
| 1594 | + if ($field['type'] == 'int' || $field['type'] == 'float') { |
|
| 1595 | + $type = 'number'; |
|
| 1596 | + } else { |
|
| 1597 | + $type = $field['type']; |
|
| 1598 | + } |
|
| 1527 | 1599 | $step = $field['type'] == 'float' ? ' step="0.1"' : ''; |
| 1528 | 1600 | |
| 1529 | 1601 | |
@@ -1531,10 +1603,11 @@ discard block |
||
| 1531 | 1603 | <input type="', $type, '" name="', $key, '" id="', $key, '" size="', empty($field['size']) ? 30 : $field['size'], '" value="', $field['value'], '" ', $field['input_attr'], ' ', $step, '>'; |
| 1532 | 1604 | } |
| 1533 | 1605 | // You "checking" me out? ;) |
| 1534 | - elseif ($field['type'] == 'check') |
|
| 1535 | - echo ' |
|
| 1606 | + elseif ($field['type'] == 'check') { |
|
| 1607 | + echo ' |
|
| 1536 | 1608 | <input type="hidden" name="', $key, '" value="0"> |
| 1537 | 1609 | <input type="checkbox" name="', $key, '" id="', $key, '"', !empty($field['value']) ? ' checked' : '', ' value="1" ', $field['input_attr'], '>'; |
| 1610 | + } |
|
| 1538 | 1611 | |
| 1539 | 1612 | // Always fun - select boxes! |
| 1540 | 1613 | elseif ($field['type'] == 'select') |
@@ -1545,14 +1618,16 @@ discard block |
||
| 1545 | 1618 | if (isset($field['options'])) |
| 1546 | 1619 | { |
| 1547 | 1620 | // Is this some code to generate the options? |
| 1548 | - if (!is_array($field['options'])) |
|
| 1549 | - $field['options'] = $field['options'](); |
|
| 1621 | + if (!is_array($field['options'])) { |
|
| 1622 | + $field['options'] = $field['options'](); |
|
| 1623 | + } |
|
| 1550 | 1624 | |
| 1551 | 1625 | // Assuming we now have some! |
| 1552 | - if (is_array($field['options'])) |
|
| 1553 | - foreach ($field['options'] as $value => $name) |
|
| 1626 | + if (is_array($field['options'])) { |
|
| 1627 | + foreach ($field['options'] as $value => $name) |
|
| 1554 | 1628 | echo ' |
| 1555 | 1629 | <option', is_numeric($value) ? ' value="" disabled' : ' value="' . $value . '"', $value === $field['value'] ? ' selected' : '', '>', $name, '</option>'; |
| 1630 | + } |
|
| 1556 | 1631 | } |
| 1557 | 1632 | |
| 1558 | 1633 | echo ' |
@@ -1560,31 +1635,34 @@ discard block |
||
| 1560 | 1635 | } |
| 1561 | 1636 | |
| 1562 | 1637 | // Something to end with? |
| 1563 | - if (!empty($field['postinput'])) |
|
| 1564 | - echo ' |
|
| 1638 | + if (!empty($field['postinput'])) { |
|
| 1639 | + echo ' |
|
| 1565 | 1640 | ', $field['postinput']; |
| 1641 | + } |
|
| 1566 | 1642 | |
| 1567 | 1643 | echo ' |
| 1568 | 1644 | </dd>'; |
| 1569 | 1645 | } |
| 1570 | 1646 | } |
| 1571 | 1647 | |
| 1572 | - if (!empty($context['profile_fields'])) |
|
| 1573 | - echo ' |
|
| 1648 | + if (!empty($context['profile_fields'])) { |
|
| 1649 | + echo ' |
|
| 1574 | 1650 | </dl>'; |
| 1651 | + } |
|
| 1575 | 1652 | |
| 1576 | 1653 | // Are there any custom profile fields - if so print them! |
| 1577 | 1654 | if (!empty($context['custom_fields'])) |
| 1578 | 1655 | { |
| 1579 | - if ($lastItem != 'hr') |
|
| 1580 | - echo ' |
|
| 1656 | + if ($lastItem != 'hr') { |
|
| 1657 | + echo ' |
|
| 1581 | 1658 | <hr>'; |
| 1659 | + } |
|
| 1582 | 1660 | |
| 1583 | 1661 | echo ' |
| 1584 | 1662 | <dl class="settings">'; |
| 1585 | 1663 | |
| 1586 | - foreach ($context['custom_fields'] as $field) |
|
| 1587 | - echo ' |
|
| 1664 | + foreach ($context['custom_fields'] as $field) { |
|
| 1665 | + echo ' |
|
| 1588 | 1666 | <dt> |
| 1589 | 1667 | <strong>', $field['name'], ': </strong><br> |
| 1590 | 1668 | <span class="smalltext">', $field['desc'], '</span> |
@@ -1592,19 +1670,21 @@ discard block |
||
| 1592 | 1670 | <dd> |
| 1593 | 1671 | ', $field['input_html'], ' |
| 1594 | 1672 | </dd>'; |
| 1673 | + } |
|
| 1595 | 1674 | |
| 1596 | 1675 | echo ' |
| 1597 | 1676 | </dl>'; |
| 1598 | 1677 | } |
| 1599 | 1678 | |
| 1600 | 1679 | // Any closing HTML? |
| 1601 | - if (!empty($context['profile_posthtml'])) |
|
| 1602 | - echo ' |
|
| 1680 | + if (!empty($context['profile_posthtml'])) { |
|
| 1681 | + echo ' |
|
| 1603 | 1682 | <div>', $context['profile_posthtml'], '</div>'; |
| 1683 | + } |
|
| 1604 | 1684 | |
| 1605 | 1685 | // Only show the password box if it's actually needed. |
| 1606 | - if ($context['require_password']) |
|
| 1607 | - echo ' |
|
| 1686 | + if ($context['require_password']) { |
|
| 1687 | + echo ' |
|
| 1608 | 1688 | <dl class="settings"> |
| 1609 | 1689 | <dt> |
| 1610 | 1690 | <strong', isset($context['modify_error']['bad_password']) || isset($context['modify_error']['no_password']) ? ' class="error"' : '', '><label for="oldpasswrd">', $txt['current_password'], ': </label></strong><br> |
@@ -1614,18 +1694,21 @@ discard block |
||
| 1614 | 1694 | <input type="password" name="oldpasswrd" id="oldpasswrd" size="20"> |
| 1615 | 1695 | </dd> |
| 1616 | 1696 | </dl>'; |
| 1697 | + } |
|
| 1617 | 1698 | |
| 1618 | 1699 | // The button shouldn't say "Change profile" unless we're changing the profile... |
| 1619 | - if (!empty($context['submit_button_text'])) |
|
| 1620 | - echo ' |
|
| 1700 | + if (!empty($context['submit_button_text'])) { |
|
| 1701 | + echo ' |
|
| 1621 | 1702 | <input type="submit" name="save" value="', $context['submit_button_text'], '" class="button floatright">'; |
| 1622 | - else |
|
| 1623 | - echo ' |
|
| 1703 | + } else { |
|
| 1704 | + echo ' |
|
| 1624 | 1705 | <input type="submit" name="save" value="', $txt['change_profile'], '" class="button floatright">'; |
| 1706 | + } |
|
| 1625 | 1707 | |
| 1626 | - if (!empty($context['token_check'])) |
|
| 1627 | - echo ' |
|
| 1708 | + if (!empty($context['token_check'])) { |
|
| 1709 | + echo ' |
|
| 1628 | 1710 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
| 1711 | + } |
|
| 1629 | 1712 | |
| 1630 | 1713 | echo ' |
| 1631 | 1714 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -1635,10 +1718,11 @@ discard block |
||
| 1635 | 1718 | </form>'; |
| 1636 | 1719 | |
| 1637 | 1720 | // Any final spellchecking stuff? |
| 1638 | - if (!empty($context['show_spellchecking'])) |
|
| 1639 | - echo ' |
|
| 1721 | + if (!empty($context['show_spellchecking'])) { |
|
| 1722 | + echo ' |
|
| 1640 | 1723 | <form name="spell_form" id="spell_form" method="post" accept-charset="', $context['character_set'], '" target="spellWindow" action="', $scripturl, '?action=spellcheck"><input type="hidden" name="spellstring" value=""></form>'; |
| 1641 | -} |
|
| 1724 | + } |
|
| 1725 | + } |
|
| 1642 | 1726 | |
| 1643 | 1727 | /** |
| 1644 | 1728 | * Personal Message settings. |
@@ -1675,10 +1759,11 @@ discard block |
||
| 1675 | 1759 | <select name="pm_receive_from" id="pm_receive_from"> |
| 1676 | 1760 | <option value="0"', empty($context['receive_from']) || (empty($modSettings['enable_buddylist']) && $context['receive_from'] < 3) ? ' selected' : '', '>', $txt['pm_receive_from_everyone'], '</option>'; |
| 1677 | 1761 | |
| 1678 | - if (!empty($modSettings['enable_buddylist'])) |
|
| 1679 | - echo ' |
|
| 1762 | + if (!empty($modSettings['enable_buddylist'])) { |
|
| 1763 | + echo ' |
|
| 1680 | 1764 | <option value="1"', !empty($context['receive_from']) && $context['receive_from'] == 1 ? ' selected' : '', '>', $txt['pm_receive_from_ignore'], '</option> |
| 1681 | 1765 | <option value="2"', !empty($context['receive_from']) && $context['receive_from'] == 2 ? ' selected' : '', '>', $txt['pm_receive_from_buddies'], '</option>'; |
| 1766 | + } |
|
| 1682 | 1767 | |
| 1683 | 1768 | echo ' |
| 1684 | 1769 | <option value="3"', !empty($context['receive_from']) && $context['receive_from'] > 2 ? ' selected' : '', '>', $txt['pm_receive_from_admins'], '</option> |
@@ -1721,11 +1806,12 @@ discard block |
||
| 1721 | 1806 | if (empty($setting) || !is_array($setting)) |
| 1722 | 1807 | { |
| 1723 | 1808 | // Insert a separator (unless this is the first item in the list) |
| 1724 | - if ($i !== $first_option_key) |
|
| 1725 | - echo ' |
|
| 1809 | + if ($i !== $first_option_key) { |
|
| 1810 | + echo ' |
|
| 1726 | 1811 | </dl> |
| 1727 | 1812 | <hr> |
| 1728 | 1813 | <dl class="settings">'; |
| 1814 | + } |
|
| 1729 | 1815 | |
| 1730 | 1816 | // Should we give a name to this section? |
| 1731 | 1817 | if (is_string($setting) && !empty($setting)) |
@@ -1734,69 +1820,67 @@ discard block |
||
| 1734 | 1820 | echo ' |
| 1735 | 1821 | <dt><strong>' . $setting . '</strong></dt> |
| 1736 | 1822 | <dd></dd>'; |
| 1823 | + } else { |
|
| 1824 | + $titled_section = false; |
|
| 1737 | 1825 | } |
| 1738 | - else |
|
| 1739 | - $titled_section = false; |
|
| 1740 | 1826 | |
| 1741 | 1827 | continue; |
| 1742 | 1828 | } |
| 1743 | 1829 | |
| 1744 | 1830 | // Is this disabled? |
| 1745 | - if ($setting['id'] == 'calendar_start_day' && empty($modSettings['cal_enabled'])) |
|
| 1746 | - continue; |
|
| 1747 | - |
|
| 1748 | - elseif (($setting['id'] == 'topics_per_page' || $setting['id'] == 'messages_per_page') && !empty($modSettings['disableCustomPerPage'])) |
|
| 1749 | - continue; |
|
| 1750 | - |
|
| 1751 | - elseif ($setting['id'] == 'show_no_censored' && empty($modSettings['allow_no_censored'])) |
|
| 1752 | - continue; |
|
| 1753 | - |
|
| 1754 | - elseif ($setting['id'] == 'posts_apply_ignore_list' && empty($modSettings['enable_buddylist'])) |
|
| 1755 | - continue; |
|
| 1756 | - |
|
| 1757 | - elseif ($setting['id'] == 'wysiwyg_default' && !empty($modSettings['disable_wysiwyg'])) |
|
| 1758 | - continue; |
|
| 1759 | - |
|
| 1760 | - elseif ($setting['id'] == 'drafts_autosave_enabled' && (empty($modSettings['drafts_autosave_enabled']) || (empty($modSettings['drafts_post_enabled']) && empty($modSettings['drafts_pm_enabled'])))) |
|
| 1761 | - continue; |
|
| 1762 | - |
|
| 1763 | - elseif ($setting['id'] == 'drafts_show_saved_enabled' && (empty($modSettings['drafts_show_saved_enabled']) || (empty($modSettings['drafts_post_enabled']) && empty($modSettings['drafts_pm_enabled'])))) |
|
| 1764 | - continue; |
|
| 1831 | + if ($setting['id'] == 'calendar_start_day' && empty($modSettings['cal_enabled'])) { |
|
| 1832 | + continue; |
|
| 1833 | + } elseif (($setting['id'] == 'topics_per_page' || $setting['id'] == 'messages_per_page') && !empty($modSettings['disableCustomPerPage'])) { |
|
| 1834 | + continue; |
|
| 1835 | + } elseif ($setting['id'] == 'show_no_censored' && empty($modSettings['allow_no_censored'])) { |
|
| 1836 | + continue; |
|
| 1837 | + } elseif ($setting['id'] == 'posts_apply_ignore_list' && empty($modSettings['enable_buddylist'])) { |
|
| 1838 | + continue; |
|
| 1839 | + } elseif ($setting['id'] == 'wysiwyg_default' && !empty($modSettings['disable_wysiwyg'])) { |
|
| 1840 | + continue; |
|
| 1841 | + } elseif ($setting['id'] == 'drafts_autosave_enabled' && (empty($modSettings['drafts_autosave_enabled']) || (empty($modSettings['drafts_post_enabled']) && empty($modSettings['drafts_pm_enabled'])))) { |
|
| 1842 | + continue; |
|
| 1843 | + } elseif ($setting['id'] == 'drafts_show_saved_enabled' && (empty($modSettings['drafts_show_saved_enabled']) || (empty($modSettings['drafts_post_enabled']) && empty($modSettings['drafts_pm_enabled'])))) { |
|
| 1844 | + continue; |
|
| 1845 | + } |
|
| 1765 | 1846 | |
| 1766 | 1847 | // Some of these may not be set... Set to defaults here |
| 1767 | 1848 | $opts = array('topics_per_page', 'messages_per_page', 'display_quick_mod'); |
| 1768 | - if (in_array($setting['id'], $opts) && !isset($context['member']['options'][$setting['id']])) |
|
| 1769 | - $context['member']['options'][$setting['id']] = 0; |
|
| 1770 | - |
|
| 1771 | - if (!isset($setting['type']) || $setting['type'] == 'bool') |
|
| 1772 | - $setting['type'] = 'checkbox'; |
|
| 1773 | - |
|
| 1774 | - elseif ($setting['type'] == 'int' || $setting['type'] == 'integer') |
|
| 1775 | - $setting['type'] = 'number'; |
|
| 1849 | + if (in_array($setting['id'], $opts) && !isset($context['member']['options'][$setting['id']])) { |
|
| 1850 | + $context['member']['options'][$setting['id']] = 0; |
|
| 1851 | + } |
|
| 1776 | 1852 | |
| 1777 | - elseif ($setting['type'] == 'string') |
|
| 1778 | - $setting['type'] = 'text'; |
|
| 1853 | + if (!isset($setting['type']) || $setting['type'] == 'bool') { |
|
| 1854 | + $setting['type'] = 'checkbox'; |
|
| 1855 | + } elseif ($setting['type'] == 'int' || $setting['type'] == 'integer') { |
|
| 1856 | + $setting['type'] = 'number'; |
|
| 1857 | + } elseif ($setting['type'] == 'string') { |
|
| 1858 | + $setting['type'] = 'text'; |
|
| 1859 | + } |
|
| 1779 | 1860 | |
| 1780 | - if (isset($setting['options'])) |
|
| 1781 | - $setting['type'] = 'list'; |
|
| 1861 | + if (isset($setting['options'])) { |
|
| 1862 | + $setting['type'] = 'list'; |
|
| 1863 | + } |
|
| 1782 | 1864 | |
| 1783 | 1865 | echo ' |
| 1784 | 1866 | <dt> |
| 1785 | 1867 | <label for="', $setting['id'], '">', !$titled_section ? '<strong>' : '', $setting['label'], !$titled_section ? '</strong>' : '', '</label>'; |
| 1786 | 1868 | |
| 1787 | - if (isset($setting['description'])) |
|
| 1788 | - echo ' |
|
| 1869 | + if (isset($setting['description'])) { |
|
| 1870 | + echo ' |
|
| 1789 | 1871 | <br> |
| 1790 | 1872 | <span class="smalltext">', $setting['description'], '</span>'; |
| 1873 | + } |
|
| 1791 | 1874 | echo ' |
| 1792 | 1875 | </dt> |
| 1793 | 1876 | <dd>'; |
| 1794 | 1877 | |
| 1795 | 1878 | // Display checkbox options |
| 1796 | - if ($setting['type'] == 'checkbox') |
|
| 1797 | - echo ' |
|
| 1879 | + if ($setting['type'] == 'checkbox') { |
|
| 1880 | + echo ' |
|
| 1798 | 1881 | <input type="hidden" name="default_options[' . $setting['id'] . ']" value="0"> |
| 1799 | 1882 | <input type="checkbox" name="default_options[', $setting['id'], ']" id="', $setting['id'], '"', !empty($context['member']['options'][$setting['id']]) ? ' checked' : '', ' value="1">'; |
| 1883 | + } |
|
| 1800 | 1884 | |
| 1801 | 1885 | // How about selection lists, we all love them |
| 1802 | 1886 | elseif ($setting['type'] == 'list') |
@@ -1804,9 +1888,10 @@ discard block |
||
| 1804 | 1888 | echo ' |
| 1805 | 1889 | <select name="default_options[', $setting['id'], ']" id="', $setting['id'], '"', '>'; |
| 1806 | 1890 | |
| 1807 | - foreach ($setting['options'] as $value => $label) |
|
| 1808 | - echo ' |
|
| 1891 | + foreach ($setting['options'] as $value => $label) { |
|
| 1892 | + echo ' |
|
| 1809 | 1893 | <option value="', $value, '"', $value == $context['member']['options'][$setting['id']] ? ' selected' : '', '>', $label, '</option>'; |
| 1894 | + } |
|
| 1810 | 1895 | |
| 1811 | 1896 | echo ' |
| 1812 | 1897 | </select>'; |
@@ -1822,14 +1907,13 @@ discard block |
||
| 1822 | 1907 | |
| 1823 | 1908 | echo ' |
| 1824 | 1909 | <input type="number"', $min . $max . $step; |
| 1825 | - } |
|
| 1826 | - elseif (isset($setting['type']) && $setting['type'] == 'url') |
|
| 1827 | - echo' |
|
| 1910 | + } elseif (isset($setting['type']) && $setting['type'] == 'url') { |
|
| 1911 | + echo' |
|
| 1828 | 1912 | <input type="url"'; |
| 1829 | - |
|
| 1830 | - else |
|
| 1831 | - echo ' |
|
| 1913 | + } else { |
|
| 1914 | + echo ' |
|
| 1832 | 1915 | <input type="text"'; |
| 1916 | + } |
|
| 1833 | 1917 | |
| 1834 | 1918 | echo ' name="default_options[', $setting['id'], ']" id="', $setting['id'], '" value="', isset($context['member']['options'][$setting['id']]) ? $context['member']['options'][$setting['id']] : $setting['value'], '"', $setting['type'] == 'number' ? ' size="5"' : '', '>'; |
| 1835 | 1919 | } |
@@ -1866,8 +1950,8 @@ discard block |
||
| 1866 | 1950 | <dl class="settings">'; |
| 1867 | 1951 | |
| 1868 | 1952 | // Allow notification on announcements to be disabled? |
| 1869 | - if (!empty($modSettings['allow_disableAnnounce'])) |
|
| 1870 | - echo ' |
|
| 1953 | + if (!empty($modSettings['allow_disableAnnounce'])) { |
|
| 1954 | + echo ' |
|
| 1871 | 1955 | <dt> |
| 1872 | 1956 | <label for="notify_announcements">', $txt['notify_important_email'], '</label> |
| 1873 | 1957 | </dt> |
@@ -1875,15 +1959,17 @@ discard block |
||
| 1875 | 1959 | <input type="hidden" name="notify_announcements" value="0"> |
| 1876 | 1960 | <input type="checkbox" id="notify_announcements" name="notify_announcements" value="1"', !empty($context['member']['notify_announcements']) ? ' checked' : '', '> |
| 1877 | 1961 | </dd>'; |
| 1962 | + } |
|
| 1878 | 1963 | |
| 1879 | - if (!empty($modSettings['enable_ajax_alerts'])) |
|
| 1880 | - echo ' |
|
| 1964 | + if (!empty($modSettings['enable_ajax_alerts'])) { |
|
| 1965 | + echo ' |
|
| 1881 | 1966 | <dt> |
| 1882 | 1967 | <label for="notify_send_body">', $txt['notify_alert_timeout'], '</label> |
| 1883 | 1968 | </dt> |
| 1884 | 1969 | <dd> |
| 1885 | 1970 | <input type="number" size="4" id="notify_alert_timeout" name="opt_alert_timeout" min="0" value="', $context['member']['alert_timeout'], '"> |
| 1886 | 1971 | </dd>'; |
| 1972 | + } |
|
| 1887 | 1973 | |
| 1888 | 1974 | echo ' |
| 1889 | 1975 | </dl> |
@@ -1915,9 +2001,10 @@ discard block |
||
| 1915 | 2001 | |
| 1916 | 2002 | $label = $txt['alert_opt_' . $opts[1]]; |
| 1917 | 2003 | $label_pos = isset($opts['label']) ? $opts['label'] : ''; |
| 1918 | - if ($label_pos == 'before') |
|
| 1919 | - echo ' |
|
| 2004 | + if ($label_pos == 'before') { |
|
| 2005 | + echo ' |
|
| 1920 | 2006 | <label for="opt_', $opts[1], '">', $label, '</label>'; |
| 2007 | + } |
|
| 1921 | 2008 | |
| 1922 | 2009 | $this_value = isset($context['alert_prefs'][$opts[1]]) ? $context['alert_prefs'][$opts[1]] : 0; |
| 1923 | 2010 | switch ($opts[0]) |
@@ -1931,17 +2018,19 @@ discard block |
||
| 1931 | 2018 | echo ' |
| 1932 | 2019 | <select name="opt_', $opts[1], '" id="opt_', $opts[1], '">'; |
| 1933 | 2020 | |
| 1934 | - foreach ($opts['opts'] as $k => $v) |
|
| 1935 | - echo ' |
|
| 2021 | + foreach ($opts['opts'] as $k => $v) { |
|
| 2022 | + echo ' |
|
| 1936 | 2023 | <option value="', $k, '"', $this_value == $k ? ' selected' : '', '>', $v, '</option>'; |
| 2024 | + } |
|
| 1937 | 2025 | echo ' |
| 1938 | 2026 | </select>'; |
| 1939 | 2027 | break; |
| 1940 | 2028 | } |
| 1941 | 2029 | |
| 1942 | - if ($label_pos == 'after') |
|
| 1943 | - echo ' |
|
| 2030 | + if ($label_pos == 'after') { |
|
| 2031 | + echo ' |
|
| 1944 | 2032 | <label for="opt_', $opts[1], '">', $label, '</label>'; |
| 2033 | + } |
|
| 1945 | 2034 | |
| 1946 | 2035 | echo ' |
| 1947 | 2036 | </td> |
@@ -2058,11 +2147,12 @@ discard block |
||
| 2058 | 2147 | <p class="information">', $txt['groupMembership_info'], '</p>'; |
| 2059 | 2148 | |
| 2060 | 2149 | // Do we have an update message? |
| 2061 | - if (!empty($context['update_message'])) |
|
| 2062 | - echo ' |
|
| 2150 | + if (!empty($context['update_message'])) { |
|
| 2151 | + echo ' |
|
| 2063 | 2152 | <div class="infobox"> |
| 2064 | 2153 | ', $context['update_message'], '. |
| 2065 | 2154 | </div>'; |
| 2155 | + } |
|
| 2066 | 2156 | |
| 2067 | 2157 | echo ' |
| 2068 | 2158 | <div id="groups">'; |
@@ -2084,8 +2174,7 @@ discard block |
||
| 2084 | 2174 | </div> |
| 2085 | 2175 | </div> |
| 2086 | 2176 | </div><!-- .groupmembership -->'; |
| 2087 | - } |
|
| 2088 | - else |
|
| 2177 | + } else |
|
| 2089 | 2178 | { |
| 2090 | 2179 | echo ' |
| 2091 | 2180 | <div class="title_bar"> |
@@ -2097,27 +2186,30 @@ discard block |
||
| 2097 | 2186 | echo ' |
| 2098 | 2187 | <div class="windowbg" id="primdiv_', $group['id'], '">'; |
| 2099 | 2188 | |
| 2100 | - if ($context['can_edit_primary']) |
|
| 2101 | - echo ' |
|
| 2189 | + if ($context['can_edit_primary']) { |
|
| 2190 | + echo ' |
|
| 2102 | 2191 | <input type="radio" name="primary" id="primary_', $group['id'], '" value="', $group['id'], '"', $group['is_primary'] ? ' checked' : '', ' onclick="highlightSelected(\'primdiv_' . $group['id'] . '\');"', $group['can_be_primary'] ? '' : ' disabled', '>'; |
| 2192 | + } |
|
| 2103 | 2193 | |
| 2104 | 2194 | echo ' |
| 2105 | 2195 | <label for="primary_', $group['id'], '"><strong>', (empty($group['color']) ? $group['name'] : '<span style="color: ' . $group['color'] . '">' . $group['name'] . '</span>'), '</strong>', (!empty($group['desc']) ? '<br><span class="smalltext">' . $group['desc'] . '</span>' : ''), '</label>'; |
| 2106 | 2196 | |
| 2107 | 2197 | // Can they leave their group? |
| 2108 | - if ($group['can_leave']) |
|
| 2109 | - echo ' |
|
| 2198 | + if ($group['can_leave']) { |
|
| 2199 | + echo ' |
|
| 2110 | 2200 | <a href="' . $scripturl . '?action=profile;save;u=' . $context['id_member'] . ';area=groupmembership;' . $context['session_var'] . '=' . $context['session_id'] . ';gid=' . $group['id'] . ';', $context[$context['token_check'] . '_token_var'], '=', $context[$context['token_check'] . '_token'], '">' . $txt['leave_group'] . '</a>'; |
| 2201 | + } |
|
| 2111 | 2202 | |
| 2112 | 2203 | echo ' |
| 2113 | 2204 | </div><!-- .windowbg -->'; |
| 2114 | 2205 | } |
| 2115 | 2206 | |
| 2116 | - if ($context['can_edit_primary']) |
|
| 2117 | - echo ' |
|
| 2207 | + if ($context['can_edit_primary']) { |
|
| 2208 | + echo ' |
|
| 2118 | 2209 | <div class="padding righttext"> |
| 2119 | 2210 | <input type="submit" value="', $txt['make_primary'], '" class="button"> |
| 2120 | 2211 | </div>'; |
| 2212 | + } |
|
| 2121 | 2213 | |
| 2122 | 2214 | // Any groups they can join? |
| 2123 | 2215 | if (!empty($context['groups']['available'])) |
@@ -2133,17 +2225,16 @@ discard block |
||
| 2133 | 2225 | <div class="windowbg"> |
| 2134 | 2226 | <strong>', (empty($group['color']) ? $group['name'] : '<span style="color: ' . $group['color'] . '">' . $group['name'] . '</span>'), '</strong>', (!empty($group['desc']) ? '<br><span class="smalltext">' . $group['desc'] . '</span>' : ''), ''; |
| 2135 | 2227 | |
| 2136 | - if ($group['type'] == 3) |
|
| 2137 | - echo ' |
|
| 2228 | + if ($group['type'] == 3) { |
|
| 2229 | + echo ' |
|
| 2138 | 2230 | <a href="', $scripturl, '?action=profile;save;u=', $context['id_member'], ';area=groupmembership;', $context['session_var'], '=', $context['session_id'], ';gid=', $group['id'], ';', $context[$context['token_check'] . '_token_var'], '=', $context[$context['token_check'] . '_token'], '" class="button floatright">', $txt['join_group'], '</a>'; |
| 2139 | - |
|
| 2140 | - elseif ($group['type'] == 2 && $group['pending']) |
|
| 2141 | - echo ' |
|
| 2231 | + } elseif ($group['type'] == 2 && $group['pending']) { |
|
| 2232 | + echo ' |
|
| 2142 | 2233 | <span class="floatright">', $txt['approval_pending'], '</span>'; |
| 2143 | - |
|
| 2144 | - elseif ($group['type'] == 2) |
|
| 2145 | - echo ' |
|
| 2234 | + } elseif ($group['type'] == 2) { |
|
| 2235 | + echo ' |
|
| 2146 | 2236 | <a href="', $scripturl, '?action=profile;u=', $context['id_member'], ';area=groupmembership;request=', $group['id'], '" class="button floatright">', $txt['request_group'], '</a>'; |
| 2237 | + } |
|
| 2147 | 2238 | |
| 2148 | 2239 | echo ' |
| 2149 | 2240 | </div><!-- .windowbg -->'; |
@@ -2166,9 +2257,10 @@ discard block |
||
| 2166 | 2257 | |
| 2167 | 2258 | prevDiv.className = "windowbg"; |
| 2168 | 2259 | }'; |
| 2169 | - if (isset($context['groups']['member'][$context['primary_group']])) |
|
| 2170 | - echo ' |
|
| 2260 | + if (isset($context['groups']['member'][$context['primary_group']])) { |
|
| 2261 | + echo ' |
|
| 2171 | 2262 | highlightSelected("primdiv_' . $context['primary_group'] . '");'; |
| 2263 | + } |
|
| 2172 | 2264 | |
| 2173 | 2265 | echo ' |
| 2174 | 2266 | </script>'; |
@@ -2177,9 +2269,10 @@ discard block |
||
| 2177 | 2269 | echo ' |
| 2178 | 2270 | </div><!-- #groups -->'; |
| 2179 | 2271 | |
| 2180 | - if (!empty($context['token_check'])) |
|
| 2181 | - echo ' |
|
| 2272 | + if (!empty($context['token_check'])) { |
|
| 2273 | + echo ' |
|
| 2182 | 2274 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
| 2275 | + } |
|
| 2183 | 2276 | |
| 2184 | 2277 | echo ' |
| 2185 | 2278 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -2227,14 +2320,15 @@ discard block |
||
| 2227 | 2320 | |
| 2228 | 2321 | foreach ($category['boards'] as $board) |
| 2229 | 2322 | { |
| 2230 | - if ($i == $limit) |
|
| 2231 | - echo ' |
|
| 2323 | + if ($i == $limit) { |
|
| 2324 | + echo ' |
|
| 2232 | 2325 | </ul> |
| 2233 | 2326 | </li> |
| 2234 | 2327 | </ul> |
| 2235 | 2328 | <ul class="ignoreboards floatright"> |
| 2236 | 2329 | <li class="category"> |
| 2237 | 2330 | <ul>'; |
| 2331 | + } |
|
| 2238 | 2332 | |
| 2239 | 2333 | echo ' |
| 2240 | 2334 | <li class="board" style="margin-', $context['right_to_left'] ? 'right' : 'left', ': ', $board['child_level'], 'em;"> |
@@ -2279,10 +2373,11 @@ discard block |
||
| 2279 | 2373 | |
| 2280 | 2374 | // Work out the starting warning. |
| 2281 | 2375 | $context['current_warning_mode'] = $context['warning_mode'][0]; |
| 2282 | - foreach ($context['warning_mode'] as $limit => $warning) |
|
| 2283 | - if ($context['member']['warning'] >= $limit) |
|
| 2376 | + foreach ($context['warning_mode'] as $limit => $warning) { |
|
| 2377 | + if ($context['member']['warning'] >= $limit) |
|
| 2284 | 2378 | $context['current_warning_mode'] = $warning; |
| 2285 | -} |
|
| 2379 | + } |
|
| 2380 | + } |
|
| 2286 | 2381 | |
| 2287 | 2382 | // Show all warnings of a user? |
| 2288 | 2383 | function template_viewWarning() |
@@ -2317,14 +2412,15 @@ discard block |
||
| 2317 | 2412 | </dd>'; |
| 2318 | 2413 | |
| 2319 | 2414 | // There's some impact of this? |
| 2320 | - if (!empty($context['level_effects'][$context['current_level']])) |
|
| 2321 | - echo ' |
|
| 2415 | + if (!empty($context['level_effects'][$context['current_level']])) { |
|
| 2416 | + echo ' |
|
| 2322 | 2417 | <dt> |
| 2323 | 2418 | <strong>', $txt['profile_viewwarning_impact'], ':</strong> |
| 2324 | 2419 | </dt> |
| 2325 | 2420 | <dd> |
| 2326 | 2421 | ', $context['level_effects'][$context['current_level']], ' |
| 2327 | 2422 | </dd>'; |
| 2423 | + } |
|
| 2328 | 2424 | |
| 2329 | 2425 | echo ' |
| 2330 | 2426 | </dl> |
@@ -2362,10 +2458,11 @@ discard block |
||
| 2362 | 2458 | |
| 2363 | 2459 | // Otherwise see what we can do...'; |
| 2364 | 2460 | |
| 2365 | - foreach ($context['notification_templates'] as $k => $type) |
|
| 2366 | - echo ' |
|
| 2461 | + foreach ($context['notification_templates'] as $k => $type) { |
|
| 2462 | + echo ' |
|
| 2367 | 2463 | if (index == ', $k, ') |
| 2368 | 2464 | document.getElementById(\'warn_body\').value = "', strtr($type['body'], array('"' => "'", "\n" => '\\n', "\r" => '')), '";'; |
| 2465 | + } |
|
| 2369 | 2466 | |
| 2370 | 2467 | echo ' |
| 2371 | 2468 | } |
@@ -2375,10 +2472,11 @@ discard block |
||
| 2375 | 2472 | // Also set the right effect. |
| 2376 | 2473 | effectText = "";'; |
| 2377 | 2474 | |
| 2378 | - foreach ($context['level_effects'] as $limit => $text) |
|
| 2379 | - echo ' |
|
| 2475 | + foreach ($context['level_effects'] as $limit => $text) { |
|
| 2476 | + echo ' |
|
| 2380 | 2477 | if (slideAmount >= ', $limit, ') |
| 2381 | 2478 | effectText = "', $text, '";'; |
| 2479 | + } |
|
| 2382 | 2480 | |
| 2383 | 2481 | echo ' |
| 2384 | 2482 | setInnerHTML(document.getElementById(\'cur_level_div\'), slideAmount + \'% (\' + effectText + \')\'); |
@@ -2393,32 +2491,35 @@ discard block |
||
| 2393 | 2491 | </h3> |
| 2394 | 2492 | </div>'; |
| 2395 | 2493 | |
| 2396 | - if (!$context['user']['is_owner']) |
|
| 2397 | - echo ' |
|
| 2494 | + if (!$context['user']['is_owner']) { |
|
| 2495 | + echo ' |
|
| 2398 | 2496 | <p class="information">', $txt['profile_warning_desc'], '</p>'; |
| 2497 | + } |
|
| 2399 | 2498 | |
| 2400 | 2499 | echo ' |
| 2401 | 2500 | <div class="windowbg"> |
| 2402 | 2501 | <dl class="settings">'; |
| 2403 | 2502 | |
| 2404 | - if (!$context['user']['is_owner']) |
|
| 2405 | - echo ' |
|
| 2503 | + if (!$context['user']['is_owner']) { |
|
| 2504 | + echo ' |
|
| 2406 | 2505 | <dt> |
| 2407 | 2506 | <strong>', $txt['profile_warning_name'], ':</strong> |
| 2408 | 2507 | </dt> |
| 2409 | 2508 | <dd> |
| 2410 | 2509 | <strong>', $context['member']['name'], '</strong> |
| 2411 | 2510 | </dd>'; |
| 2511 | + } |
|
| 2412 | 2512 | |
| 2413 | 2513 | echo ' |
| 2414 | 2514 | <dt> |
| 2415 | 2515 | <strong>', $txt['profile_warning_level'], ':</strong>'; |
| 2416 | 2516 | |
| 2417 | 2517 | // Is there only so much they can apply? |
| 2418 | - if ($context['warning_limit']) |
|
| 2419 | - echo ' |
|
| 2518 | + if ($context['warning_limit']) { |
|
| 2519 | + echo ' |
|
| 2420 | 2520 | <br> |
| 2421 | 2521 | <span class="smalltext">', sprintf($txt['profile_warning_limit_attribute'], $context['warning_limit']), '</span>'; |
| 2522 | + } |
|
| 2422 | 2523 | |
| 2423 | 2524 | echo ' |
| 2424 | 2525 | </dt> |
@@ -2473,9 +2574,10 @@ discard block |
||
| 2473 | 2574 | <option value="-1">', $txt['profile_warning_notify_template'], '</option> |
| 2474 | 2575 | <option value="-1" disabled>------------------------------</option>'; |
| 2475 | 2576 | |
| 2476 | - foreach ($context['notification_templates'] as $id_template => $template) |
|
| 2477 | - echo ' |
|
| 2577 | + foreach ($context['notification_templates'] as $id_template => $template) { |
|
| 2578 | + echo ' |
|
| 2478 | 2579 | <option value="', $id_template, '">', $template['title'], '</option>'; |
| 2580 | + } |
|
| 2479 | 2581 | |
| 2480 | 2582 | echo ' |
| 2481 | 2583 | </select> |
@@ -2488,9 +2590,10 @@ discard block |
||
| 2488 | 2590 | </dl> |
| 2489 | 2591 | <div class="righttext">'; |
| 2490 | 2592 | |
| 2491 | - if (!empty($context['token_check'])) |
|
| 2492 | - echo ' |
|
| 2593 | + if (!empty($context['token_check'])) { |
|
| 2594 | + echo ' |
|
| 2493 | 2595 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
| 2596 | + } |
|
| 2494 | 2597 | |
| 2495 | 2598 | echo ' |
| 2496 | 2599 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -2506,8 +2609,8 @@ discard block |
||
| 2506 | 2609 | echo ' |
| 2507 | 2610 | <script>'; |
| 2508 | 2611 | |
| 2509 | - if (!$context['user']['is_owner']) |
|
| 2510 | - echo ' |
|
| 2612 | + if (!$context['user']['is_owner']) { |
|
| 2613 | + echo ' |
|
| 2511 | 2614 | modifyWarnNotify(); |
| 2512 | 2615 | $(document).ready(function() { |
| 2513 | 2616 | $("#preview_button").click(function() { |
@@ -2546,6 +2649,7 @@ discard block |
||
| 2546 | 2649 | }); |
| 2547 | 2650 | return false; |
| 2548 | 2651 | }'; |
| 2652 | + } |
|
| 2549 | 2653 | |
| 2550 | 2654 | echo ' |
| 2551 | 2655 | </script>'; |
@@ -2568,17 +2672,19 @@ discard block |
||
| 2568 | 2672 | </div>'; |
| 2569 | 2673 | |
| 2570 | 2674 | // If deleting another account give them a lovely info box. |
| 2571 | - if (!$context['user']['is_owner']) |
|
| 2572 | - echo ' |
|
| 2675 | + if (!$context['user']['is_owner']) { |
|
| 2676 | + echo ' |
|
| 2573 | 2677 | <p class="information">', $txt['deleteAccount_desc'], '</p>'; |
| 2678 | + } |
|
| 2574 | 2679 | |
| 2575 | 2680 | echo ' |
| 2576 | 2681 | <div class="windowbg">'; |
| 2577 | 2682 | |
| 2578 | 2683 | // If they are deleting their account AND the admin needs to approve it - give them another piece of info ;) |
| 2579 | - if ($context['needs_approval']) |
|
| 2580 | - echo ' |
|
| 2684 | + if ($context['needs_approval']) { |
|
| 2685 | + echo ' |
|
| 2581 | 2686 | <div class="errorbox">', $txt['deleteAccount_approval'], '</div>'; |
| 2687 | + } |
|
| 2582 | 2688 | |
| 2583 | 2689 | // If the user is deleting their own account warn them first - and require a password! |
| 2584 | 2690 | if ($context['user']['is_owner']) |
@@ -2590,9 +2696,10 @@ discard block |
||
| 2590 | 2696 | <input type="password" name="oldpasswrd" size="20"> |
| 2591 | 2697 | <input type="submit" value="', $txt['yes'], '" class="button">'; |
| 2592 | 2698 | |
| 2593 | - if (!empty($context['token_check'])) |
|
| 2594 | - echo ' |
|
| 2699 | + if (!empty($context['token_check'])) { |
|
| 2700 | + echo ' |
|
| 2595 | 2701 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
| 2702 | + } |
|
| 2596 | 2703 | |
| 2597 | 2704 | echo ' |
| 2598 | 2705 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -2622,10 +2729,11 @@ discard block |
||
| 2622 | 2729 | <option value="topics">', $txt['deleteAccount_topics'], '</option> |
| 2623 | 2730 | </select>'; |
| 2624 | 2731 | |
| 2625 | - if ($context['show_perma_delete']) |
|
| 2626 | - echo ' |
|
| 2732 | + if ($context['show_perma_delete']) { |
|
| 2733 | + echo ' |
|
| 2627 | 2734 | <br> |
| 2628 | 2735 | <label for="perma_delete"><input type="checkbox" name="perma_delete" id="perma_delete" value="1">', $txt['deleteAccount_permanent'], ':</label>'; |
| 2736 | + } |
|
| 2629 | 2737 | |
| 2630 | 2738 | echo ' |
| 2631 | 2739 | </div>'; |
@@ -2638,9 +2746,10 @@ discard block |
||
| 2638 | 2746 | <div> |
| 2639 | 2747 | <input type="submit" value="', $txt['delete'], '" class="button">'; |
| 2640 | 2748 | |
| 2641 | - if (!empty($context['token_check'])) |
|
| 2642 | - echo ' |
|
| 2749 | + if (!empty($context['token_check'])) { |
|
| 2750 | + echo ' |
|
| 2643 | 2751 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
| 2752 | + } |
|
| 2644 | 2753 | |
| 2645 | 2754 | echo ' |
| 2646 | 2755 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
@@ -2666,8 +2775,8 @@ discard block |
||
| 2666 | 2775 | <hr>'; |
| 2667 | 2776 | |
| 2668 | 2777 | // Only show the password box if it's actually needed. |
| 2669 | - if ($context['require_password']) |
|
| 2670 | - echo ' |
|
| 2778 | + if ($context['require_password']) { |
|
| 2779 | + echo ' |
|
| 2671 | 2780 | <dl class="settings"> |
| 2672 | 2781 | <dt> |
| 2673 | 2782 | <strong', isset($context['modify_error']['bad_password']) || isset($context['modify_error']['no_password']) ? ' class="error"' : '', '>', $txt['current_password'], ': </strong><br> |
@@ -2677,13 +2786,15 @@ discard block |
||
| 2677 | 2786 | <input type="password" name="oldpasswrd" size="20"> |
| 2678 | 2787 | </dd> |
| 2679 | 2788 | </dl>'; |
| 2789 | + } |
|
| 2680 | 2790 | |
| 2681 | 2791 | echo ' |
| 2682 | 2792 | <div class="righttext">'; |
| 2683 | 2793 | |
| 2684 | - if (!empty($context['token_check'])) |
|
| 2685 | - echo ' |
|
| 2794 | + if (!empty($context['token_check'])) { |
|
| 2795 | + echo ' |
|
| 2686 | 2796 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
| 2797 | + } |
|
| 2687 | 2798 | |
| 2688 | 2799 | echo ' |
| 2689 | 2800 | <input type="submit" value="', $txt['change_profile'], '" class="button"> |
@@ -2710,9 +2821,10 @@ discard block |
||
| 2710 | 2821 | <ul id="list_errors">'; |
| 2711 | 2822 | |
| 2712 | 2823 | // Cycle through each error and display an error message. |
| 2713 | - foreach ($context['post_errors'] as $error) |
|
| 2714 | - echo ' |
|
| 2824 | + foreach ($context['post_errors'] as $error) { |
|
| 2825 | + echo ' |
|
| 2715 | 2826 | <li>', isset($txt['profile_error_' . $error]) ? $txt['profile_error_' . $error] : $error, '</li>'; |
| 2827 | + } |
|
| 2716 | 2828 | |
| 2717 | 2829 | echo ' |
| 2718 | 2830 | </ul>'; |
@@ -2738,12 +2850,13 @@ discard block |
||
| 2738 | 2850 | <select name="id_group" ', ($context['user']['is_owner'] && $context['member']['group_id'] == 1 ? 'onchange="if (this.value != 1 && !confirm(\'' . $txt['deadmin_confirm'] . '\')) this.value = 1;"' : ''), '>'; |
| 2739 | 2851 | |
| 2740 | 2852 | // Fill the select box with all primary member groups that can be assigned to a member. |
| 2741 | - foreach ($context['member_groups'] as $member_group) |
|
| 2742 | - if (!empty($member_group['can_be_primary'])) |
|
| 2853 | + foreach ($context['member_groups'] as $member_group) { |
|
| 2854 | + if (!empty($member_group['can_be_primary'])) |
|
| 2743 | 2855 | echo ' |
| 2744 | 2856 | <option value="', $member_group['id'], '"', $member_group['is_primary'] ? ' selected' : '', '> |
| 2745 | 2857 | ', $member_group['name'], ' |
| 2746 | 2858 | </option>'; |
| 2859 | + } |
|
| 2747 | 2860 | |
| 2748 | 2861 | echo ' |
| 2749 | 2862 | </select> |
@@ -2756,10 +2869,11 @@ discard block |
||
| 2756 | 2869 | <input type="hidden" name="additional_groups[]" value="0">'; |
| 2757 | 2870 | |
| 2758 | 2871 | // For each membergroup show a checkbox so members can be assigned to more than one group. |
| 2759 | - foreach ($context['member_groups'] as $member_group) |
|
| 2760 | - if ($member_group['can_be_additional']) |
|
| 2872 | + foreach ($context['member_groups'] as $member_group) { |
|
| 2873 | + if ($member_group['can_be_additional']) |
|
| 2761 | 2874 | echo ' |
| 2762 | 2875 | <label for="additional_groups-', $member_group['id'], '"><input type="checkbox" name="additional_groups[]" value="', $member_group['id'], '" id="additional_groups-', $member_group['id'], '"', $member_group['is_additional'] ? ' checked' : '', '> ', $member_group['name'], '</label><br>'; |
| 2876 | + } |
|
| 2763 | 2877 | |
| 2764 | 2878 | echo ' |
| 2765 | 2879 | </span> |
@@ -2819,9 +2933,10 @@ discard block |
||
| 2819 | 2933 | <span class="smalltext">', $txt['sig_info'], '</span><br> |
| 2820 | 2934 | <br>'; |
| 2821 | 2935 | |
| 2822 | - if ($context['show_spellchecking']) |
|
| 2823 | - echo ' |
|
| 2936 | + if ($context['show_spellchecking']) { |
|
| 2937 | + echo ' |
|
| 2824 | 2938 | <input type="button" value="', $txt['spell_check'], '" onclick="spellCheck(\'creator\', \'signature\');" class="button">'; |
| 2939 | + } |
|
| 2825 | 2940 | |
| 2826 | 2941 | echo ' |
| 2827 | 2942 | </dt> |
@@ -2829,17 +2944,20 @@ discard block |
||
| 2829 | 2944 | <textarea class="editor" onkeyup="calcCharLeft();" id="signature" name="signature" rows="5" cols="50">', $context['member']['signature'], '</textarea><br>'; |
| 2830 | 2945 | |
| 2831 | 2946 | // If there is a limit at all! |
| 2832 | - if (!empty($context['signature_limits']['max_length'])) |
|
| 2833 | - echo ' |
|
| 2947 | + if (!empty($context['signature_limits']['max_length'])) { |
|
| 2948 | + echo ' |
|
| 2834 | 2949 | <span class="smalltext">', sprintf($txt['max_sig_characters'], $context['signature_limits']['max_length']), ' <span id="signatureLeft">', $context['signature_limits']['max_length'], '</span></span><br>'; |
| 2950 | + } |
|
| 2835 | 2951 | |
| 2836 | - if (!empty($context['show_preview_button'])) |
|
| 2837 | - echo ' |
|
| 2952 | + if (!empty($context['show_preview_button'])) { |
|
| 2953 | + echo ' |
|
| 2838 | 2954 | <input type="button" name="preview_signature" id="preview_button" value="', $txt['preview_signature'], '" class="button floatright">'; |
| 2955 | + } |
|
| 2839 | 2956 | |
| 2840 | - if ($context['signature_warning']) |
|
| 2841 | - echo ' |
|
| 2957 | + if ($context['signature_warning']) { |
|
| 2958 | + echo ' |
|
| 2842 | 2959 | <span class="smalltext">', $context['signature_warning'], '</span>'; |
| 2960 | + } |
|
| 2843 | 2961 | |
| 2844 | 2962 | // Some javascript used to count how many characters have been used so far in the signature. |
| 2845 | 2963 | echo ' |
@@ -2870,38 +2988,43 @@ discard block |
||
| 2870 | 2988 | <label for="avatar_upload_box">', $txt['personal_picture'], '</label> |
| 2871 | 2989 | </strong>'; |
| 2872 | 2990 | |
| 2873 | - if (empty($modSettings['gravatarOverride'])) |
|
| 2874 | - echo ' |
|
| 2991 | + if (empty($modSettings['gravatarOverride'])) { |
|
| 2992 | + echo ' |
|
| 2875 | 2993 | <input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_none" value="none"' . ($context['member']['avatar']['choice'] == 'none' ? ' checked="checked"' : '') . '> |
| 2876 | 2994 | <label for="avatar_choice_none"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '> |
| 2877 | 2995 | ' . $txt['no_avatar'] . ' |
| 2878 | 2996 | </label><br>'; |
| 2997 | + } |
|
| 2879 | 2998 | |
| 2880 | - if (!empty($context['member']['avatar']['allow_server_stored'])) |
|
| 2881 | - echo ' |
|
| 2999 | + if (!empty($context['member']['avatar']['allow_server_stored'])) { |
|
| 3000 | + echo ' |
|
| 2882 | 3001 | <input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_server_stored" value="server_stored"' . ($context['member']['avatar']['choice'] == 'server_stored' ? ' checked="checked"' : '') . '> |
| 2883 | 3002 | <label for="avatar_choice_server_stored"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '> |
| 2884 | 3003 | ', $txt['choose_avatar_gallery'], ' |
| 2885 | 3004 | </label><br>'; |
| 3005 | + } |
|
| 2886 | 3006 | |
| 2887 | - if (!empty($context['member']['avatar']['allow_external'])) |
|
| 2888 | - echo ' |
|
| 3007 | + if (!empty($context['member']['avatar']['allow_external'])) { |
|
| 3008 | + echo ' |
|
| 2889 | 3009 | <input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_external" value="external"' . ($context['member']['avatar']['choice'] == 'external' ? ' checked="checked"' : '') . '> |
| 2890 | 3010 | <label for="avatar_choice_external"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '> |
| 2891 | 3011 | ', $txt['my_own_pic'], ' |
| 2892 | 3012 | </label><br>'; |
| 3013 | + } |
|
| 2893 | 3014 | |
| 2894 | - if (!empty($context['member']['avatar']['allow_upload'])) |
|
| 2895 | - echo ' |
|
| 3015 | + if (!empty($context['member']['avatar']['allow_upload'])) { |
|
| 3016 | + echo ' |
|
| 2896 | 3017 | <input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_upload" value="upload"' . ($context['member']['avatar']['choice'] == 'upload' ? ' checked="checked"' : '') . '> |
| 2897 | 3018 | <label for="avatar_choice_upload"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '> |
| 2898 | 3019 | ', $txt['avatar_will_upload'], ' |
| 2899 | 3020 | </label><br>'; |
| 3021 | + } |
|
| 2900 | 3022 | |
| 2901 | - if (!empty($context['member']['avatar']['allow_gravatar'])) |
|
| 2902 | - echo ' |
|
| 3023 | + if (!empty($context['member']['avatar']['allow_gravatar'])) { |
|
| 3024 | + echo ' |
|
| 2903 | 3025 | <input type="radio" onclick="swap_avatar(this); return true;" name="avatar_choice" id="avatar_choice_gravatar" value="gravatar"' . ($context['member']['avatar']['choice'] == 'gravatar' ? ' checked="checked"' : '') . '> |
| 2904 | 3026 | <label for="avatar_choice_gravatar"' . (isset($context['modify_error']['bad_avatar']) ? ' class="error"' : '') . '>' . $txt['use_gravatar'] . '</label>'; |
| 3027 | + } |
|
| 2905 | 3028 | |
| 2906 | 3029 | echo ' |
| 2907 | 3030 | </dt> |
@@ -2916,9 +3039,10 @@ discard block |
||
| 2916 | 3039 | <select name="cat" id="cat" size="10" onchange="changeSel(\'\');" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'server_stored\');">'; |
| 2917 | 3040 | |
| 2918 | 3041 | // This lists all the file categories. |
| 2919 | - foreach ($context['avatars'] as $avatar) |
|
| 2920 | - echo ' |
|
| 3042 | + foreach ($context['avatars'] as $avatar) { |
|
| 3043 | + echo ' |
|
| 2921 | 3044 | <option value="', $avatar['filename'] . ($avatar['is_dir'] ? '/' : ''), '"', ($avatar['checked'] ? ' selected' : ''), '>', $avatar['name'], '</option>'; |
| 3045 | + } |
|
| 2922 | 3046 | |
| 2923 | 3047 | echo ' |
| 2924 | 3048 | </select> |
@@ -2950,20 +3074,22 @@ discard block |
||
| 2950 | 3074 | } |
| 2951 | 3075 | |
| 2952 | 3076 | // If the user can link to an off server avatar, show them a box to input the address. |
| 2953 | - if (!empty($context['member']['avatar']['allow_external'])) |
|
| 2954 | - echo ' |
|
| 3077 | + if (!empty($context['member']['avatar']['allow_external'])) { |
|
| 3078 | + echo ' |
|
| 2955 | 3079 | <div id="avatar_external"> |
| 2956 | 3080 | <div class="smalltext">', $txt['avatar_by_url'], '</div>', !empty($modSettings['avatar_action_too_large']) && $modSettings['avatar_action_too_large'] == 'option_download_and_resize' ? template_max_size('external') : '', ' |
| 2957 | 3081 | <input type="text" name="userpicpersonal" size="45" value="', ((stristr($context['member']['avatar']['external'], 'http://') || stristr($context['member']['avatar']['external'], 'https://')) ? $context['member']['avatar']['external'] : 'http://'), '" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'external\');" onchange="if (typeof(previewExternalAvatar) != \'undefined\') previewExternalAvatar(this.value);"> |
| 2958 | 3082 | </div>'; |
| 3083 | + } |
|
| 2959 | 3084 | |
| 2960 | 3085 | // If the user is able to upload avatars to the server show them an upload box. |
| 2961 | - if (!empty($context['member']['avatar']['allow_upload'])) |
|
| 2962 | - echo ' |
|
| 3086 | + if (!empty($context['member']['avatar']['allow_upload'])) { |
|
| 3087 | + echo ' |
|
| 2963 | 3088 | <div id="avatar_upload"> |
| 2964 | 3089 | <input type="file" size="44" name="attachment" id="avatar_upload_box" value="" onchange="readfromUpload(this)" onfocus="selectRadioByName(document.forms.creator.avatar_choice, \'upload\');" accept="image/gif, image/jpeg, image/jpg, image/png">', template_max_size('upload'), ' |
| 2965 | 3090 | ', (!empty($context['member']['avatar']['id_attach']) ? '<br><img src="' . $context['member']['avatar']['href'] . (strpos($context['member']['avatar']['href'], '?') === false ? '?' : '&') . 'time=' . time() . '" alt="" id="attached_image"><input type="hidden" name="id_attach" value="' . $context['member']['avatar']['id_attach'] . '">' : ''), ' |
| 2966 | 3091 | </div>'; |
| 3092 | + } |
|
| 2967 | 3093 | |
| 2968 | 3094 | // if the user is able to use Gravatar avatars show then the image preview |
| 2969 | 3095 | if (!empty($context['member']['avatar']['allow_gravatar'])) |
@@ -2972,16 +3098,17 @@ discard block |
||
| 2972 | 3098 | <div id="avatar_gravatar"> |
| 2973 | 3099 | <img src="' . $context['member']['avatar']['href'] . '" alt="">'; |
| 2974 | 3100 | |
| 2975 | - if (empty($modSettings['gravatarAllowExtraEmail'])) |
|
| 2976 | - echo ' |
|
| 3101 | + if (empty($modSettings['gravatarAllowExtraEmail'])) { |
|
| 3102 | + echo ' |
|
| 2977 | 3103 | <div class="smalltext">', $txt['gravatar_noAlternateEmail'], '</div>'; |
| 2978 | - else |
|
| 3104 | + } else |
|
| 2979 | 3105 | { |
| 2980 | 3106 | // Depending on other stuff, the stored value here might have some odd things in it from other areas. |
| 2981 | - if ($context['member']['avatar']['external'] == $context['member']['email']) |
|
| 2982 | - $textbox_value = ''; |
|
| 2983 | - else |
|
| 2984 | - $textbox_value = $context['member']['avatar']['external']; |
|
| 3107 | + if ($context['member']['avatar']['external'] == $context['member']['email']) { |
|
| 3108 | + $textbox_value = ''; |
|
| 3109 | + } else { |
|
| 3110 | + $textbox_value = $context['member']['avatar']['external']; |
|
| 3111 | + } |
|
| 2985 | 3112 | |
| 2986 | 3113 | echo ' |
| 2987 | 3114 | <div class="smalltext">', $txt['gravatar_alternateEmail'], '</div> |
@@ -3053,8 +3180,9 @@ discard block |
||
| 3053 | 3180 | $h = !empty($modSettings['avatar_max_height_' . $type]) ? comma_format($modSettings['avatar_max_height_' . $type]) : 0; |
| 3054 | 3181 | |
| 3055 | 3182 | $suffix = (!empty($w) ? 'w' : '') . (!empty($h) ? 'h' : ''); |
| 3056 | - if (empty($suffix)) |
|
| 3057 | - return; |
|
| 3183 | + if (empty($suffix)) { |
|
| 3184 | + return; |
|
| 3185 | + } |
|
| 3058 | 3186 | |
| 3059 | 3187 | echo ' |
| 3060 | 3188 | <div class="smalltext">', sprintf($txt['avatar_max_size_' . $suffix], $w, $h), '</div>'; |
@@ -3079,9 +3207,10 @@ discard block |
||
| 3079 | 3207 | <select name="easyformat" id="easyformat" onchange="document.forms.creator.time_format.value = this.options[this.selectedIndex].value;">'; |
| 3080 | 3208 | |
| 3081 | 3209 | // Help the user by showing a list of common time formats. |
| 3082 | - foreach ($context['easy_timeformats'] as $time_format) |
|
| 3083 | - echo ' |
|
| 3210 | + foreach ($context['easy_timeformats'] as $time_format) { |
|
| 3211 | + echo ' |
|
| 3084 | 3212 | <option value="', $time_format['format'], '"', $time_format['format'] == $context['member']['time_format'] ? ' selected' : '', '>', $time_format['title'], '</option>'; |
| 3213 | + } |
|
| 3085 | 3214 | |
| 3086 | 3215 | echo ' |
| 3087 | 3216 | </select> |
@@ -3119,9 +3248,10 @@ discard block |
||
| 3119 | 3248 | <dd> |
| 3120 | 3249 | <select name="smiley_set" id="smiley_set" onchange="document.getElementById(\'smileypr\').src = this.selectedIndex == 0 ? \'', $settings['images_url'], '/blank.png\' : \'', $modSettings['smileys_url'], '/\' + (this.selectedIndex != 1 ? this.options[this.selectedIndex].value : \'', !empty($settings['smiley_sets_default']) ? $settings['smiley_sets_default'] : $modSettings['smiley_sets_default'], '\') + \'/smiley.png\';">'; |
| 3121 | 3250 | |
| 3122 | - foreach ($context['smiley_sets'] as $set) |
|
| 3123 | - echo ' |
|
| 3251 | + foreach ($context['smiley_sets'] as $set) { |
|
| 3252 | + echo ' |
|
| 3124 | 3253 | <option value="', $set['id'], '"', $set['selected'] ? ' selected' : '', '>', $set['name'], '</option>'; |
| 3254 | + } |
|
| 3125 | 3255 | |
| 3126 | 3256 | echo ' |
| 3127 | 3257 | </select> |
@@ -3143,17 +3273,17 @@ discard block |
||
| 3143 | 3273 | <div class="roundframe"> |
| 3144 | 3274 | <div>'; |
| 3145 | 3275 | |
| 3146 | - if (!empty($context['tfa_backup'])) |
|
| 3147 | - echo ' |
|
| 3276 | + if (!empty($context['tfa_backup'])) { |
|
| 3277 | + echo ' |
|
| 3148 | 3278 | <div class="smalltext error"> |
| 3149 | 3279 | ', $txt['tfa_backup_used_desc'], ' |
| 3150 | 3280 | </div>'; |
| 3151 | - |
|
| 3152 | - elseif ($modSettings['tfa_mode'] == 2) |
|
| 3153 | - echo ' |
|
| 3281 | + } elseif ($modSettings['tfa_mode'] == 2) { |
|
| 3282 | + echo ' |
|
| 3154 | 3283 | <div class="smalltext"> |
| 3155 | 3284 | <strong>', $txt['tfa_forced_desc'], '</strong> |
| 3156 | 3285 | </div>'; |
| 3286 | + } |
|
| 3157 | 3287 | |
| 3158 | 3288 | echo ' |
| 3159 | 3289 | <div class="smalltext"> |
@@ -3164,11 +3294,12 @@ discard block |
||
| 3164 | 3294 | <div class="title_top"> |
| 3165 | 3295 | <strong>', $txt['tfa_step1'], '</strong><br>'; |
| 3166 | 3296 | |
| 3167 | - if (!empty($context['tfa_pass_error'])) |
|
| 3168 | - echo ' |
|
| 3297 | + if (!empty($context['tfa_pass_error'])) { |
|
| 3298 | + echo ' |
|
| 3169 | 3299 | <div class="error smalltext"> |
| 3170 | 3300 | ', $txt['tfa_pass_invalid'], ' |
| 3171 | 3301 | </div>'; |
| 3302 | + } |
|
| 3172 | 3303 | |
| 3173 | 3304 | echo ' |
| 3174 | 3305 | <input type="password" name="passwd" size="25"', !empty($context['tfa_pass_error']) ? ' class="error"' : '', !empty($context['tfa_pass_value']) ? ' value="' . $context['tfa_pass_value'] . '"' : '', '> |
@@ -3181,11 +3312,12 @@ discard block |
||
| 3181 | 3312 | <div class="title_top"> |
| 3182 | 3313 | <strong>', $txt['tfa_step3'], '</strong><br>'; |
| 3183 | 3314 | |
| 3184 | - if (!empty($context['tfa_error'])) |
|
| 3185 | - echo ' |
|
| 3315 | + if (!empty($context['tfa_error'])) { |
|
| 3316 | + echo ' |
|
| 3186 | 3317 | <div class="error smalltext"> |
| 3187 | 3318 | ', $txt['tfa_code_invalid'], ' |
| 3188 | 3319 | </div>'; |
| 3320 | + } |
|
| 3189 | 3321 | |
| 3190 | 3322 | echo ' |
| 3191 | 3323 | <input type="text" name="tfa_code" size="25"', !empty($context['tfa_error']) ? ' class="error"' : '', !empty($context['tfa_value']) ? ' value="' . $context['tfa_value'] . '"' : '', '> |
@@ -3199,10 +3331,11 @@ discard block |
||
| 3199 | 3331 | <img src="', $context['tfa_qr_url'], '" alt=""> |
| 3200 | 3332 | </div>'; |
| 3201 | 3333 | |
| 3202 | - if (!empty($context['from_ajax'])) |
|
| 3203 | - echo ' |
|
| 3334 | + if (!empty($context['from_ajax'])) { |
|
| 3335 | + echo ' |
|
| 3204 | 3336 | <br> |
| 3205 | 3337 | <a href="javascript:self.close();"></a>'; |
| 3338 | + } |
|
| 3206 | 3339 | |
| 3207 | 3340 | echo ' |
| 3208 | 3341 | </div> |
@@ -3242,17 +3375,16 @@ discard block |
||
| 3242 | 3375 | </dt> |
| 3243 | 3376 | <dd>'; |
| 3244 | 3377 | |
| 3245 | - if (!$context['tfa_enabled'] && $context['user']['is_owner']) |
|
| 3246 | - echo ' |
|
| 3378 | + if (!$context['tfa_enabled'] && $context['user']['is_owner']) { |
|
| 3379 | + echo ' |
|
| 3247 | 3380 | <a href="', !empty($modSettings['force_ssl']) ? strtr($scripturl, array('http://' => 'https://')) : $scripturl, '?action=profile;area=tfasetup" id="enable_tfa">', $txt['tfa_profile_enable'], '</a>'; |
| 3248 | - |
|
| 3249 | - elseif (!$context['tfa_enabled']) |
|
| 3250 | - echo ' |
|
| 3381 | + } elseif (!$context['tfa_enabled']) { |
|
| 3382 | + echo ' |
|
| 3251 | 3383 | ', $txt['tfa_profile_disabled']; |
| 3252 | - |
|
| 3253 | - else |
|
| 3254 | - echo ' |
|
| 3384 | + } else { |
|
| 3385 | + echo ' |
|
| 3255 | 3386 | ', sprintf($txt['tfa_profile_enabled'], $scripturl . '?action=profile;u=' . $context['id_member'] . ';area=tfasetup;disable'); |
| 3387 | + } |
|
| 3256 | 3388 | |
| 3257 | 3389 | echo ' |
| 3258 | 3390 | </dd>'; |
@@ -18,11 +18,12 @@ discard block |
||
| 18 | 18 | global $context, $txt, $scripturl; |
| 19 | 19 | |
| 20 | 20 | // Let them know the action was a success. |
| 21 | - if (!empty($context['report_post_action'])) |
|
| 22 | - echo ' |
|
| 21 | + if (!empty($context['report_post_action'])) { |
|
| 22 | + echo ' |
|
| 23 | 23 | <div class="infobox"> |
| 24 | 24 | ', $txt['report_action_' . $context['report_post_action']], ' |
| 25 | 25 | </div>'; |
| 26 | + } |
|
| 26 | 27 | |
| 27 | 28 | echo ' |
| 28 | 29 | <form id="reported_posts" action="', $scripturl, '?action=moderate;area=reportedposts;sa=show', $context['view_closed'] ? ';closed' : '', ';start=', $context['start'], '" method="post" accept-charset="', $context['character_set'], '"> |
@@ -52,8 +53,9 @@ discard block |
||
| 52 | 53 | |
| 53 | 54 | // Prepare the comments... |
| 54 | 55 | $comments = array(); |
| 55 | - foreach ($report['comments'] as $comment) |
|
| 56 | - $comments[$comment['member']['id']] = $comment['member']['link']; |
|
| 56 | + foreach ($report['comments'] as $comment) { |
|
| 57 | + $comments[$comment['member']['id']] = $comment['member']['link']; |
|
| 58 | + } |
|
| 57 | 59 | |
| 58 | 60 | echo ' |
| 59 | 61 | ', $txt['mc_reportedp_reported_by'], ': ', implode(', ', $comments), ' |
@@ -69,18 +71,21 @@ discard block |
||
| 69 | 71 | <li><a href="', $scripturl, '?action=moderate;area=reportedposts;sa=handle;closed=', (int) !$report['closed'], ';rid=', $report['id'], ';start=', $context['start'], ';', $context['session_var'], '=', $context['session_id'], ';', $context['mod-report-closed_token_var'], '=', $context['mod-report-closed_token'], '">', $close_button, '</a></li>'; |
| 70 | 72 | |
| 71 | 73 | // Delete message button. |
| 72 | - if (!$report['closed'] && (is_array($context['report_remove_any_boards']) && in_array($report['topic']['id_board'], $context['report_remove_any_boards']))) |
|
| 73 | - echo ' |
|
| 74 | + if (!$report['closed'] && (is_array($context['report_remove_any_boards']) && in_array($report['topic']['id_board'], $context['report_remove_any_boards']))) { |
|
| 75 | + echo ' |
|
| 74 | 76 | <li><a href="', $scripturl, '?action=deletemsg;topic=', $report['topic']['id'], '.0;msg=', $report['topic']['id_msg'], ';modcenter;', $context['session_var'], '=', $context['session_id'], '" data-confirm="', $txt['mc_reportedp_delete_confirm'], '" class="you_sure">', $delete_button, '</a></li>'; |
| 77 | + } |
|
| 75 | 78 | |
| 76 | 79 | // Ban this user button. |
| 77 | - if (!$report['closed'] && !empty($context['report_manage_bans'])) |
|
| 78 | - echo ' |
|
| 80 | + if (!$report['closed'] && !empty($context['report_manage_bans'])) { |
|
| 81 | + echo ' |
|
| 79 | 82 | <li><a href="', $scripturl, '?action=admin;area=ban;sa=add', (!empty($report['author']['id']) ? ';u=' . $report['author']['id'] : ';msg=' . $report['topic']['id_msg']), ';', $context['session_var'], '=', $context['session_id'], '">', $ban_button, '</a></li>'; |
| 83 | + } |
|
| 80 | 84 | |
| 81 | - if (!$context['view_closed']) |
|
| 82 | - echo ' |
|
| 85 | + if (!$context['view_closed']) { |
|
| 86 | + echo ' |
|
| 83 | 87 | <li><input type="checkbox" name="close[]" value="' . $report['id'] . '"></li>'; |
| 88 | + } |
|
| 84 | 89 | |
| 85 | 90 | echo ' |
| 86 | 91 | </ul> |
@@ -88,18 +93,20 @@ discard block |
||
| 88 | 93 | } |
| 89 | 94 | |
| 90 | 95 | // Were none found? |
| 91 | - if (empty($context['reports'])) |
|
| 92 | - echo ' |
|
| 96 | + if (empty($context['reports'])) { |
|
| 97 | + echo ' |
|
| 93 | 98 | <div class="windowbg"> |
| 94 | 99 | <p class="centertext">', $txt['mc_reportedp_none_found'], '</p> |
| 95 | 100 | </div>'; |
| 101 | + } |
|
| 96 | 102 | |
| 97 | 103 | echo ' |
| 98 | 104 | <div class="pagesection">'; |
| 99 | 105 | |
| 100 | - if (!empty($context['total_reports']) && $context['total_reports'] >= $context['reports_how_many']) |
|
| 101 | - echo ' |
|
| 106 | + if (!empty($context['total_reports']) && $context['total_reports'] >= $context['reports_how_many']) { |
|
| 107 | + echo ' |
|
| 102 | 108 | <div class="pagelinks floatleft">' . $context['page_index'] . '</div>'; |
| 109 | + } |
|
| 103 | 110 | |
| 104 | 111 | echo ' |
| 105 | 112 | <div class="floatright">', !$context['view_closed'] ? ' |
@@ -130,18 +137,20 @@ discard block |
||
| 130 | 137 | <div class="modbox"> |
| 131 | 138 | <ul>'; |
| 132 | 139 | |
| 133 | - foreach ($context['reported_posts'] as $report) |
|
| 134 | - echo ' |
|
| 140 | + foreach ($context['reported_posts'] as $report) { |
|
| 141 | + echo ' |
|
| 135 | 142 | <li class="smalltext"> |
| 136 | 143 | <a href="', $report['report_href'], '">', $report['subject'], '</a> ', $txt['mc_reportedp_by'], ' ', $report['author']['link'], ' |
| 137 | 144 | </li>'; |
| 145 | + } |
|
| 138 | 146 | |
| 139 | 147 | // Don't have any watched users right now? |
| 140 | - if (empty($context['reported_posts'])) |
|
| 141 | - echo ' |
|
| 148 | + if (empty($context['reported_posts'])) { |
|
| 149 | + echo ' |
|
| 142 | 150 | <li> |
| 143 | 151 | <strong class="smalltext">', $txt['mc_recent_reports_none'], '</strong> |
| 144 | 152 | </li>'; |
| 153 | + } |
|
| 145 | 154 | |
| 146 | 155 | echo ' |
| 147 | 156 | </ul> |
@@ -189,11 +198,12 @@ discard block |
||
| 189 | 198 | global $context, $scripturl, $txt; |
| 190 | 199 | |
| 191 | 200 | // Let them know the action was a success. |
| 192 | - if (!empty($context['report_post_action'])) |
|
| 193 | - echo ' |
|
| 201 | + if (!empty($context['report_post_action'])) { |
|
| 202 | + echo ' |
|
| 194 | 203 | <div class="infobox"> |
| 195 | 204 | ', $txt['report_action_' . $context['report_post_action']], ' |
| 196 | 205 | </div>'; |
| 206 | + } |
|
| 197 | 207 | |
| 198 | 208 | echo ' |
| 199 | 209 | <div id="modcenter"> |
@@ -229,14 +239,15 @@ discard block |
||
| 229 | 239 | <h3 class="catbg">', $txt['mc_modreport_whoreported_title'], '</h3> |
| 230 | 240 | </div>'; |
| 231 | 241 | |
| 232 | - foreach ($context['report']['comments'] as $comment) |
|
| 233 | - echo ' |
|
| 242 | + foreach ($context['report']['comments'] as $comment) { |
|
| 243 | + echo ' |
|
| 234 | 244 | <div class="windowbg"> |
| 235 | 245 | <p class="smalltext"> |
| 236 | 246 | ', sprintf($txt['mc_modreport_whoreported_data'], $comment['member']['link'] . (empty($comment['member']['id']) && !empty($comment['member']['ip']) ? ' (' . $comment['member']['ip'] . ')' : ''), $comment['time']), ' |
| 237 | 247 | </p> |
| 238 | 248 | <p>', $comment['message'], '</p> |
| 239 | 249 | </div>'; |
| 250 | + } |
|
| 240 | 251 | |
| 241 | 252 | echo ' |
| 242 | 253 | <br> |
@@ -245,11 +256,12 @@ discard block |
||
| 245 | 256 | </div> |
| 246 | 257 | <div>'; |
| 247 | 258 | |
| 248 | - if (empty($context['report']['mod_comments'])) |
|
| 249 | - echo ' |
|
| 259 | + if (empty($context['report']['mod_comments'])) { |
|
| 260 | + echo ' |
|
| 250 | 261 | <div class="information"> |
| 251 | 262 | <p class="centertext">', $txt['mc_modreport_no_mod_comment'], '</p> |
| 252 | 263 | </div>'; |
| 264 | + } |
|
| 253 | 265 | |
| 254 | 266 | foreach ($context['report']['mod_comments'] as $comment) |
| 255 | 267 | { |
@@ -335,18 +347,20 @@ discard block |
||
| 335 | 347 | <div class="modbox"> |
| 336 | 348 | <ul>'; |
| 337 | 349 | |
| 338 | - foreach ($context['reported_members'] as $report) |
|
| 339 | - echo ' |
|
| 350 | + foreach ($context['reported_members'] as $report) { |
|
| 351 | + echo ' |
|
| 340 | 352 | <li class="smalltext"> |
| 341 | 353 | <a href="', $report['report_href'], '">', $report['user_name'], '</a> |
| 342 | 354 | </li>'; |
| 355 | + } |
|
| 343 | 356 | |
| 344 | 357 | // Don't have any reported members right now? |
| 345 | - if (empty($context['reported_members'])) |
|
| 346 | - echo ' |
|
| 358 | + if (empty($context['reported_members'])) { |
|
| 359 | + echo ' |
|
| 347 | 360 | <li> |
| 348 | 361 | <strong class="smalltext">', $txt['mc_recent_reports_none'], '</strong> |
| 349 | 362 | </li>'; |
| 363 | + } |
|
| 350 | 364 | |
| 351 | 365 | echo ' |
| 352 | 366 | </ul> |
@@ -394,11 +408,12 @@ discard block |
||
| 394 | 408 | global $context, $txt, $scripturl; |
| 395 | 409 | |
| 396 | 410 | // Let them know the action was a success. |
| 397 | - if (!empty($context['report_post_action']) && !empty($txt['report_action_' . $context['report_post_action']])) |
|
| 398 | - echo ' |
|
| 411 | + if (!empty($context['report_post_action']) && !empty($txt['report_action_' . $context['report_post_action']])) { |
|
| 412 | + echo ' |
|
| 399 | 413 | <div class="infobox"> |
| 400 | 414 | ', $txt['report_action_' . $context['report_post_action']], ' |
| 401 | 415 | </div>'; |
| 416 | + } |
|
| 402 | 417 | |
| 403 | 418 | echo ' |
| 404 | 419 | <form id="reported_members" action="', $scripturl, '?action=moderate;area=reportedmembers;sa=show', $context['view_closed'] ? ';closed' : '', ';start=', $context['start'], '" method="post" accept-charset="', $context['character_set'], '"> |
@@ -430,8 +445,9 @@ discard block |
||
| 430 | 445 | |
| 431 | 446 | // Prepare the comments... |
| 432 | 447 | $comments = array(); |
| 433 | - foreach ($report['comments'] as $comment) |
|
| 434 | - $comments[$comment['member']['id']] = $comment['member']['link']; |
|
| 448 | + foreach ($report['comments'] as $comment) { |
|
| 449 | + $comments[$comment['member']['id']] = $comment['member']['link']; |
|
| 450 | + } |
|
| 435 | 451 | |
| 436 | 452 | echo ' |
| 437 | 453 | ', $txt['mc_reportedp_reported_by'], ': ', implode(', ', $comments), ' |
@@ -443,13 +459,15 @@ discard block |
||
| 443 | 459 | <li><a href="', $scripturl, '?action=moderate;area=reportedmembers;sa=handle;closed=', (int) !$report['closed'], ';rid=', $report['id'], ';start=', $context['start'], ';', $context['session_var'], '=', $context['session_id'], ';', $context['mod-report-closed_token_var'], '=', $context['mod-report-closed_token'], '">', $close_button, '</a></li>'; |
| 444 | 460 | |
| 445 | 461 | // Ban this user button. |
| 446 | - if (!$report['closed'] && !empty($context['report_manage_bans']) && !empty($report['user']['id'])) |
|
| 447 | - echo ' |
|
| 462 | + if (!$report['closed'] && !empty($context['report_manage_bans']) && !empty($report['user']['id'])) { |
|
| 463 | + echo ' |
|
| 448 | 464 | <li><a href="', $scripturl, '?action=admin;area=ban;sa=add;u=', $report['user']['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $ban_button, '</a></li>'; |
| 465 | + } |
|
| 449 | 466 | |
| 450 | - if (!$context['view_closed']) |
|
| 451 | - echo ' |
|
| 467 | + if (!$context['view_closed']) { |
|
| 468 | + echo ' |
|
| 452 | 469 | <li><input type="checkbox" name="close[]" value="' . $report['id'] . '"></li>'; |
| 470 | + } |
|
| 453 | 471 | |
| 454 | 472 | echo ' |
| 455 | 473 | </ul> |
@@ -457,11 +475,12 @@ discard block |
||
| 457 | 475 | } |
| 458 | 476 | |
| 459 | 477 | // Were none found? |
| 460 | - if (empty($context['reports'])) |
|
| 461 | - echo ' |
|
| 478 | + if (empty($context['reports'])) { |
|
| 479 | + echo ' |
|
| 462 | 480 | <div class="windowbg"> |
| 463 | 481 | <p class="centertext">', $txt['mc_reportedp_none_found'], '</p> |
| 464 | 482 | </div>'; |
| 483 | + } |
|
| 465 | 484 | |
| 466 | 485 | echo ' |
| 467 | 486 | <div class="pagesection"> |
@@ -482,11 +501,12 @@ discard block |
||
| 482 | 501 | global $context, $scripturl, $txt; |
| 483 | 502 | |
| 484 | 503 | // Let them know the action was a success. |
| 485 | - if (!empty($context['report_post_action'])) |
|
| 486 | - echo ' |
|
| 504 | + if (!empty($context['report_post_action'])) { |
|
| 505 | + echo ' |
|
| 487 | 506 | <div class="infobox"> |
| 488 | 507 | ', $txt['report_action_' . $context['report_post_action']], ' |
| 489 | 508 | </div>'; |
| 509 | + } |
|
| 490 | 510 | |
| 491 | 511 | echo ' |
| 492 | 512 | <div id="modcenter"> |
@@ -519,14 +539,15 @@ discard block |
||
| 519 | 539 | <h3 class="catbg">', $txt['mc_memberreport_whoreported_title'], '</h3> |
| 520 | 540 | </div>'; |
| 521 | 541 | |
| 522 | - foreach ($context['report']['comments'] as $comment) |
|
| 523 | - echo ' |
|
| 542 | + foreach ($context['report']['comments'] as $comment) { |
|
| 543 | + echo ' |
|
| 524 | 544 | <div class="windowbg"> |
| 525 | 545 | <p class="smalltext"> |
| 526 | 546 | ', sprintf($txt['mc_modreport_whoreported_data'], $comment['member']['link'] . (empty($comment['member']['id']) && !empty($comment['member']['ip']) ? ' (' . $comment['member']['ip'] . ')' : ''), $comment['time']), ' |
| 527 | 547 | </p> |
| 528 | 548 | <p>', $comment['message'], '</p> |
| 529 | 549 | </div>'; |
| 550 | + } |
|
| 530 | 551 | |
| 531 | 552 | echo ' |
| 532 | 553 | <br> |
@@ -535,11 +556,12 @@ discard block |
||
| 535 | 556 | </div> |
| 536 | 557 | <div>'; |
| 537 | 558 | |
| 538 | - if (empty($context['report']['mod_comments'])) |
|
| 539 | - echo ' |
|
| 559 | + if (empty($context['report']['mod_comments'])) { |
|
| 560 | + echo ' |
|
| 540 | 561 | <div class="information"> |
| 541 | 562 | <p class="centertext">', $txt['mc_modreport_no_mod_comment'], '</p> |
| 542 | 563 | </div>'; |
| 564 | + } |
|
| 543 | 565 | |
| 544 | 566 | foreach ($context['report']['mod_comments'] as $comment) |
| 545 | 567 | { |