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: 
<?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
 */

/**
 * The main notification bar.
 */
function template_main()
{
    global $context, $txt, $scripturl;

    echo '
        <div class="cat_bar">
            <h3 class="catbg">
                <span class="main_icons mail icon"></span>
                ', $txt['notify'], '
            </h3>
        </div>
        <div class="roundframe centertext">
            <p>', $context['notification_set'] ? $txt['notify_deactivate'] : $txt['notify_request'], '</p>
            <p>
                <strong><a href="', $scripturl, '?action=notify;sa=', $context['notification_set'] ? 'off' : 'on', ';topic=', $context['current_topic'], '.', $context['start'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['yes'], '</a> - <a href="', $context['topic_href'], '">', $txt['no'], '</a></strong>
            </p>
        </div>';
}

/**
 * Board notification bar.
 */
function template_notify_board()
{
    global $context, $txt, $scripturl;

    echo '
        <div class="cat_bar">
            <h3 class="catbg">
                <span class="main_icons mail icon"></span>
                ', $txt['notify'], '
            </h3>
        </div>
        <div class="roundframe centertext">
            <p>', $context['notification_set'] ? $txt['notifyboard_turnoff'] : $txt['notifyboard_turnon'], '</p>
            <p>
                <strong><a href="', $scripturl, '?action=notifyboard;sa=', $context['notification_set'] ? 'off' : 'on', ';board=', $context['current_board'], '.', $context['start'], ';', $context['session_var'], '=', $context['session_id'], '">', $txt['yes'], '</a> - <a href="', $context['board_href'], '">', $txt['no'], '</a></strong>
            </p>
        </div>';
}

?>