當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。