diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-09-16 13:35:39 +0200 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-09-16 13:35:39 +0200 |
commit | b1ffbbd501de315d7857f3d8f12dc64656b417f4 (patch) | |
tree | 93a7870631ea5deadff18519c7317d75e38c7be2 /app/Core/Template.php | |
parent | 12a688347ce9374e060f4adb98af3892542285d4 (diff) |
Improve template loader
Diffstat (limited to 'app/Core/Template.php')
-rw-r--r-- | app/Core/Template.php | 27 |
1 files changed, 10 insertions, 17 deletions
diff --git a/app/Core/Template.php b/app/Core/Template.php index 8740a685..f21e8a6d 100644 --- a/app/Core/Template.php +++ b/app/Core/Template.php @@ -2,6 +2,8 @@ namespace Core; +use LogicException; + /** * Template class * @@ -25,31 +27,22 @@ class Template * $template->load('template_name', ['bla' => 'value']); * * @access public + * @params string $__template_name Template name + * @params array $__template_args Key/Value map of template variables * @return string */ - public function load() + public function load($__template_name, array $__template_args = array()) { - if (func_num_args() < 1 || func_num_args() > 2) { - die('Invalid template arguments'); - } + $__template_file = self::PATH.$__template_name.'.php'; - if (! file_exists(self::PATH.func_get_arg(0).'.php')) { - die('Unable to load the template: "'.func_get_arg(0).'"'); + if (! file_exists($__template_file)) { + throw new LogicException('Unable to load the template: "'.$__template_name.'"'); } - if (func_num_args() === 2) { - - if (! is_array(func_get_arg(1))) { - die('Template variables must be an array'); - } - - extract(func_get_arg(1)); - } + extract($__template_args); ob_start(); - - include self::PATH.func_get_arg(0).'.php'; - + include $__template_file; return ob_get_clean(); } |