Codice PHP:
<?php
// Version: 1.1; Notify
function template_main()
{
global $context, $settings, $options, $txt, $scripturl;
echo '
<table border="0" width="100%" cellspacing="0" cellpadding="3" class="tborder">
<tr class="titlebg">
<td>', $txt[125], '</td>
</tr>
<tr class="windowbg">
<td>
', $context['notification_set'] ? $txt[212] : $txt[126], '
[b][url="', $scripturl, '?action=notify;sa=', $context['notification_set'] ? 'off' : 'on', ';topic=', $context['current_topic'], '.', $context['start'], ';sesc=', $context['session_id'], '"]', $txt[163], '[/url] - [url="', $context['topic_href'], '"]', $txt[164], '[/url][/b]
</td>
</tr>
</table>';
}
function template_notify_board()
{
global $context, $settings, $options, $txt, $scripturl;
echo '
<table border="0" width="100%" cellspacing="0" cellpadding="3" class="tborder">
<tr class="titlebg">
<td>', $txt[125], '</td>
</tr>
<tr class="windowbg">
<td>
', $context['notification_set'] ? $txt['notifyboard_turnoff'] : $txt['notifyboard_turnon'], '
[b][url="', $scripturl, '?action=notifyboard;sa=', $context['notification_set'] ? 'off' : 'on', ';board=', $context['current_board'], '.', $context['start'], ';sesc=', $context['session_id'], '"]', $txt[163], '[/url] - [url="', $context['board_href'], '"]', $txt[164], '[/url][/b]
</td>
</tr>
</table>';
}
?>