<?php
class TPL{
private $smarty=false;
function init(){
global $_LANG;
if (!$this->smarty){ $this->loadSmarty(); }
$this->smarty->template_dir = PATH."/plugins/p_like/tpl";
$this->smarty->assign('LANG', $_LANG);
return $this->smarty;
}
private function loadSmarty(){
include_once PATH.'/includes/smarty/libs/Smarty.class.php';
$this->smarty = new Smarty();
$this->smarty->compile_dir = PATH.'/cache';
}
}
?>