From b5cd8aa32cf2e9c83ec457fbb0a235cdec8e37cd Mon Sep 17 00:00:00 2001 From: MaZderMind Date: Sun, 9 Nov 2014 20:28:50 +0100 Subject: move init-code into bootstrap-file --- lib/PhpTemplate.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'lib/PhpTemplate.php') diff --git a/lib/PhpTemplate.php b/lib/PhpTemplate.php index 8dd6f72..4fc4dfe 100644 --- a/lib/PhpTemplate.php +++ b/lib/PhpTemplate.php @@ -12,14 +12,21 @@ if(!function_exists('h')) class PhpTemplate { + private $data = array(); + public function __construct($file) { $this -> file = $file; } + public function set($___data = array()) + { + $this->data = array_merge($this->data, $___data); + } + public function render($___data = array()) { - extract((array)$___data); + extract(array_merge($this->data, $___data)); unset($___data); ob_start(); -- cgit v1.2.3