98 lines
3.6 KiB
PHP
98 lines
3.6 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Simple Machines Forum (SMF)
|
||
|
*
|
||
|
* @package SMF
|
||
|
* @author Simple Machines https://www.simplemachines.org
|
||
|
* @copyright 2022 Simple Machines and individual contributors
|
||
|
* @license https://www.simplemachines.org/about/smf/license.php BSD
|
||
|
*
|
||
|
* @version 2.1.0
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* The main notification bar.
|
||
|
*/
|
||
|
function template_main()
|
||
|
{
|
||
|
global $context, $txt, $scripturl;
|
||
|
|
||
|
echo '
|
||
|
<div class="cat_bar">
|
||
|
<h2 class="catbg">
|
||
|
<span class="main_icons mail icon"></span>
|
||
|
', $txt['notify'], '
|
||
|
</h2>
|
||
|
</div>
|
||
|
<div class="roundframe centertext">
|
||
|
<p>', $txt['notify_topic_prompt'], '</p>
|
||
|
<p>
|
||
|
<strong><a href="', $scripturl, '?action=notify;sa=on;topic=', $context['current_topic'], '.', $context['start'], ';', (!empty($context['notify_info']['token']) ? 'u=' . $context['notify_info']['u'] . ';token=' . $context['notify_info']['token'] : $context['session_var'] . '=' . $context['session_id']), '">', $txt['yes'], '</a> - <a href="', $scripturl, '?action=notify;sa=off;topic=', $context['current_topic'], '.', $context['start'], ';', (!empty($context['notify_info']['token']) ? 'u=' . $context['notify_info']['u'] . ';token=' . $context['notify_info']['token'] : $context['session_var'] . '=' . $context['session_id']), '">', $txt['no'], '</a></strong>
|
||
|
</p>
|
||
|
</div>';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Board notification bar.
|
||
|
*/
|
||
|
function template_notify_board()
|
||
|
{
|
||
|
global $context, $txt, $scripturl;
|
||
|
|
||
|
echo '
|
||
|
<div class="cat_bar">
|
||
|
<h2 class="catbg">
|
||
|
<span class="main_icons mail icon"></span>
|
||
|
', $txt['notify'], '
|
||
|
</h2>
|
||
|
</div>
|
||
|
<div class="roundframe centertext">
|
||
|
<p>', $txt['notify_board_prompt'], '</p>
|
||
|
<p>
|
||
|
<strong><a href="', $scripturl, '?action=notifyboard;sa=on;board=', $context['current_board'], '.', $context['start'], ';', (!empty($context['notify_info']['token']) ? 'u=' . $context['notify_info']['u'] . ';token=' . $context['notify_info']['token'] : $context['session_var'] . '=' . $context['session_id']), '">', $txt['yes'], '</a> - <a href="', $scripturl, '?action=notifyboard;sa=off;board=', $context['current_board'], '.', $context['start'], ';', (!empty($context['notify_info']['token']) ? 'u=' . $context['notify_info']['u'] . ';token=' . $context['notify_info']['token'] : $context['session_var'] . '=' . $context['session_id']), '">', $txt['no'], '</a></strong>
|
||
|
</p>
|
||
|
</div>';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
function template_notify_announcements()
|
||
|
{
|
||
|
global $context, $settings, $options, $txt, $scripturl;
|
||
|
|
||
|
echo '
|
||
|
<div class="cat_bar">
|
||
|
<h2 class="catbg">
|
||
|
<span class="main_icons mail icon"></span>
|
||
|
', $txt['notify'], '
|
||
|
</h2>
|
||
|
</div>
|
||
|
<div class="roundframe centertext">
|
||
|
<p>', $txt['notify_announcements_prompt'], '</p>
|
||
|
<p>
|
||
|
<strong><a href="', $scripturl, '?action=notifyannouncements;sa=on;', (!empty($context['notify_info']['token']) ? 'u=' . $context['notify_info']['u'] . ';token=' . $context['notify_info']['token'] : $context['session_var'] . '=' . $context['session_id']), '">', $txt['yes'], '</a> - <a href="', $scripturl, '?action=notifyannouncements;sa=off;', (!empty($context['notify_info']['token']) ? 'u=' . $context['notify_info']['u'] . ';token=' . $context['notify_info']['token'] : $context['session_var'] . '=' . $context['session_id']), '">', $txt['no'], '</a></strong>
|
||
|
</p>
|
||
|
</div>';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Displays a message indicating the user's notification preferences were successfully changed
|
||
|
*/
|
||
|
function template_notify_pref_changed()
|
||
|
{
|
||
|
global $context, $settings, $options, $txt, $scripturl;
|
||
|
|
||
|
echo '
|
||
|
<div class="cat_bar">
|
||
|
<h2 class="catbg">
|
||
|
<span class="main_icons mail icon"></span>
|
||
|
', $txt['notify'], '
|
||
|
</h2>
|
||
|
</div>
|
||
|
<div class="roundframe centertext">
|
||
|
<p>', $context['notify_success_msg'], '</p>
|
||
|
</div>';
|
||
|
}
|
||
|
|
||
|
?>
|