-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotify.template.php
54 lines (49 loc) · 1.78 KB
/
Notify.template.php
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
<?php
/**
* @name ElkArte Forum
* @copyright ElkArte Forum contributors
* @license BSD http://opensource.org/licenses/BSD-3-Clause
*
* This software is a derived product, based on:
*
* Simple Machines Forum (SMF)
* copyright: 2011 Simple Machines (http://www.simplemachines.org)
* license: BSD, See included LICENSE.TXT for terms and conditions.
*
* @version 1.0
*
*/
/**
* Interface to allow notification enable/disable.
*/
function template_notification_settings()
{
global $context, $txt, $scripturl;
echo '
<h3 class="category_header hdicon cat_img_mail">
', $txt['notify'], '
</h3>
<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>';
}
/**
* Interface for board notifications toggle.
*/
function template_notify_board()
{
global $context, $txt, $scripturl;
echo '
<h3 class="category_header hdicon cat_img_mail">
', $txt['notify'], '
</h3>
<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>';
}