Removed old template parser

This commit is contained in:
Michael 2017-11-11 09:26:23 +00:00
parent b2c6d34d99
commit 731ec347b1
10 changed files with 8 additions and 329 deletions

View file

@ -172,7 +172,7 @@ The content of this file should be something like
$a-> theme_info = array(
'extends' => 'duepuntozero'.
);
set_template_engine($a, 'smarty3');
$a->set_template_engine('smarty3');
/* and more stuff e.g. the JavaScript function for the header */
}
@ -253,7 +253,7 @@ So in the case of quattro it is
function quattro_init(App $a) {
$a->theme_info = array();
set_template_engine($a, 'smarty3');
$a->set_template_engine('smarty3');
}
Here we have set the basic theme information, in this case they are empty.