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

@ -53,8 +53,15 @@ function nogroup_content(&$a) {
);
}
}
$tpl = get_markup_template("nogroup-template.tpl");
$o .= replace_macros($tpl,array(
$includes = array(
'$contact_template' => 'contact_template.tpl',
);
$includes = set_template_includes($a->theme['template_engine'], $includes);
$o .= replace_macros($tpl,$includes + array(
'$header' => t('Contacts who are not members of a group'),
'$contacts' => $contacts,
'$paginate' => paginate($a),