1:   2:   3:   4:   5:   6:   7:   8:   9:  10:  11:  12:  13:  14:  15:  16:  17:  18:  19:  20:  21:  22:  23:  24:  25:  26:  27:  28:  29:  30:  31:  32:  33:  34:  35:  36:  37:  38:  39:  40:  41:  42:  43:  44:  45:  46:  47:  48:  49:  50:  51:  52:  53:  54:  55:  56:  57:  58:  59:  60:  61:  62:  63:  64:  65:  66:  67:  68:  69:  70:  71:  72:  73:  74:  75:  76:  77:  78:  79:  80:  81:  82:  83:  84:  85:  86:  87:  88:  89:  90:  91:  92:  93:  94:  95:  96:  97:  98:  99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 
<?php
/**
 * Simple Machines Forum (SMF)
 *
 * @package SMF
 * @author Simple Machines http://www.simplemachines.org
 * @copyright 2019 Simple Machines and individual contributors
 * @license http://www.simplemachines.org/about/smf/license.php BSD
 *
 * @version 2.1 RC1
 */

/**
 * Show an interface for selecting which board to move a post to.
 */
function template_move()
{
    global $context, $txt, $scripturl;

    echo '
    <div id="move_topic" class="lower_padding">
        <form action="', $scripturl, '?action=movetopic2;current_board=' . $context['current_board'] . ';topic=', $context['current_topic'], '.0" method="post" accept-charset="', $context['character_set'], '" onsubmit="submitonce(this);">
            <div class="cat_bar">
                <h3 class="catbg">', $txt['move_topic'], '</h3>
            </div>
            <div class="windowbg centertext">
                <div class="move_topic">
                    <dl class="settings">
                        <dt>
                            <strong>', $txt['move_to'], ':</strong>
                        </dt>
                        <dd>
                            <select name="toboard">';

    foreach ($context['categories'] as $category)
    {
        echo '
                                <optgroup label="', $category['name'], '">';

        foreach ($category['boards'] as $board)
            echo '
                                    <option value="', $board['id'], '"', $board['selected'] ? ' selected' : '', $board['id'] == $context['current_board'] ? ' disabled' : '', '>', $board['child_level'] > 0 ? str_repeat('==', $board['child_level'] - 1) . '=&gt; ' : '', $board['name'], '</option>';
        echo '
                                </optgroup>';
    }

    echo '
                            </select>
                        </dd>';

    // Disable the reason textarea when the postRedirect checkbox is unchecked...
    echo '
                    </dl>
                    <label for="reset_subject">
                        <input type="checkbox" name="reset_subject" id="reset_subject" onclick="document.getElementById(\'subjectArea\').classList.toggle(\'hidden\');"> ', $txt['movetopic_change_subject'], '.
                    </label><br>
                    <fieldset id="subjectArea" class="hidden">
                        <dl class="settings">
                            <dt><strong>', $txt['movetopic_new_subject'], ':</strong></dt>
                            <dd><input type="text" name="custom_subject" size="30" value="', $context['subject'], '"></dd>
                        </dl>
                        <label for="enforce_subject"><input type="checkbox" name="enforce_subject" id="enforce_subject"> ', $txt['movetopic_change_all_subjects'], '.</label>
                    </fieldset>';

    // Stick our "create a redirection topic" template in here...
    template_redirect_options('move');

    echo '
                    <input type="submit" value="', $txt['move_topic'], '" onclick="return submitThisOnce(this);" accesskey="s" class="button">
                </div><!-- .move_topic -->
            </div><!-- .windowbg -->';

    if ($context['back_to_topic'])
        echo '
            <input type="hidden" name="goback" value="1">';

    echo '
            <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
            <input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '">
        </form>
    </div><!-- #move_topic -->';
}

/**
 * Redirection topic options
 *
 * @var string $type What type of topic this is for - currently 'merge' or 'move'. Used to display appropriate text strings...
 */
function template_redirect_options($type)
{
    global $txt, $context, $modSettings;

    echo '
                    <label for="postRedirect">
                        <input type="checkbox" name="postRedirect" id="postRedirect"', $context['is_approved'] ? ' checked' : '', ' onclick="', $context['is_approved'] ? '' : 'if (this.checked && !confirm(\'' . $txt[$type . '_topic_unapproved_js'] . '\')) return false; ', 'document.getElementById(\'reasonArea\').classList.toggle(\'hidden\');"> ', $txt['post_redirection'], '.
                    </label>
                    <fieldset id="reasonArea"', $context['is_approved'] ? '' : 'class="hidden"', '>
                        <dl class="settings">
                            <dt>
                                ', $txt[$type . '_why'], '
                            </dt>
                            <dd>
                                <textarea name="reason">', $txt[$type . 'topic_default'], '</textarea>
                            </dd>
                            <dt>
                                <label for="redirect_topic">', $txt[$type . 'topic_redirect'], '</label>
                            </dt>
                            <dd>
                                <input type="checkbox" name="redirect_topic" id="redirect_topic" checked>
                            </dd>';

    if (!empty($modSettings['allow_expire_redirect']))
    {
        echo '
                            <dt>
                                ', $txt['redirect_topic_expires'], '
                            </dt>
                            <dd>
                                <select name="redirect_expires">
                                    <option value="0">', $txt['never'], '</option>
                                    <option value="1440">', $txt['one_day'], '</option>
                                    <option value="10080" selected>', $txt['one_week'], '</option>
                                    <option value="20160">', $txt['two_weeks'], '</option>
                                    <option value="43200">', $txt['one_month'], '</option>
                                    <option value="86400">', $txt['two_months'], '</option>
                                </select>
                            </dd>';
    }
    else
        echo '
                            <input type="hidden" name="redirect_expires" value="0">';

    echo '
                        </dl>
                    </fieldset>';
}

/**
 * Confirmation page shown when finished merging topics.
 */
function template_merge_done()
{
    global $context, $txt, $scripturl;

    echo '
        <div id="merge_topics">
            <div class="cat_bar">
                <h3 class="catbg">', $txt['merge'], '</h3>
            </div>
            <div class="windowbg">
                <p>', $txt['merge_successful'], '</p>
                <br>
                <ul>
                    <li>
                        <a href="', $scripturl, '?board=', $context['target_board'], '.0">', $txt['message_index'], '</a>
                    </li>
                    <li>
                        <a href="', $scripturl, '?topic=', $context['target_topic'], '.0">', $txt['new_merged_topic'], '</a>
                    </li>
                </ul>
            </div>
        </div>
        <br class="clear">';
}

/**
 * Merge topic page.
 */
function template_merge()
{
    global $context, $txt, $scripturl;

    echo '
        <div id="merge_topics">
            <div class="cat_bar">
                <h3 class="catbg">', $txt['merge'], '</h3>
            </div>
            <div class="information">
                ', $txt['merge_desc'], '
            </div>
            <div class="windowbg">
                <dl class="settings merge_topic">
                    <dt>
                        <strong>', $txt['topic_to_merge'], ':</strong>
                    </dt>
                    <dd>
                        ', $context['origin_subject'], '
                    </dd>
                </dl>
            </div>
            <br>
            <div class="cat_bar">
                <h3 class="catbg">', $txt['target_topic'], '</h3>
            </div>
            <div class="title_bar">
                <h4 class="titlebg">';

    if (isset($context['merge_categories']))
    {
        echo '
                    <form action="' . $scripturl . '?action=mergetopics;from=' . $context['origin_topic'] . ';targetboard=' . $context['target_board'] . ';board=' . $context['current_board'] . '.0" method="post" accept-charset="', $context['character_set'], '" id="mergeSelectBoard">
                        ', $txt['target_below'], ' (', $txt['board'], ':
                        <select name="targetboard" onchange="this.form.submit();">';

        foreach ($context['merge_categories'] as $cat)
        {
            echo '
                            <optgroup label="', $cat['name'], '">';

            foreach ($cat['boards'] as $board)
                echo '
                                <option value="', $board['id'], '"', $board['selected'] ? ' selected' : '', '>', $board['child_level'] > 0 ? str_repeat('==', $board['child_level'] - 1) . '=&gt;' : '', ' ', $board['name'], '</option>';

            echo '
                            </optgroup>';
        }
        echo '
                        </select>)
                        <input type="hidden" name="from" value="' . $context['origin_topic'] . '">
                        <input type="submit" value="', $txt['go'], '" class="button">
                    </form>';
    }
    else
        echo $txt['target_below'];

    echo '      </h4>
            </div><!-- .title_bar -->
            <form action="', $scripturl, '?action=mergetopics;sa=options" method="post" accept-charset="', $context['character_set'], '">';

    // Don't show this if there aren't any topics...
    if (!empty($context['topics']))
    {
        echo '
                <div class="pagesection">
                    ', $context['page_index'], '
                </div>
                <div class="windowbg">
                    <ul class="merge_topics">';

        $merge_button = create_button('merge', 'merge', '');

        foreach ($context['topics'] as $topic)
            echo '
                        <li>
                            <a href="', $scripturl, '?action=mergetopics;sa=options;board=', $context['current_board'], '.0;from=', $context['origin_topic'], ';to=', $topic['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $merge_button, '</a>
                            <a href="', $scripturl, '?topic=', $topic['id'], '.0" target="_blank" rel="noopener">', $topic['subject'], '</a> ', $txt['started_by'], ' ', $topic['poster']['link'], '
                        </li>';

        echo '
                    </ul>
                    <input type="submit" value="', $txt['merge'], '" class="button">
                </div>
                <div class="pagesection">
                    ', $context['page_index'], '
                </div>';
    }
    // Just a nice "There aren't any topics" message
    else
        echo '
                <div class="windowbg">', $txt['topic_alert_none'], '</div>';

    echo '
                <br>
                <div class="title_bar">
                    <h4 class="titlebg">', $txt['target_id'], '</h4>
                </div>
                <div class="windowbg">
                    <dl class="settings merge_topic">
                        <dt>
                            <strong>', $txt['merge_to_topic_id'], ': </strong>
                        </dt>
                        <dd>
                            <input type="hidden" name="topics[]" value="', $context['origin_topic'], '">
                            <input type="text" name="topics[]">
                            <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">

                        </dd>
                    </dl>
                    <input type="submit" value="', $txt['merge'], '" class="button">
                </div>
            </form>
        </div><!-- #merge_topics -->';
}

/**
 * Extra options related to merging topics.
 */
function template_merge_extra_options()
{
    global $context, $txt, $scripturl;

    echo '
    <div id="merge_topics">
        <form action="', $scripturl, '?action=mergetopics;sa=execute;" method="post" accept-charset="', $context['character_set'], '">
            <div class="cat_bar">
                <h3 class="catbg">', $txt['merge_topic_list'], '</h3>
            </div>
            <table class="bordercolor table_grid">
                <thead>
                    <tr class="title_bar">
                        <th scope="col" style="width:10px;">', $txt['merge_check'], '</th>
                        <th scope="col" class="lefttext">', $txt['subject'], '</th>
                        <th scope="col" class="lefttext">', $txt['started_by'], '</th>
                        <th scope="col" class="lefttext">', $txt['last_post'], '</th>
                        <th scope="col" style="width:20px;">' . $txt['merge_include_notifications'] . '</th>
                    </tr>
                </thead>
                <tbody>';

    foreach ($context['topics'] as $topic)
        echo '
                    <tr class="windowbg">
                        <td>
                            <input type="checkbox" name="topics[]" value="' . $topic['id'] . '" checked>
                        </td>
                        <td>
                            <a href="' . $scripturl . '?topic=' . $topic['id'] . '.0" target="_blank" rel="noopener">' . $topic['subject'] . '</a>
                        </td>
                        <td>
                            ', $topic['started']['link'], '<br>
                            <span class="smalltext">', $topic['started']['time'], '</span>
                        </td>
                        <td>
                            ' . $topic['updated']['link'] . '<br>
                            <span class="smalltext">', $topic['updated']['time'], '</span>
                        </td>
                        <td>
                            <input type="checkbox" name="notifications[]" value="' . $topic['id'] . '" checked>
                        </td>
                    </tr>';
    echo '
                </tbody>
            </table>
            <br>
            <div class="windowbg">
                <fieldset id="merge_subject" class="merge_options">
                    <legend>', $txt['merge_select_subject'], '</legend>
                    <select name="subject" onchange="this.form.custom_subject.style.display = (this.options[this.selectedIndex].value != 0) ? \'none\': \'\' ;">';

    foreach ($context['topics'] as $topic)
        echo '
                        <option value="', $topic['id'], '"' . ($topic['selected'] ? ' selected' : '') . '>', $topic['subject'], '</option>';
    echo '
                        <option value="0">', $txt['merge_custom_subject'], ':</option>
                    </select>
                    <br>
                    <input type="text" name="custom_subject" size="60" id="custom_subject" class="custom_subject" style="display: none;"><br>
                    <label for="enforce_subject"><input type="checkbox" name="enforce_subject" id="enforce_subject" value="1"> ', $txt['movetopic_change_all_subjects'], '</label>
                </fieldset>';

    // Show an option to create a redirection topic as well...
    template_redirect_options('merge');

    if (!empty($context['boards']) && count($context['boards']) > 1)
    {
        echo '
                <fieldset id="merge_board" class="merge_options">
                    <legend>', $txt['merge_select_target_board'], '</legend>
                    <ul>';

        foreach ($context['boards'] as $board)
            echo '
                        <li>
                            <input type="radio" name="board" value="' . $board['id'] . '"' . ($board['selected'] ? ' checked' : '') . '> ' . $board['name'] . '
                        </li>';
        echo '
                    </ul>
                </fieldset>';
    }
    if (!empty($context['polls']))
    {
        echo '
                <fieldset id="merge_poll" class="merge_options">
                    <legend>' . $txt['merge_select_poll'] . '</legend>
                    <ul>';

        foreach ($context['polls'] as $poll)
            echo '
                        <li>
                            <input type="radio" name="poll" value="' . $poll['id'] . '"' . ($poll['selected'] ? ' checked' : '') . '> ' . $poll['question'] . ' (' . $txt['topic'] . ': <a href="' . $scripturl . '?topic=' . $poll['topic']['id'] . '.0" target="_blank" rel="noopener">' . $poll['topic']['subject'] . '</a>)
                        </li>';
        echo '
                        <li>
                            <input type="radio" name="poll" value="-1"> (' . $txt['merge_no_poll'] . ')
                        </li>
                    </ul>
                </fieldset>';
    }

    echo '
                <div class="auto_flow">
                    <input type="submit" value="' . $txt['merge'] . '" class="button">
                    <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '">
                    <input type="hidden" name="sa" value="execute">
                </div>
            </div><!-- .windowbg -->
        </form>
    </div><!-- #merge_topics -->';
}

?>