示例#1
0
 public function __construct()
 {
     parent::__construct();
     $this->cache = false;
     $this->compile_dir = CACHE_ROOT . '/compiled';
     $this->template_dir = ROOT . '/templates';
     $this->compile_check = true;
     $this->reserved_template_varname = 'tpl';
     $this->assign('www_url', WWW_URL);
     $this->assign('self_url', Utils::getSelfUrl());
     $this->assign('self_url_no_qs', Utils::getSelfUrl(true));
     $this->assign('is_logged', false);
 }