本文整理匯總了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);
}
}
}