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


PHP TemplateManager::getInstance方法代码示例

本文整理汇总了PHP中TemplateManager::getInstance方法的典型用法代码示例。如果您正苦于以下问题:PHP TemplateManager::getInstance方法的具体用法?PHP TemplateManager::getInstance怎么用?PHP TemplateManager::getInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TemplateManager的用法示例。


在下文中一共展示了TemplateManager::getInstance方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 function __construct($parameter)
 {
     $this->tm = TemplateManager::getInstance();
     if (isset($parameter['page']) && is_numeric($parameter['page'])) {
         $this->page = $parameter['page'];
     }
 }
开发者ID:ThomDietrich,项目名称:gctour,代码行数:7,代码来源:admin.php

示例2: __construct

 function __construct($paramaters)
 {
     if (isset($paramaters['webcode'])) {
         $this->webcode = $paramaters['webcode'];
     }
     $this->tm = TemplateManager::getInstance();
 }
开发者ID:ThomDietrich,项目名称:gctour,代码行数:7,代码来源:tour_json.php

示例3: __construct

 function __construct($parameters)
 {
     if (!empty($parameters)) {
         $this->{$parameters}[0] = true;
     }
     $this->tm = TemplateManager::getInstance();
 }
开发者ID:ThomDietrich,项目名称:gctour,代码行数:7,代码来源:contact.php

示例4: __construct

 function __construct($paramaters)
 {
     foreach ($paramaters as $key => $value) {
         $this->{$key} = $value;
     }
     $this->tm = TemplateManager::getInstance();
     $this->em = GeocacheManager::getInstance();
 }
开发者ID:ThomDietrich,项目名称:gctour,代码行数:8,代码来源:map_show.php

示例5: __get

 /**
  * 
  * @param type $componentName
  * @return \template_manager\classes\TComponentShortcutWrapper
  */
 public function __get($componentName)
 {
     //        $currentTemplate = TemplateManager::getInstance()->getCurentTemplate();
     //        $components = $currentTemplate->getComponents();
     $components = TemplateManager::getInstance()->getCurrentTemplateComponents();
     $nameShort = self::getShortName($componentName);
     foreach ($components as $componentName_ => $component_) {
         $nameShort_ = self::getShortName($componentName_);
         if ($componentName_ == $componentName || $nameShort_ == $nameShort) {
             return $component_;
         }
     }
 }
开发者ID:RandomUsernameHere,项目名称:megainfo-corporate-cms,代码行数:18,代码来源:TComponentShortcut.php

示例6: __construct

 function __construct($parameters)
 {
     $this->error_id = $parameters['id'];
     $this->tm = TemplateManager::getInstance();
 }
开发者ID:ThomDietrich,项目名称:gctour,代码行数:5,代码来源:errors.php

示例7: __construct

 function __construct($paramaters)
 {
     $this->tm = TemplateManager::getInstance();
 }
开发者ID:ThomDietrich,项目名称:gctour,代码行数:4,代码来源:stats.php


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