@@ -39,9 +39,10 @@ discard block |
||
| 39 | 39 | <select name="year" id="year" onchange="generateDays();"> |
| 40 | 40 | <option value="0000"', $context['holiday']['year'] == '0000' ? ' selected' : '', '>', $txt['every_year'], '</option>'; |
| 41 | 41 | // Show a list of all the years we allow... |
| 42 | - for ($year = $modSettings['cal_minyear']; $year <= $modSettings['cal_maxyear']; $year++) |
|
| 43 | - echo ' |
|
| 42 | + for ($year = $modSettings['cal_minyear']; $year <= $modSettings['cal_maxyear']; $year++) { |
|
| 43 | + echo ' |
|
| 44 | 44 | <option value="', $year, '"', $year == $context['holiday']['year'] ? ' selected' : '', '>', $year, '</option>'; |
| 45 | + } |
|
| 45 | 46 | |
| 46 | 47 | echo ' |
| 47 | 48 | </select> |
@@ -49,9 +50,10 @@ discard block |
||
| 49 | 50 | <select name="month" id="month" onchange="generateDays();">'; |
| 50 | 51 | |
| 51 | 52 | // There are 12 months per year - ensure that they all get listed. |
| 52 | - for ($month = 1; $month <= 12; $month++) |
|
| 53 | - echo ' |
|
| 53 | + for ($month = 1; $month <= 12; $month++) { |
|
| 54 | + echo ' |
|
| 54 | 55 | <option value="', $month, '"', $month == $context['holiday']['month'] ? ' selected' : '', '>', $txt['months'][$month], '</option>'; |
| 56 | + } |
|
| 55 | 57 | |
| 56 | 58 | echo ' |
| 57 | 59 | </select> |
@@ -59,23 +61,25 @@ discard block |
||
| 59 | 61 | <select name="day" id="day" onchange="generateDays();">'; |
| 60 | 62 | |
| 61 | 63 | // This prints out all the days in the current month - this changes dynamically as we switch months. |
| 62 | - for ($day = 1; $day <= $context['holiday']['last_day']; $day++) |
|
| 63 | - echo ' |
|
| 64 | + for ($day = 1; $day <= $context['holiday']['last_day']; $day++) { |
|
| 65 | + echo ' |
|
| 64 | 66 | <option value="', $day, '"', $day == $context['holiday']['day'] ? ' selected' : '', '>', $day, '</option>'; |
| 67 | + } |
|
| 65 | 68 | |
| 66 | 69 | echo ' |
| 67 | 70 | </select> |
| 68 | 71 | </dd> |
| 69 | 72 | </dl>'; |
| 70 | 73 | |
| 71 | - if ($context['is_new']) |
|
| 72 | - echo ' |
|
| 74 | + if ($context['is_new']) { |
|
| 75 | + echo ' |
|
| 73 | 76 | <input type="submit" value="', $txt['holidays_button_add'], '" class="button_submit">'; |
| 74 | - else |
|
| 75 | - echo ' |
|
| 77 | + } else { |
|
| 78 | + echo ' |
|
| 76 | 79 | <input type="submit" name="edit" value="', $txt['holidays_button_edit'], '" class="button_submit"> |
| 77 | 80 | <input type="submit" name="delete" value="', $txt['holidays_button_remove'], '" class="button_submit"> |
| 78 | 81 | <input type="hidden" name="holiday" value="', $context['holiday']['id'], '">'; |
| 82 | + } |
|
| 79 | 83 | echo ' |
| 80 | 84 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
| 81 | 85 | </div> |
@@ -101,8 +101,8 @@ discard block |
||
| 101 | 101 | </div> |
| 102 | 102 | <ul id="messages_not_selected" class="split_messages smalltext">'; |
| 103 | 103 | |
| 104 | - foreach ($context['not_selected']['messages'] as $message) |
|
| 105 | - echo ' |
|
| 104 | + foreach ($context['not_selected']['messages'] as $message) { |
|
| 105 | + echo ' |
|
| 106 | 106 | <li class="windowbg" id="not_selected_', $message['id'], '"> |
| 107 | 107 | <div class="message_header"> |
| 108 | 108 | <a class="split_icon floatright" href="', $scripturl, '?action=splittopics;sa=selectTopics;subname=', $context['topic']['subject'], ';topic=', $context['topic']['id'], '.', $context['not_selected']['start'], ';start2=', $context['selected']['start'], ';move=down;msg=', $message['id'], '" onclick="return select(\'down\', ', $message['id'], ');"><span class="generic_icons split_sel" title="->"></span></a> |
@@ -111,6 +111,7 @@ discard block |
||
| 111 | 111 | </div> |
| 112 | 112 | <div class="post">', $message['body'], '</div> |
| 113 | 113 | </li>'; |
| 114 | + } |
|
| 114 | 115 | |
| 115 | 116 | echo ' |
| 116 | 117 | <li class="dummy"> |
@@ -130,8 +131,8 @@ discard block |
||
| 130 | 131 | </div> |
| 131 | 132 | <ul id="messages_selected" class="split_messages smalltext">'; |
| 132 | 133 | |
| 133 | - if (!empty($context['selected']['messages'])) |
|
| 134 | - foreach ($context['selected']['messages'] as $message) |
|
| 134 | + if (!empty($context['selected']['messages'])) { |
|
| 135 | + foreach ($context['selected']['messages'] as $message) |
|
| 135 | 136 | echo ' |
| 136 | 137 | <li class="windowbg" id="selected_', $message['id'], '"> |
| 137 | 138 | <div class="message_header"> |
@@ -141,6 +142,7 @@ discard block |
||
| 141 | 142 | </div> |
| 142 | 143 | <div class="post">', $message['body'], '</div> |
| 143 | 144 | </li>'; |
| 145 | + } |
|
| 144 | 146 | |
| 145 | 147 | echo ' |
| 146 | 148 | <li class="dummy"> |
@@ -46,8 +46,8 @@ discard block |
||
| 46 | 46 | <h3 class="catbg">', $context['page_title'], '</h3> |
| 47 | 47 | </div>'; |
| 48 | 48 | |
| 49 | - if (!empty($context['poll_error']['messages'])) |
|
| 50 | - echo ' |
|
| 49 | + if (!empty($context['poll_error']['messages'])) { |
|
| 50 | + echo ' |
|
| 51 | 51 | <div class="errorbox"> |
| 52 | 52 | <dl class="poll_error"> |
| 53 | 53 | <dt> |
@@ -58,6 +58,7 @@ discard block |
||
| 58 | 58 | </dt> |
| 59 | 59 | </dl> |
| 60 | 60 | </div>'; |
| 61 | + } |
|
| 61 | 62 | |
| 62 | 63 | echo ' |
| 63 | 64 | <div> |
@@ -79,8 +80,9 @@ discard block |
||
| 79 | 80 | <input type="text" name="options[', $choice['id'], ']" id="options-', $choice['id'], '" value="', $choice['label'], '" class="input_text" size="80" maxlength="255">'; |
| 80 | 81 | |
| 81 | 82 | // Does this option have a vote count yet, or is it new? |
| 82 | - if ($choice['votes'] != -1) |
|
| 83 | - echo ' (', $choice['votes'], ' ', $txt['votes'], ')'; |
|
| 83 | + if ($choice['votes'] != -1) { |
|
| 84 | + echo ' (', $choice['votes'], ' ', $txt['votes'], ')'; |
|
| 85 | + } |
|
| 84 | 86 | |
| 85 | 87 | echo ' |
| 86 | 88 | </dd>'; |
@@ -118,14 +120,15 @@ discard block |
||
| 118 | 120 | <input type="checkbox" id="poll_change_vote" name="poll_change_vote"', !empty($context['poll']['change_vote']) ? ' checked' : '', ' class="input_check"> |
| 119 | 121 | </dd>'; |
| 120 | 122 | |
| 121 | - if ($context['poll']['guest_vote_allowed']) |
|
| 122 | - echo ' |
|
| 123 | + if ($context['poll']['guest_vote_allowed']) { |
|
| 124 | + echo ' |
|
| 123 | 125 | <dt> |
| 124 | 126 | <label for="poll_guest_vote">', $txt['poll_guest_vote'], ':</label> |
| 125 | 127 | </dt> |
| 126 | 128 | <dd> |
| 127 | 129 | <input type="checkbox" id="poll_guest_vote" name="poll_guest_vote"', !empty($context['poll']['guest_vote']) ? ' checked' : '', ' class="input_check"> |
| 128 | 130 | </dd>'; |
| 131 | + } |
|
| 129 | 132 | } |
| 130 | 133 | |
| 131 | 134 | echo ' |
@@ -140,12 +143,13 @@ discard block |
||
| 140 | 143 | </dl> |
| 141 | 144 | </fieldset>'; |
| 142 | 145 | // If this is an edit, we can allow them to reset the vote counts. |
| 143 | - if ($context['is_edit']) |
|
| 144 | - echo ' |
|
| 146 | + if ($context['is_edit']) { |
|
| 147 | + echo ' |
|
| 145 | 148 | <fieldset id="poll_reset"> |
| 146 | 149 | <legend>', $txt['reset_votes'], '</legend> |
| 147 | 150 | <input type="checkbox" name="resetVoteCount" value="on" class="input_check"> ' . $txt['reset_votes_check'] . ' |
| 148 | 151 | </fieldset>'; |
| 152 | + } |
|
| 149 | 153 | echo ' |
| 150 | 154 | <input type="submit" name="post" value="', $txt['save'], '" onclick="return submitThisOnce(this);" accesskey="s" class="button_submit"> |
| 151 | 155 | </div> |
@@ -145,11 +145,12 @@ discard block |
||
| 145 | 145 | <div class="question">', $txt['poll_question'], ': <strong>', $context['poll']['question'], '</strong>'; |
| 146 | 146 | |
| 147 | 147 | $options = 1; |
| 148 | - foreach ($context['poll']['options'] as $option) |
|
| 149 | - echo ' |
|
| 148 | + foreach ($context['poll']['options'] as $option) { |
|
| 149 | + echo ' |
|
| 150 | 150 | <div class="', $option['voted_this'] ? 'voted' : '', '">', $txt['option'], ' ', $options++, ': <strong>', $option['option'], '</strong> |
| 151 | 151 | ', $context['allow_poll_view'] ? $txt['votes'] . ': ' . $option['votes'] . '' : '', ' |
| 152 | 152 | </div>'; |
| 153 | + } |
|
| 153 | 154 | |
| 154 | 155 | echo ' |
| 155 | 156 | </div>'; |
@@ -171,9 +172,10 @@ discard block |
||
| 171 | 172 | echo ' |
| 172 | 173 | <hr>'; |
| 173 | 174 | |
| 174 | - foreach ($context['printattach'][$post['id_msg']] as $attach) |
|
| 175 | - echo ' |
|
| 175 | + foreach ($context['printattach'][$post['id_msg']] as $attach) { |
|
| 176 | + echo ' |
|
| 176 | 177 | <img width="' . $attach['width'] . '" height="' . $attach['height'] . '" src="', $scripturl . '?action=dlattach;topic=' . $topic . '.0;attach=' . $attach['id_attach'] . '" alt="">'; |
| 178 | + } |
|
| 177 | 179 | } |
| 178 | 180 | |
| 179 | 181 | echo ' |
@@ -213,11 +215,12 @@ discard block |
||
| 213 | 215 | <div class="print_options">'; |
| 214 | 216 | |
| 215 | 217 | // which option is set, text or text&images |
| 216 | - if (isset($_REQUEST['images'])) |
|
| 217 | - echo ' |
|
| 218 | + if (isset($_REQUEST['images'])) { |
|
| 219 | + echo ' |
|
| 218 | 220 | <a href="', $url_text, '">', $txt['print_page_text'], '</a> | <strong><a href="', $url_images, '">', $txt['print_page_images'], '</a></strong>'; |
| 219 | - else |
|
| 220 | - echo ' |
|
| 221 | + } else { |
|
| 222 | + echo ' |
|
| 221 | 223 | <strong><a href="', $url_text, '">', $txt['print_page_text'], '</a></strong> | <a href="', $url_images, '">', $txt['print_page_images'], '</a>'; |
| 222 | -} |
|
| 224 | + } |
|
| 225 | + } |
|
| 223 | 226 | ?> |
| 224 | 227 | \ No newline at end of file |
@@ -24,11 +24,12 @@ discard block |
||
| 24 | 24 | <h3 class="catbg">', $txt['paid_' . $context['action_type'] . '_subscription'], '</h3> |
| 25 | 25 | </div>'; |
| 26 | 26 | |
| 27 | - if (!empty($context['disable_groups'])) |
|
| 28 | - echo ' |
|
| 27 | + if (!empty($context['disable_groups'])) { |
|
| 28 | + echo ' |
|
| 29 | 29 | <div class="information"> |
| 30 | 30 | <span class="alert">', $txt['paid_mod_edit_note'], '</span> |
| 31 | 31 | </div>'; |
| 32 | + } |
|
| 32 | 33 | |
| 33 | 34 | echo ' |
| 34 | 35 | <div class="windowbg2"> |
@@ -68,9 +69,10 @@ discard block |
||
| 68 | 69 | <option value="0"', $context['sub']['prim_group'] == 0 ? ' selected' : '', '>', $txt['paid_mod_no_group'], '</option>'; |
| 69 | 70 | |
| 70 | 71 | // Put each group into the box. |
| 71 | - foreach ($context['groups'] as $id => $name) |
|
| 72 | - echo ' |
|
| 72 | + foreach ($context['groups'] as $id => $name) { |
|
| 73 | + echo ' |
|
| 73 | 74 | <option value="', $id, '"', $context['sub']['prim_group'] == $id ? ' selected' : '', '>', $name, '</option>'; |
| 75 | + } |
|
| 74 | 76 | |
| 75 | 77 | echo ' |
| 76 | 78 | </select> |
@@ -81,9 +83,10 @@ discard block |
||
| 81 | 83 | <dd>'; |
| 82 | 84 | |
| 83 | 85 | // Put a checkbox in for each group |
| 84 | - foreach ($context['groups'] as $id => $name) |
|
| 85 | - echo ' |
|
| 86 | + foreach ($context['groups'] as $id => $name) { |
|
| 87 | + echo ' |
|
| 86 | 88 | <label for="addgroup_', $id, '"><input type="checkbox" id="addgroup_', $id, '" name="addgroup[', $id, ']"', in_array($id, $context['sub']['add_groups']) ? ' checked' : '', !empty($context['disable_groups']) ? ' disabled' : '', ' class="input_check"> <span class="smalltext">', $name, '</span></label><br>'; |
| 89 | + } |
|
| 87 | 90 | |
| 88 | 91 | echo ' |
| 89 | 92 | </dd> |
@@ -135,8 +138,8 @@ discard block |
||
| 135 | 138 | <fieldset>'; |
| 136 | 139 | |
| 137 | 140 | //!! Removed until implemented |
| 138 | - if (!empty($sdflsdhglsdjgs)) |
|
| 139 | - echo ' |
|
| 141 | + if (!empty($sdflsdhglsdjgs)) { |
|
| 142 | + echo ' |
|
| 140 | 143 | <dl class="settings"> |
| 141 | 144 | <dt> |
| 142 | 145 | <label for="allow_partial_check">', $txt['paid_mod_allow_partial'], '</label>:<br><span class="smalltext">', $txt['paid_mod_allow_partial_desc'], '</span> |
@@ -145,6 +148,7 @@ discard block |
||
| 145 | 148 | <input type="checkbox" name="allow_partial" id="allow_partial_check"', empty($context['sub']['allow_partial']) ? '' : ' checked', ' class="input_check"> |
| 146 | 149 | </dd> |
| 147 | 150 | </dl>'; |
| 151 | + } |
|
| 148 | 152 | |
| 149 | 153 | echo ' |
| 150 | 154 | <div class="information"> |
@@ -245,8 +249,8 @@ discard block |
||
| 245 | 249 | <dl class="settings">'; |
| 246 | 250 | |
| 247 | 251 | // Do we need a username? |
| 248 | - if ($context['action_type'] == 'add') |
|
| 249 | - echo ' |
|
| 252 | + if ($context['action_type'] == 'add') { |
|
| 253 | + echo ' |
|
| 250 | 254 | |
| 251 | 255 | <dt> |
| 252 | 256 | <strong>', $txt['paid_username'], ':</strong><br> |
@@ -255,6 +259,7 @@ discard block |
||
| 255 | 259 | <dd> |
| 256 | 260 | <input type="text" name="name" id="name_control" value="', $context['sub']['username'], '" size="30" class="input_text"> |
| 257 | 261 | </dd>'; |
| 262 | + } |
|
| 258 | 263 | |
| 259 | 264 | echo ' |
| 260 | 265 | <dt> |
@@ -272,9 +277,10 @@ discard block |
||
| 272 | 277 | <select name="year" id="year" onchange="generateDays();">'; |
| 273 | 278 | |
| 274 | 279 | // Show a list of all the years we allow... |
| 275 | - for ($year = 2005; $year <= 2030; $year++) |
|
| 276 | - echo ' |
|
| 280 | + for ($year = 2005; $year <= 2030; $year++) { |
|
| 281 | + echo ' |
|
| 277 | 282 | <option value="', $year, '"', $year == $context['sub']['start']['year'] ? ' selected' : '', '>', $year, '</option>'; |
| 283 | + } |
|
| 278 | 284 | |
| 279 | 285 | echo ' |
| 280 | 286 | </select> |
@@ -282,9 +288,10 @@ discard block |
||
| 282 | 288 | <select name="month" id="month" onchange="generateDays();">'; |
| 283 | 289 | |
| 284 | 290 | // There are 12 months per year - ensure that they all get listed. |
| 285 | - for ($month = 1; $month <= 12; $month++) |
|
| 286 | - echo ' |
|
| 291 | + for ($month = 1; $month <= 12; $month++) { |
|
| 292 | + echo ' |
|
| 287 | 293 | <option value="', $month, '"', $month == $context['sub']['start']['month'] ? ' selected' : '', '>', $txt['months'][$month], '</option>'; |
| 294 | + } |
|
| 288 | 295 | |
| 289 | 296 | echo ' |
| 290 | 297 | </select> |
@@ -292,9 +299,10 @@ discard block |
||
| 292 | 299 | <select name="day" id="day">'; |
| 293 | 300 | |
| 294 | 301 | // This prints out all the days in the current month - this changes dynamically as we switch months. |
| 295 | - for ($day = 1; $day <= $context['sub']['start']['last_day']; $day++) |
|
| 296 | - echo ' |
|
| 302 | + for ($day = 1; $day <= $context['sub']['start']['last_day']; $day++) { |
|
| 303 | + echo ' |
|
| 297 | 304 | <option value="', $day, '"', $day == $context['sub']['start']['day'] ? ' selected' : '', '>', $day, '</option>'; |
| 305 | + } |
|
| 298 | 306 | |
| 299 | 307 | echo ' |
| 300 | 308 | </select> |
@@ -306,9 +314,10 @@ discard block |
||
| 306 | 314 | <select name="yearend" id="yearend" onchange="generateDays(\'end\');">'; |
| 307 | 315 | |
| 308 | 316 | // Show a list of all the years we allow... |
| 309 | - for ($year = 2005; $year <= 2030; $year++) |
|
| 310 | - echo ' |
|
| 317 | + for ($year = 2005; $year <= 2030; $year++) { |
|
| 318 | + echo ' |
|
| 311 | 319 | <option value="', $year, '"', $year == $context['sub']['end']['year'] ? ' selected' : '', '>', $year, '</option>'; |
| 320 | + } |
|
| 312 | 321 | |
| 313 | 322 | echo ' |
| 314 | 323 | </select> |
@@ -316,9 +325,10 @@ discard block |
||
| 316 | 325 | <select name="monthend" id="monthend" onchange="generateDays(\'end\');">'; |
| 317 | 326 | |
| 318 | 327 | // There are 12 months per year - ensure that they all get listed. |
| 319 | - for ($month = 1; $month <= 12; $month++) |
|
| 320 | - echo ' |
|
| 328 | + for ($month = 1; $month <= 12; $month++) { |
|
| 329 | + echo ' |
|
| 321 | 330 | <option value="', $month, '"', $month == $context['sub']['end']['month'] ? ' selected' : '', '>', $txt['months'][$month], '</option>'; |
| 331 | + } |
|
| 322 | 332 | |
| 323 | 333 | echo ' |
| 324 | 334 | </select> |
@@ -326,9 +336,10 @@ discard block |
||
| 326 | 336 | <select name="dayend" id="dayend">'; |
| 327 | 337 | |
| 328 | 338 | // This prints out all the days in the current month - this changes dynamically as we switch months. |
| 329 | - for ($day = 1; $day <= $context['sub']['end']['last_day']; $day++) |
|
| 330 | - echo ' |
|
| 339 | + for ($day = 1; $day <= $context['sub']['end']['last_day']; $day++) { |
|
| 340 | + echo ' |
|
| 331 | 341 | <option value="', $day, '"', $day == $context['sub']['end']['day'] ? ' selected' : '', '>', $day, '</option>'; |
| 342 | + } |
|
| 332 | 343 | |
| 333 | 344 | echo ' |
| 334 | 345 | </select> |
@@ -410,8 +421,7 @@ discard block |
||
| 410 | 421 | <div class="information"> |
| 411 | 422 | ', $txt['paid_subs_none'], ' |
| 412 | 423 | </div>'; |
| 413 | - } |
|
| 414 | - else |
|
| 424 | + } else |
|
| 415 | 425 | { |
| 416 | 426 | echo ' |
| 417 | 427 | <div class="information"> |
@@ -423,8 +433,9 @@ discard block |
||
| 423 | 433 | { |
| 424 | 434 | |
| 425 | 435 | // Ignore the inactive ones... |
| 426 | - if (empty($subscription['active'])) |
|
| 427 | - continue; |
|
| 436 | + if (empty($subscription['active'])) { |
|
| 437 | + continue; |
|
| 438 | + } |
|
| 428 | 439 | |
| 429 | 440 | echo ' |
| 430 | 441 | <div class="cat_bar"> |
@@ -434,9 +445,10 @@ discard block |
||
| 434 | 445 | <p><strong>', $subscription['name'], '</strong></p> |
| 435 | 446 | <p class="smalltext">', $subscription['desc'], '</p>'; |
| 436 | 447 | |
| 437 | - if (!$subscription['flexible']) |
|
| 438 | - echo ' |
|
| 448 | + if (!$subscription['flexible']) { |
|
| 449 | + echo ' |
|
| 439 | 450 | <div><strong>', $txt['paid_duration'], ':</strong> ', $subscription['length'], '</div>'; |
| 451 | + } |
|
| 440 | 452 | |
| 441 | 453 | if ($context['user']['is_owner']) |
| 442 | 454 | { |
@@ -449,24 +461,25 @@ discard block |
||
| 449 | 461 | <select name="cur[', $subscription['id'], ']">'; |
| 450 | 462 | |
| 451 | 463 | // Print out the costs for this one. |
| 452 | - foreach ($subscription['costs'] as $duration => $value) |
|
| 453 | - echo ' |
|
| 464 | + foreach ($subscription['costs'] as $duration => $value) { |
|
| 465 | + echo ' |
|
| 454 | 466 | <option value="', $duration, '">', sprintf($modSettings['paid_currency_symbol'], $value), '/', $txt[$duration], '</option>'; |
| 467 | + } |
|
| 455 | 468 | |
| 456 | 469 | echo ' |
| 457 | 470 | </select>'; |
| 458 | - } |
|
| 459 | - else |
|
| 460 | - echo ' |
|
| 471 | + } else { |
|
| 472 | + echo ' |
|
| 461 | 473 | ', sprintf($modSettings['paid_currency_symbol'], $subscription['costs']['fixed']); |
| 474 | + } |
|
| 462 | 475 | |
| 463 | 476 | echo ' |
| 464 | 477 | <hr> |
| 465 | 478 | <input type="submit" name="sub_id[', $subscription['id'], ']" value="', $txt['paid_order'], '" class="button_submit">'; |
| 466 | - } |
|
| 467 | - else |
|
| 468 | - echo ' |
|
| 479 | + } else { |
|
| 480 | + echo ' |
|
| 469 | 481 | <a href="', $scripturl, '?action=admin;area=paidsubscribe;sa=modifyuser;sid=', $subscription['id'], ';uid=', $context['member']['id'], (empty($context['current'][$subscription['id']]) ? '' : ';lid=' . $context['current'][$subscription['id']]['id']), '">', empty($context['current'][$subscription['id']]) ? $txt['paid_admin_add'] : $txt['paid_edit_subscription'], '</a>'; |
| 482 | + } |
|
| 470 | 483 | |
| 471 | 484 | echo ' |
| 472 | 485 | </div>'; |
@@ -493,19 +506,20 @@ discard block |
||
| 493 | 506 | </thead> |
| 494 | 507 | <tbody>'; |
| 495 | 508 | |
| 496 | - if (empty($context['current'])) |
|
| 497 | - echo ' |
|
| 509 | + if (empty($context['current'])) { |
|
| 510 | + echo ' |
|
| 498 | 511 | <tr class="windowbg"> |
| 499 | 512 | <td colspan="4"> |
| 500 | 513 | ', $txt['paid_none_yet'], ' |
| 501 | 514 | </td> |
| 502 | 515 | </tr>'; |
| 516 | + } |
|
| 503 | 517 | |
| 504 | 518 | foreach ($context['current'] as $sub) |
| 505 | 519 | { |
| 506 | 520 | |
| 507 | - if (!$sub['hide']) |
|
| 508 | - echo ' |
|
| 521 | + if (!$sub['hide']) { |
|
| 522 | + echo ' |
|
| 509 | 523 | <tr class="windowbg"> |
| 510 | 524 | <td> |
| 511 | 525 | ', (allowedTo('admin_forum') ? '<a href="' . $scripturl . '?action=admin;area=paidsubscribe;sa=modifyuser;lid=' . $sub['id'] . '">' . $sub['name'] . '</a>' : $sub['name']), ' |
@@ -517,6 +531,7 @@ discard block |
||
| 517 | 531 | ', $sub['end'], ' |
| 518 | 532 | </td> |
| 519 | 533 | </tr>'; |
| 534 | + } |
|
| 520 | 535 | } |
| 521 | 536 | echo ' |
| 522 | 537 | </tbody> |
@@ -567,15 +582,17 @@ discard block |
||
| 567 | 582 | ', $gateway['desc'], '<br> |
| 568 | 583 | <form action="', $gateway['form'], '" method="post">'; |
| 569 | 584 | |
| 570 | - if (!empty($gateway['javascript'])) |
|
| 571 | - echo ' |
|
| 585 | + if (!empty($gateway['javascript'])) { |
|
| 586 | + echo ' |
|
| 572 | 587 | <script> |
| 573 | 588 | ', $gateway['javascript'], ' |
| 574 | 589 | </script>'; |
| 590 | + } |
|
| 575 | 591 | |
| 576 | - foreach ($gateway['hidden'] as $name => $value) |
|
| 577 | - echo ' |
|
| 592 | + foreach ($gateway['hidden'] as $name => $value) { |
|
| 593 | + echo ' |
|
| 578 | 594 | <input type="hidden" id="', $gateway['id'], '_', $name, '" name="', $name, '" value="', $value, '">'; |
| 595 | + } |
|
| 579 | 596 | |
| 580 | 597 | echo ' |
| 581 | 598 | <br><input type="submit" value="', $gateway['submit'], '" class="button_submit"> |
@@ -28,14 +28,16 @@ discard block |
||
| 28 | 28 | <form class="login" action="', $context['login_url'], '" name="frmLogin" id="frmLogin" method="post" accept-charset="', $context['character_set'], '">'; |
| 29 | 29 | |
| 30 | 30 | // Did they make a mistake last time? |
| 31 | - if (!empty($context['login_errors'])) |
|
| 32 | - echo ' |
|
| 31 | + if (!empty($context['login_errors'])) { |
|
| 32 | + echo ' |
|
| 33 | 33 | <div class="errorbox">', implode('<br>', $context['login_errors']), '</div><br>'; |
| 34 | + } |
|
| 34 | 35 | |
| 35 | 36 | // Or perhaps there's some special description for this time? |
| 36 | - if (isset($context['description'])) |
|
| 37 | - echo ' |
|
| 37 | + if (isset($context['description'])) { |
|
| 38 | + echo ' |
|
| 38 | 39 | <div class="information">', $context['description'], '</div>'; |
| 40 | + } |
|
| 39 | 41 | |
| 40 | 42 | // Now just get the basic information - username, password, etc. |
| 41 | 43 | echo ' |
@@ -51,10 +53,11 @@ discard block |
||
| 51 | 53 | <dt>', $txt['always_logged_in'], ':</dt> |
| 52 | 54 | <dd><input type="checkbox" name="cookieneverexp"', $context['never_expire'] ? ' checked' : '', ' class="input_check" onclick="this.form.cookielength.disabled = this.checked;"></dd>'; |
| 53 | 55 | // If they have deleted their account, give them a chance to change their mind. |
| 54 | - if (isset($context['login_show_undelete'])) |
|
| 55 | - echo ' |
|
| 56 | + if (isset($context['login_show_undelete'])) { |
|
| 57 | + echo ' |
|
| 56 | 58 | <dt class="alert">', $txt['undelete_account'], ':</dt> |
| 57 | 59 | <dd><input type="checkbox" name="undelete" class="input_check"></dd>'; |
| 60 | + } |
|
| 58 | 61 | echo ' |
| 59 | 62 | </dl> |
| 60 | 63 | <p><input type="submit" value="', $txt['login'], '" class="button_submit"></p> |
@@ -66,8 +69,8 @@ discard block |
||
| 66 | 69 | setTimeout(function() { |
| 67 | 70 | document.getElementById("', !empty($context['from_ajax']) ? 'ajax_' : '', isset($context['default_username']) && $context['default_username'] != '' ? 'loginpass' : 'loginuser', '").focus(); |
| 68 | 71 | }, 150);'; |
| 69 | - if (!empty($context['from_ajax']) && (empty($modSettings['force_ssl']) || $modSettings['force_ssl'] == 2)) |
|
| 70 | - echo ' |
|
| 72 | + if (!empty($context['from_ajax']) && (empty($modSettings['force_ssl']) || $modSettings['force_ssl'] == 2)) { |
|
| 73 | + echo ' |
|
| 71 | 74 | form = $("#frmLogin"); |
| 72 | 75 | form.submit(function(e) { |
| 73 | 76 | e.preventDefault(); |
@@ -100,16 +103,18 @@ discard block |
||
| 100 | 103 | |
| 101 | 104 | return false; |
| 102 | 105 | });'; |
| 106 | + } |
|
| 103 | 107 | |
| 104 | 108 | echo ' |
| 105 | 109 | </script> |
| 106 | 110 | </form>'; |
| 107 | 111 | |
| 108 | 112 | // It is a long story as to why we have this when we're clearly not going to use it. |
| 109 | - if (!empty($context['from_ajax'])) |
|
| 110 | - echo ' |
|
| 113 | + if (!empty($context['from_ajax'])) { |
|
| 114 | + echo ' |
|
| 111 | 115 | <br> |
| 112 | 116 | <a href="javascript:self.close();"></a>'; |
| 117 | + } |
|
| 113 | 118 | echo ' |
| 114 | 119 | </div> |
| 115 | 120 | </div>'; |
@@ -130,9 +135,10 @@ discard block |
||
| 130 | 135 | </h3> |
| 131 | 136 | </div> |
| 132 | 137 | <div class="roundframe noup">'; |
| 133 | - if (!empty($context['tfa_error']) || !empty($context['tfa_backup_error'])) |
|
| 134 | - echo ' |
|
| 138 | + if (!empty($context['tfa_error']) || !empty($context['tfa_backup_error'])) { |
|
| 139 | + echo ' |
|
| 135 | 140 | <div class="error">', $txt['tfa_' . (!empty($context['tfa_error']) ? 'code_' : 'backup_') . 'invalid'], '</div>'; |
| 141 | + } |
|
| 136 | 142 | echo ' |
| 137 | 143 | <form action="', $context['tfa_url'], '" method="post" id="frmTfa"> |
| 138 | 144 | <div id="tfaCode"> |
@@ -155,8 +161,8 @@ discard block |
||
| 155 | 161 | </form> |
| 156 | 162 | <script> |
| 157 | 163 | form = $("#frmTfa");'; |
| 158 | - if (!empty($context['from_ajax'])) |
|
| 159 | - echo ' |
|
| 164 | + if (!empty($context['from_ajax'])) { |
|
| 165 | + echo ' |
|
| 160 | 166 | form.submit(function(e) { |
| 161 | 167 | // If we are submitting backup code, let normal workflow follow since it redirects a couple times into a different page |
| 162 | 168 | if (form.find("input[name=tfa_backup]:first").val().length > 0) |
@@ -175,6 +181,7 @@ discard block |
||
| 175 | 181 | |
| 176 | 182 | return false; |
| 177 | 183 | });'; |
| 184 | + } |
|
| 178 | 185 | echo ' |
| 179 | 186 | form.find("input[name=backup]").click(function(e) { |
| 180 | 187 | $("#tfaBackup").show(); |
@@ -206,10 +213,11 @@ discard block |
||
| 206 | 213 | ', empty($context['kick_message']) ? $txt['only_members_can_access'] : $context['kick_message'], '<br>'; |
| 207 | 214 | |
| 208 | 215 | |
| 209 | - if ($context['can_register']) |
|
| 210 | - echo sprintf($txt['login_below_or_register'], $scripturl . '?action=signup', $context['forum_name_html_safe']); |
|
| 211 | - else |
|
| 212 | - echo $txt['login_below']; |
|
| 216 | + if ($context['can_register']) { |
|
| 217 | + echo sprintf($txt['login_below_or_register'], $scripturl . '?action=signup', $context['forum_name_html_safe']); |
|
| 218 | + } else { |
|
| 219 | + echo $txt['login_below']; |
|
| 220 | + } |
|
| 213 | 221 | |
| 214 | 222 | // And now the login information. |
| 215 | 223 | echo ' |
@@ -305,9 +313,10 @@ discard block |
||
| 305 | 313 | </div> |
| 306 | 314 | <div class="roundframe centertext noup">'; |
| 307 | 315 | |
| 308 | - if (!empty($context['incorrect_password'])) |
|
| 309 | - echo ' |
|
| 316 | + if (!empty($context['incorrect_password'])) { |
|
| 317 | + echo ' |
|
| 310 | 318 | <div class="error">', $txt['admin_incorrect_password'], '</div>'; |
| 319 | + } |
|
| 311 | 320 | |
| 312 | 321 | echo ' |
| 313 | 322 | <strong>', $txt['password'], ':</strong> |
@@ -347,11 +356,12 @@ discard block |
||
| 347 | 356 | <div class="roundframe">'; |
| 348 | 357 | |
| 349 | 358 | // You didn't even have an ID? |
| 350 | - if (empty($context['member_id'])) |
|
| 351 | - echo ' |
|
| 359 | + if (empty($context['member_id'])) { |
|
| 360 | + echo ' |
|
| 352 | 361 | <dl> |
| 353 | 362 | <dt>', $txt['invalid_activation_username'], ':</dt> |
| 354 | 363 | <dd><input type="text" name="user" size="30" class="input_text"></dd>'; |
| 364 | + } |
|
| 355 | 365 | |
| 356 | 366 | echo ' |
| 357 | 367 | <dt>', $txt['invalid_activation_retry'], ':</dt> |
@@ -388,13 +398,14 @@ discard block |
||
| 388 | 398 | <dd><input type="password" name="passwd" size="30" class="input_password"></dd> |
| 389 | 399 | </dl>'; |
| 390 | 400 | |
| 391 | - if ($context['can_activate']) |
|
| 392 | - echo ' |
|
| 401 | + if ($context['can_activate']) { |
|
| 402 | + echo ' |
|
| 393 | 403 | <p>', $txt['invalid_activation_known'], '</p> |
| 394 | 404 | <dl> |
| 395 | 405 | <dt>', $txt['invalid_activation_retry'], ':</dt> |
| 396 | 406 | <dd><input type="text" name="code" size="30" class="input_text"></dd> |
| 397 | 407 | </dl>'; |
| 408 | + } |
|
| 398 | 409 | |
| 399 | 410 | echo ' |
| 400 | 411 | <p><input type="submit" value="', $txt['invalid_activation_resend'], '" class="button_submit"></p> |
@@ -44,10 +44,11 @@ discard block |
||
| 44 | 44 | <dt>', $txt['users_online_today'], ':</dt> |
| 45 | 45 | <dd>', $context['online_today'], '</dd>'; |
| 46 | 46 | |
| 47 | - if (!empty($modSettings['hitStats'])) |
|
| 48 | - echo ' |
|
| 47 | + if (!empty($modSettings['hitStats'])) { |
|
| 48 | + echo ' |
|
| 49 | 49 | <dt>', $txt['num_hits'], ':</dt> |
| 50 | 50 | <dd>', $context['num_hits'], '</dd>'; |
| 51 | + } |
|
| 51 | 52 | |
| 52 | 53 | echo ' |
| 53 | 54 | </dl> |
@@ -71,17 +72,19 @@ discard block |
||
| 71 | 72 | <dt>', $txt['gender_stats'], ':</dt> |
| 72 | 73 | <dd>'; |
| 73 | 74 | |
| 74 | - foreach ($context['gender'] as $g => $n) |
|
| 75 | - echo $g, ': ', $n, '<br>'; |
|
| 75 | + foreach ($context['gender'] as $g => $n) { |
|
| 76 | + echo $g, ': ', $n, '<br>'; |
|
| 77 | + } |
|
| 76 | 78 | |
| 77 | 79 | echo ' |
| 78 | 80 | </dd>'; |
| 79 | 81 | } |
| 80 | 82 | |
| 81 | - if (!empty($modSettings['hitStats'])) |
|
| 82 | - echo ' |
|
| 83 | + if (!empty($modSettings['hitStats'])) { |
|
| 84 | + echo ' |
|
| 83 | 85 | <dt>', $txt['average_hits'], ':</dt> |
| 84 | 86 | <dd>', $context['average_hits'], '</dd>'; |
| 87 | + } |
|
| 85 | 88 | |
| 86 | 89 | echo ' |
| 87 | 90 | </dl>'; |
@@ -105,14 +108,15 @@ discard block |
||
| 105 | 108 | </dt> |
| 106 | 109 | <dd class="statsbar">'; |
| 107 | 110 | |
| 108 | - if (!empty($item['percent'])) |
|
| 109 | - echo ' |
|
| 111 | + if (!empty($item['percent'])) { |
|
| 112 | + echo ' |
|
| 110 | 113 | <div class="bar" style="width: ', $item['percent'], '%;"> |
| 111 | 114 | <span class="righttext">', $item['num'], '</span> |
| 112 | 115 | </div>'; |
| 113 | - else |
|
| 114 | - echo ' |
|
| 116 | + } else { |
|
| 117 | + echo ' |
|
| 115 | 118 | <div class="bar empty"><span class="righttext">', $item['num'], '</span></div>'; |
| 119 | + } |
|
| 116 | 120 | |
| 117 | 121 | echo ' |
| 118 | 122 | </dd>'; |
@@ -144,9 +148,10 @@ discard block |
||
| 144 | 148 | <th>', $txt['stats_new_members'], '</th> |
| 145 | 149 | <th>', $txt['most_online'], '</th>'; |
| 146 | 150 | |
| 147 | - if (!empty($modSettings['hitStats'])) |
|
| 148 | - echo ' |
|
| 151 | + if (!empty($modSettings['hitStats'])) { |
|
| 152 | + echo ' |
|
| 149 | 153 | <th>', $txt['page_views'], '</th>'; |
| 154 | + } |
|
| 150 | 155 | |
| 151 | 156 | echo ' |
| 152 | 157 | </tr> |
@@ -165,9 +170,10 @@ discard block |
||
| 165 | 170 | <th>', $year['new_members'], '</th> |
| 166 | 171 | <th>', $year['most_members_online'], '</th>'; |
| 167 | 172 | |
| 168 | - if (!empty($modSettings['hitStats'])) |
|
| 169 | - echo ' |
|
| 173 | + if (!empty($modSettings['hitStats'])) { |
|
| 174 | + echo ' |
|
| 170 | 175 | <th>', $year['hits'], '</th>'; |
| 176 | + } |
|
| 171 | 177 | |
| 172 | 178 | echo ' |
| 173 | 179 | </tr>'; |
@@ -184,9 +190,10 @@ discard block |
||
| 184 | 190 | <th>', $month['new_members'], '</th> |
| 185 | 191 | <th>', $month['most_members_online'], '</th>'; |
| 186 | 192 | |
| 187 | - if (!empty($modSettings['hitStats'])) |
|
| 188 | - echo ' |
|
| 193 | + if (!empty($modSettings['hitStats'])) { |
|
| 194 | + echo ' |
|
| 189 | 195 | <th>', $month['hits'], '</th>'; |
| 196 | + } |
|
| 190 | 197 | |
| 191 | 198 | echo ' |
| 192 | 199 | </tr>'; |
@@ -203,9 +210,10 @@ discard block |
||
| 203 | 210 | <td>', $day['new_members'], '</td> |
| 204 | 211 | <td>', $day['most_members_online'], '</td>'; |
| 205 | 212 | |
| 206 | - if (!empty($modSettings['hitStats'])) |
|
| 207 | - echo ' |
|
| 213 | + if (!empty($modSettings['hitStats'])) { |
|
| 214 | + echo ' |
|
| 208 | 215 | <td>', $day['hits'], '</td>'; |
| 216 | + } |
|
| 209 | 217 | |
| 210 | 218 | echo ' |
| 211 | 219 | </tr>'; |
@@ -86,9 +86,10 @@ discard block |
||
| 86 | 86 | <span class="smalltext"><em>', $txt['find_wildcards'], '</em></span><br>'; |
| 87 | 87 | |
| 88 | 88 | // Only offer to search for buddies if we have some! |
| 89 | - if (!empty($context['show_buddies'])) |
|
| 90 | - echo ' |
|
| 89 | + if (!empty($context['show_buddies'])) { |
|
| 90 | + echo ' |
|
| 91 | 91 | <span class="smalltext"><label for="buddies"><input type="checkbox" class="input_check" name="buddies" id="buddies"', !empty($context['buddy_search']) ? ' checked' : '', '> ', $txt['find_buddies'], '</label></span><br>'; |
| 92 | + } |
|
| 92 | 93 | |
| 93 | 94 | echo ' |
| 94 | 95 | <div class="padding righttext"> |
@@ -103,10 +104,10 @@ discard block |
||
| 103 | 104 | <h3 class="catbg">', $txt['find_results'], '</h3> |
| 104 | 105 | </div>'; |
| 105 | 106 | |
| 106 | - if (empty($context['results'])) |
|
| 107 | - echo ' |
|
| 107 | + if (empty($context['results'])) { |
|
| 108 | + echo ' |
|
| 108 | 109 | <p class="error">', $txt['find_no_results'], '</p>'; |
| 109 | - else |
|
| 110 | + } else |
|
| 110 | 111 | { |
| 111 | 112 | echo ' |
| 112 | 113 | <ul class="padding">'; |
@@ -135,11 +136,12 @@ discard block |
||
| 135 | 136 | <input type="hidden" name="quote" value="', $context['quote_results'] ? '1' : '0', '"> |
| 136 | 137 | </form>'; |
| 137 | 138 | |
| 138 | - if (empty($context['results'])) |
|
| 139 | - echo ' |
|
| 139 | + if (empty($context['results'])) { |
|
| 140 | + echo ' |
|
| 140 | 141 | <script> |
| 141 | 142 | document.getElementById("search").focus(); |
| 142 | 143 | </script>'; |
| 144 | + } |
|
| 143 | 145 | |
| 144 | 146 | echo ' |
| 145 | 147 | </body> |
@@ -183,8 +185,8 @@ discard block |
||
| 183 | 185 | { |
| 184 | 186 | global $txt, $context, $modSettings; |
| 185 | 187 | |
| 186 | - if (!empty($modSettings['requireAgreement'])) |
|
| 187 | - echo ' |
|
| 188 | + if (!empty($modSettings['requireAgreement'])) { |
|
| 189 | + echo ' |
|
| 188 | 190 | <div class="cat_bar"> |
| 189 | 191 | <h3 class="catbg"> |
| 190 | 192 | ', $txt['terms_and_rules'], ' - ', $context['forum_name_html_safe'], ' |
@@ -193,11 +195,12 @@ discard block |
||
| 193 | 195 | <div class="roundframe"> |
| 194 | 196 | ', $context['agreement'], ' |
| 195 | 197 | </div>'; |
| 196 | - else |
|
| 197 | - echo ' |
|
| 198 | + } else { |
|
| 199 | + echo ' |
|
| 198 | 200 | <div class="noticebox"> |
| 199 | 201 | ', $txt['agreement_disabled'], ' |
| 200 | 202 | </div>'; |
| 201 | -} |
|
| 203 | + } |
|
| 204 | + } |
|
| 202 | 205 | |
| 203 | 206 | ?> |
| 204 | 207 | \ No newline at end of file |
@@ -25,18 +25,20 @@ discard block |
||
| 25 | 25 | </div> |
| 26 | 26 | <div class="windowbg2 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'] . '">'; |
@@ -81,9 +84,10 @@ discard block |
||
| 81 | 84 | echo ' |
| 82 | 85 | <li class="windowbg" style="padding-', $context['right_to_left'] ? 'right' : 'left', ': ', 5 + 30 * $board['move_links'][0]['child_level'], 'px;">'; |
| 83 | 86 | |
| 84 | - foreach ($board['move_links'] as $link) |
|
| 85 | - echo ' |
|
| 87 | + foreach ($board['move_links'] as $link) { |
|
| 88 | + echo ' |
|
| 86 | 89 | <a href="', $link['href'], '" class="move_links" title="', $link['label'], '"><span class="generic_icons select_', $link['class'], '" title="', $link['label'], '"></span></a>'; |
| 90 | + } |
|
| 87 | 91 | |
| 88 | 92 | echo ' |
| 89 | 93 | </li>'; |
@@ -132,9 +136,10 @@ discard block |
||
| 132 | 136 | <select name="cat_order">'; |
| 133 | 137 | |
| 134 | 138 | // Print every existing category into a select box. |
| 135 | - foreach ($context['category_order'] as $order) |
|
| 136 | - echo ' |
|
| 139 | + foreach ($context['category_order'] as $order) { |
|
| 140 | + echo ' |
|
| 137 | 141 | <option', $order['selected'] ? ' selected' : '', ' value="', $order['id'], '">', $order['name'], '</option>'; |
| 142 | + } |
|
| 138 | 143 | echo ' |
| 139 | 144 | </select> |
| 140 | 145 | </dd>'; |
@@ -168,21 +173,23 @@ discard block |
||
| 168 | 173 | echo ' |
| 169 | 174 | </dl>'; |
| 170 | 175 | |
| 171 | - if (isset($context['category']['is_new'])) |
|
| 172 | - echo ' |
|
| 176 | + if (isset($context['category']['is_new'])) { |
|
| 177 | + echo ' |
|
| 173 | 178 | <input type="submit" name="add" value="', $txt['mboards_add_cat_button'], '" onclick="return !isEmptyText(this.form.cat_name);" tabindex="', $context['tabindex']++, '" class="button_submit">'; |
| 174 | - else |
|
| 175 | - echo ' |
|
| 179 | + } else { |
|
| 180 | + echo ' |
|
| 176 | 181 | <input type="submit" name="edit" value="', $txt['modify'], '" onclick="return !isEmptyText(this.form.cat_name);" tabindex="', $context['tabindex']++, '" class="button_submit"> |
| 177 | 182 | <input type="submit" name="delete" value="', $txt['mboards_delete_cat'], '" data-confirm="', $txt['catConfirm'], '" class="button_submit you_sure">'; |
| 183 | + } |
|
| 178 | 184 | echo ' |
| 179 | 185 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
| 180 | 186 | <input type="hidden" name="', $context[$context['token_check'] . '_token_var'], '" value="', $context[$context['token_check'] . '_token'], '">'; |
| 181 | 187 | |
| 182 | 188 | // If this category is empty we don't bother with the next confirmation screen. |
| 183 | - if ($context['category']['is_empty']) |
|
| 184 | - echo ' |
|
| 189 | + if ($context['category']['is_empty']) { |
|
| 190 | + echo ' |
|
| 185 | 191 | <input type="hidden" name="empty" value="1">'; |
| 192 | + } |
|
| 186 | 193 | |
| 187 | 194 | echo ' |
| 188 | 195 | </div> |
@@ -209,9 +216,10 @@ discard block |
||
| 209 | 216 | <p>', $txt['mboards_delete_cat_contains'], ':</p> |
| 210 | 217 | <ul>'; |
| 211 | 218 | |
| 212 | - foreach ($context['category']['children'] as $child) |
|
| 213 | - echo ' |
|
| 219 | + foreach ($context['category']['children'] as $child) { |
|
| 220 | + echo ' |
|
| 214 | 221 | <li>', $child, '</li>'; |
| 222 | + } |
|
| 215 | 223 | |
| 216 | 224 | echo ' |
| 217 | 225 | </ul> |
@@ -225,10 +233,11 @@ discard block |
||
| 225 | 233 | <label for="delete_action1"><input type="radio" id="delete_action1" name="delete_action" value="1" class="input_radio"', count($context['category_order']) == 1 ? ' disabled' : '', '>', $txt['mboards_delete_option2'], '</label>: |
| 226 | 234 | <select name="cat_to"', count($context['category_order']) == 1 ? ' disabled' : '', '>'; |
| 227 | 235 | |
| 228 | - foreach ($context['category_order'] as $cat) |
|
| 229 | - if ($cat['id'] != 0) |
|
| 236 | + foreach ($context['category_order'] as $cat) { |
|
| 237 | + if ($cat['id'] != 0) |
|
| 230 | 238 | echo ' |
| 231 | 239 | <option value="', $cat['id'], '">', $cat['true_name'], '</option>'; |
| 240 | + } |
|
| 232 | 241 | |
| 233 | 242 | echo ' |
| 234 | 243 | </select> |
@@ -272,9 +281,10 @@ discard block |
||
| 272 | 281 | </dt> |
| 273 | 282 | <dd> |
| 274 | 283 | <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 == \'\';}">'; |
| 275 | - foreach ($context['categories'] as $category) |
|
| 276 | - echo ' |
|
| 284 | + foreach ($context['categories'] as $category) { |
|
| 285 | + echo ' |
|
| 277 | 286 | <option', $category['selected'] ? ' selected' : '', ' value="', $category['id'], '">', $category['name'], '</option>'; |
| 287 | + } |
|
| 278 | 288 | echo ' |
| 279 | 289 | </select> |
| 280 | 290 | </dd>'; |
@@ -301,9 +311,10 @@ discard block |
||
| 301 | 311 | echo ' |
| 302 | 312 | <select id="board_order" name="board_order"', !isset($context['board']['is_new']) ? ' disabled' : '', '> |
| 303 | 313 | ', !isset($context['board']['is_new']) ? '<option value="">(' . $txt['mboards_unchanged'] . ')</option>' : ''; |
| 304 | - foreach ($context['board_order'] as $order) |
|
| 305 | - echo ' |
|
| 314 | + foreach ($context['board_order'] as $order) { |
|
| 315 | + echo ' |
|
| 306 | 316 | <option', $order['selected'] ? ' selected' : '', ' value="', $order['id'], '">', $order['name'], '</option>'; |
| 317 | + } |
|
| 307 | 318 | echo ' |
| 308 | 319 | </select> |
| 309 | 320 | </dd>'; |
@@ -332,13 +343,15 @@ discard block |
||
| 332 | 343 | <dd> |
| 333 | 344 | <select name="profile">'; |
| 334 | 345 | |
| 335 | - if (isset($context['board']['is_new'])) |
|
| 336 | - echo ' |
|
| 346 | + if (isset($context['board']['is_new'])) { |
|
| 347 | + echo ' |
|
| 337 | 348 | <option value="-1">[', $txt['permission_profile_inherit'], ']</option>'; |
| 349 | + } |
|
| 338 | 350 | |
| 339 | - foreach ($context['profiles'] as $id => $profile) |
|
| 340 | - echo ' |
|
| 351 | + foreach ($context['profiles'] as $id => $profile) { |
|
| 352 | + echo ' |
|
| 341 | 353 | <option value="', $id, '"', $id == $context['board']['profile'] ? ' selected' : '', '>', $profile['name'], '</option>'; |
| 354 | + } |
|
| 342 | 355 | |
| 343 | 356 | echo ' |
| 344 | 357 | </select> |
@@ -351,8 +364,8 @@ discard block |
||
| 351 | 364 | </dt> |
| 352 | 365 | <dd>'; |
| 353 | 366 | |
| 354 | - if (!empty($modSettings['deny_boards_access'])) |
|
| 355 | - echo ' |
|
| 367 | + if (!empty($modSettings['deny_boards_access'])) { |
|
| 368 | + echo ' |
|
| 356 | 369 | <table> |
| 357 | 370 | <tr> |
| 358 | 371 | <td></td> |
@@ -360,10 +373,11 @@ discard block |
||
| 360 | 373 | <th>', $txt['permissions_option_off'], '</th> |
| 361 | 374 | <th>', $txt['permissions_option_deny'], '</th> |
| 362 | 375 | </tr>'; |
| 376 | + } |
|
| 363 | 377 | |
| 364 | 378 | // List all the membergroups so the user can choose who may access this board. |
| 365 | - foreach ($context['groups'] as $group) |
|
| 366 | - if (empty($modSettings['deny_boards_access'])) |
|
| 379 | + foreach ($context['groups'] as $group) { |
|
| 380 | + if (empty($modSettings['deny_boards_access'])) |
|
| 367 | 381 | echo ' |
| 368 | 382 | <label for="groups_', $group['id'], '"> |
| 369 | 383 | <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' : ''), ' class="input_check"> |
@@ -371,8 +385,9 @@ discard block |
||
| 371 | 385 | ', $group['name'], ' |
| 372 | 386 | </span> |
| 373 | 387 | </label><br>'; |
| 374 | - else |
|
| 375 | - echo ' |
|
| 388 | + } |
|
| 389 | + else { |
|
| 390 | + echo ' |
|
| 376 | 391 | <tr> |
| 377 | 392 | <td> |
| 378 | 393 | <label for="groups_', $group['id'], '_a"> |
@@ -392,16 +407,17 @@ discard block |
||
| 392 | 407 | </td> |
| 393 | 408 | <td></td> |
| 394 | 409 | </tr>'; |
| 410 | + } |
|
| 395 | 411 | |
| 396 | - if (empty($modSettings['deny_boards_access'])) |
|
| 397 | - echo ' |
|
| 412 | + if (empty($modSettings['deny_boards_access'])) { |
|
| 413 | + echo ' |
|
| 398 | 414 | <span class="select_all_box"> |
| 399 | 415 | <em>', $txt['check_all'], '</em> <input type="checkbox" class="input_check" onclick="invertAll(this, this.form, \'groups[\');"> |
| 400 | 416 | </span> |
| 401 | 417 | <br><br> |
| 402 | 418 | </dd>'; |
| 403 | - else |
|
| 404 | - echo ' |
|
| 419 | + } else { |
|
| 420 | + echo ' |
|
| 405 | 421 | <tr class="select_all_box"> |
| 406 | 422 | <td> |
| 407 | 423 | </td> |
@@ -420,6 +436,7 @@ discard block |
||
| 420 | 436 | </tr> |
| 421 | 437 | </table> |
| 422 | 438 | </dd>'; |
| 439 | + } |
|
| 423 | 440 | |
| 424 | 441 | // Options to choose moderators, specify as announcement board and choose whether to count posts here. |
| 425 | 442 | echo ' |
@@ -474,8 +491,8 @@ discard block |
||
| 474 | 491 | </dl> |
| 475 | 492 | </div>'; |
| 476 | 493 | |
| 477 | - if ($context['board']['redirect']) |
|
| 478 | - echo ' |
|
| 494 | + if ($context['board']['redirect']) { |
|
| 495 | + echo ' |
|
| 479 | 496 | <div id="reset_redirect_div"> |
| 480 | 497 | <dl class="settings"> |
| 481 | 498 | <dt> |
@@ -488,6 +505,7 @@ discard block |
||
| 488 | 505 | </dd> |
| 489 | 506 | </dl> |
| 490 | 507 | </div>'; |
| 508 | + } |
|
| 491 | 509 | } |
| 492 | 510 | |
| 493 | 511 | echo ' |
@@ -515,9 +533,10 @@ discard block |
||
| 515 | 533 | <select name="boardtheme" id="boardtheme" onchange="refreshOptions();"> |
| 516 | 534 | <option value="0"', $context['board']['theme'] == 0 ? ' selected' : '', '>', $txt['mboards_theme_default'], '</option>'; |
| 517 | 535 | |
| 518 | - foreach ($context['themes'] as $theme) |
|
| 519 | - echo ' |
|
| 536 | + foreach ($context['themes'] as $theme) { |
|
| 537 | + echo ' |
|
| 520 | 538 | <option value="', $theme['id'], '"', $context['board']['theme'] == $theme['id'] ? ' selected' : '', '>', $theme['name'], '</option>'; |
| 539 | + } |
|
| 521 | 540 | |
| 522 | 541 | echo ' |
| 523 | 542 | </select> |
@@ -536,9 +555,10 @@ discard block |
||
| 536 | 555 | </dl> |
| 537 | 556 | </div>'; |
| 538 | 557 | |
| 539 | - if (!empty($context['board']['is_recycle'])) |
|
| 540 | - echo ' |
|
| 558 | + if (!empty($context['board']['is_recycle'])) { |
|
| 559 | + echo ' |
|
| 541 | 560 | <div class="noticebox">', $txt['mboards_recycle_disabled_delete'], '</div>'; |
| 561 | + } |
|
| 542 | 562 | |
| 543 | 563 | echo ' |
| 544 | 564 | <input type="hidden" name="rid" value="', $context['redirect_location'], '"> |
@@ -546,21 +566,24 @@ discard block |
||
| 546 | 566 | <input type="hidden" name="', $context['admin-be-' . $context['board']['id'] . '_token_var'], '" value="', $context['admin-be-' . $context['board']['id'] . '_token'], '">'; |
| 547 | 567 | |
| 548 | 568 | // If this board has no children don't bother with the next confirmation screen. |
| 549 | - if ($context['board']['no_children']) |
|
| 550 | - echo ' |
|
| 569 | + if ($context['board']['no_children']) { |
|
| 570 | + echo ' |
|
| 551 | 571 | <input type="hidden" name="no_children" value="1">'; |
| 572 | + } |
|
| 552 | 573 | |
| 553 | - if (isset($context['board']['is_new'])) |
|
| 554 | - echo ' |
|
| 574 | + if (isset($context['board']['is_new'])) { |
|
| 575 | + echo ' |
|
| 555 | 576 | <input type="hidden" name="cur_cat" value="', $context['board']['category'], '"> |
| 556 | 577 | <input type="submit" name="add" value="', $txt['mboards_new_board'], '" onclick="return !isEmptyText(this.form.board_name);" class="button_submit">'; |
| 557 | - else |
|
| 558 | - echo ' |
|
| 578 | + } else { |
|
| 579 | + echo ' |
|
| 559 | 580 | <input type="submit" name="edit" value="', $txt['modify'], '" onclick="return !isEmptyText(this.form.board_name);" class="button_submit">'; |
| 581 | + } |
|
| 560 | 582 | |
| 561 | - if (!isset($context['board']['is_new']) && empty($context['board']['is_recycle'])) |
|
| 562 | - echo ' |
|
| 583 | + if (!isset($context['board']['is_new']) && empty($context['board']['is_recycle'])) { |
|
| 584 | + echo ' |
|
| 563 | 585 | <input type="submit" name="delete" value="', $txt['mboards_delete_board'], '" data-confirm="', $txt['boardConfirm'], '" class="button_submit you_sure">'; |
| 586 | + } |
|
| 564 | 587 | echo ' |
| 565 | 588 | </div> |
| 566 | 589 | </form> |
@@ -581,12 +604,13 @@ discard block |
||
| 581 | 604 | sItemListContainerId: \'moderator_container\', |
| 582 | 605 | aListItems: ['; |
| 583 | 606 | |
| 584 | - foreach ($context['board']['moderators'] as $id_member => $member_name) |
|
| 585 | - echo ' |
|
| 607 | + foreach ($context['board']['moderators'] as $id_member => $member_name) { |
|
| 608 | + echo ' |
|
| 586 | 609 | { |
| 587 | 610 | sItemId: ', JavaScriptEscape($id_member), ', |
| 588 | 611 | sItemName: ', JavaScriptEscape($member_name), ' |
| 589 | 612 | }', $id_member == $context['board']['last_moderator_id'] ? '' : ','; |
| 613 | + } |
|
| 590 | 614 | |
| 591 | 615 | echo ' |
| 592 | 616 | ] |
@@ -606,12 +630,13 @@ discard block |
||
| 606 | 630 | sItemListContainerId: \'moderator_group_container\', |
| 607 | 631 | aListItems: ['; |
| 608 | 632 | |
| 609 | - foreach ($context['board']['moderator_groups'] as $id_group => $group_name) |
|
| 610 | - echo ' |
|
| 633 | + foreach ($context['board']['moderator_groups'] as $id_group => $group_name) { |
|
| 634 | + echo ' |
|
| 611 | 635 | { |
| 612 | 636 | sItemId: ', JavaScriptEscape($id_group), ', |
| 613 | 637 | sItemName: ', JavaScriptEscape($group_name), ' |
| 614 | 638 | }', $id_group == $context['board']['last_moderator_group_id'] ? '' : ','; |
| 639 | + } |
|
| 615 | 640 | |
| 616 | 641 | echo ' |
| 617 | 642 | ] |
@@ -637,9 +662,10 @@ discard block |
||
| 637 | 662 | echo ' |
| 638 | 663 | document.getElementById("redirect_address_div").style.display = redirectEnabled ? "" : "none";'; |
| 639 | 664 | |
| 640 | - if ($context['board']['redirect']) |
|
| 641 | - echo ' |
|
| 665 | + if ($context['board']['redirect']) { |
|
| 666 | + echo ' |
|
| 642 | 667 | document.getElementById("reset_redirect_div").style.display = redirectEnabled ? "" : "none";'; |
| 668 | + } |
|
| 643 | 669 | } |
| 644 | 670 | |
| 645 | 671 | echo ' |
@@ -668,9 +694,10 @@ discard block |
||
| 668 | 694 | <p>', $txt['mboards_delete_board_contains'], '</p> |
| 669 | 695 | <ul>'; |
| 670 | 696 | |
| 671 | - foreach ($context['children'] as $child) |
|
| 672 | - echo ' |
|
| 697 | + foreach ($context['children'] as $child) { |
|
| 698 | + echo ' |
|
| 673 | 699 | <li>', $child['node']['name'], '</li>'; |
| 700 | + } |
|
| 674 | 701 | |
| 675 | 702 | echo ' |
| 676 | 703 | </ul> |
@@ -684,10 +711,11 @@ discard block |
||
| 684 | 711 | <label for="delete_action1"><input type="radio" id="delete_action1" name="delete_action" value="1" class="input_radio"', empty($context['can_move_children']) ? ' disabled' : '', '>', $txt['mboards_delete_board_option2'], '</label>: |
| 685 | 712 | <select name="board_to"', empty($context['can_move_children']) ? ' disabled' : '', '>'; |
| 686 | 713 | |
| 687 | - foreach ($context['board_order'] as $board) |
|
| 688 | - if ($board['id'] != $context['board']['id'] && empty($board['is_child'])) |
|
| 714 | + foreach ($context['board_order'] as $board) { |
|
| 715 | + if ($board['id'] != $context['board']['id'] && empty($board['is_child'])) |
|
| 689 | 716 | echo ' |
| 690 | 717 | <option value="', $board['id'], '">', $board['name'], '</option>'; |
| 718 | + } |
|
| 691 | 719 | |
| 692 | 720 | echo ' |
| 693 | 721 | </select> |