1
0
Fork 0

Implement Smarty3

This commit is contained in:
Zach Prezkuta 2012-12-22 12:57:29 -07:00
commit 96ed0a7791
755 changed files with 21646 additions and 637 deletions

View file

@ -61,13 +61,18 @@ function notify_content(&$a) {
$notif_content .= t('No more system notifications.');
}
$o .= replace_macros($notif_tpl,array(
$includes = array(
'$common_tabs' => 'common_tabs.tpl',
);
$includes = set_template_includes($a->theme['template_engine'], $includes);
$o .= replace_macros($notif_tpl,$includes + array(
'$notif_header' => t('System Notifications'),
'$tabs' => '', // $tabs,
'$tabs_data' => '', // $tabs,
'$notif_content' => $notif_content,
));
return $o;
}
}