本文整理汇总了PHP中TemplateEngine::instance方法的典型用法代码示例。如果您正苦于以下问题:PHP TemplateEngine::instance方法的具体用法?PHP TemplateEngine::instance怎么用?PHP TemplateEngine::instance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TemplateEngine
的用法示例。
在下文中一共展示了TemplateEngine::instance方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getInstance
public static function getInstance()
{
if (null === self::$instance) {
self::$instance = new self();
}
return self::$instance;
}
示例2: getInstance
private static function getInstance()
{
if (self::$instance == null) {
self::$instance = new TemplateEngine();
}
return self::$instance;
}
示例3: init
protected function init($name) {
Logger::enter_group('Template');
Logger::debug('Loading Template');
$this->name = $name;
$this->tpl_engine = TemplateEngine::instance();
$this->tpl_engine->set_opts(array(
'loader' => array(
APP_ROOT . "/views/",
APP_ROOT . "/views/" . $this->name
),
'cache' => Config::instance('framework')->get_value('cache'),
'debug' => Config::instance('framework')->get_value('debug')
));
$this->tpl_engine->load();
}
示例4: init
public static function init($template_dir = null, $compiled_dir = null, $cache_dir = null)
{
if (!self::$instance instanceof DwooEngine) {
if ($template_dir != null) {
self::$template_dir = $template_dir;
} else {
self::$template_dir = realpath(dirname(__FILE__) . '/../templates/');
}
self::$instance = new DwooEngine(self::$template_dir);
if ($cache_dir != null) {
self::$instance->setCacheDir($cache_dir);
}
if ($compiled_dir != null) {
self::$instance->setCompileDir($compiled_dir);
}
}
}