Merge pull request #442 from cvogeley/master

system notifications mark seen link
This commit is contained in:
RedMatrix 2014-05-05 06:43:56 +10:00
commit fc5ae78079
2 changed files with 6 additions and 1 deletions

View file

@ -81,6 +81,7 @@ function notifications_content(&$a) {
);
if (count($r) > 0) {
$notifications_available =1;
foreach ($r as $it) {
$notif_content .= replace_macros($not_tpl,array(
'$item_link' => $a->get_baseurl(true).'/notify/view/'. $it['id'],
@ -95,7 +96,9 @@ function notifications_content(&$a) {
$o .= replace_macros($notif_tpl,array(
'$notif_header' => t('System Notifications'),
'$notif_link_mark_seen' => t('Mark all system notifications seen'),
'$notif_content' => $notif_content,
'$notifications_available' => $notifications_available,
));
return $o;

View file

@ -1,5 +1,7 @@
<h1>{{$notif_header}}</h1>
{{if $notifications_available}}
<a href="#" onclick="markRead('notify');">{{$notif_link_mark_seen}}</a>
{{/if}}
<div class="notif-network-wrapper">
{{$notif_content}}
</div>