Code: Select all
class tpl_Magic
{
private $directory;
private $config;
private $templates = array();
private $variables = array();
public function __construct($directory)
{
$this->directory = $directory;
$this->templates['variables'] = array();
$this->templates['tplfiles'] = array();
$this->variables['names'] = array();
$this->variables['values'] = array();
}
is there anything i can do with this to make it work?
thanks
gn