当前位置: 首页>>代码示例>>PHP>>正文


PHP template::instance方法代码示例

本文整理汇总了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;
 }
开发者ID:NeonXP,项目名称:traits.io,代码行数:7,代码来源:template.php

示例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;
 }
开发者ID:Ashaan,项目名称:phpcv,代码行数:13,代码来源:template.php

示例3: getInstance

 static function getInstance()
 {
     if (is_null(template::$instance)) {
         template::$instance = new template();
     }
     return template::$instance;
 }
开发者ID:Ashaan,项目名称:phpgallery,代码行数:7,代码来源:template.php

示例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']);
 }
开发者ID:rudiedirkx,项目名称:MVC-Framework-3,代码行数:18,代码来源:inc.cls.__topmodule.php

示例5: contest

 private static function contest($year)
 {
     return \template::instance()->render($year . '/index.html');
 }
开发者ID:WikimediaChile,项目名称:wikitour.cl,代码行数:4,代码来源:portada.php


注:本文中的template::instance方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。