本文整理汇总了PHP中template::instance方法的典型用法代码示例。如果您正苦于以下问题:PHP template::instance方法的具体用法?PHP template::instance怎么用?PHP template::instance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类template
的用法示例。
在下文中一共展示了template::instance方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getInstance
public static function getInstance()
{
if (is_null(self::$instance)) {
self::$instance = new Singleton();
}
return self::$instance;
}
示例2: getInstance
/**
* Creation/Recuperation de la class template
*
* @param string $name
* @return template
*/
static function getInstance($name = null)
{
if (is_null(template::$instance) && !is_null($name)) {
template::$instance = new template($name);
}
return template::$instance;
}
示例3: getInstance
static function getInstance()
{
if (is_null(template::$instance)) {
template::$instance = new template();
}
return template::$instance;
}
示例4: mf_AssignMessages
/**
*
*/
protected function mf_AssignMessages()
{
$this->tpl = template::instance();
$this->tpl->assign('arrMessageLevels', $this->m_arrMessageLevels);
$arrMsgs = $this->mf_GetMessages();
arsort($arrMsgs['level'], SORT_NUMERIC);
$arrMessages = array();
foreach ($arrMsgs['level'] as $k => $iLevel) {
$arrMessages[] = array('level' => $iLevel, 'msg' => $arrMsgs['msg'][$k]);
}
$this->tpl->assign('arrMessages', $arrMessages);
$szMessages = 0 < count($arrMessages) ? $this->tpl->fetch('messages.tpl.html') : '';
$this->tpl->assign('szMessages', $szMessages);
unset($this->tpl->smarty->_tpl_vars['arrMessages'], $this->tpl->smarty->_tpl_vars['arrMessageLevels']);
}
示例5: contest
private static function contest($year)
{
return \template::instance()->render($year . '/index.html');
}