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


PHP PHPTAL::__construct方法代码示例

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


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

示例1: __construct

 public function __construct($template = false)
 {
     $this->setTemplateRepository(self::$_template_dirs);
     if (DEBUG) {
         $this->setForceReparse(true);
     }
     parent::__construct($template);
 }
开发者ID:xia,项目名称:inq-calculators,代码行数:8,代码来源:Template.php

示例2: __construct

 /**
  * DECTAL Constructor to set up template and inner template repos
  *
  * @param string|NULL If not NULL, this sets the inner template file
  *    to the given filename.  The template repo is set to the  base template repo
  */
 public function __construct($template = NULL)
 {
     parent::__construct();
     $this->setTemplateRepository('templates/');
     if ($template != NULL) {
         $this->_sub_template = new PHPTAL($template);
     }
 }
开发者ID:sdforet,项目名称:foretflorida,代码行数:14,代码来源:DECTAL.php

示例3:

 function __construct()
 {
     // Default-Werte setzen
     $this->setPageTitle(self::DEFAULT_PAGE_TITLE);
     $this->setTemplateFile(self::DEFAULT_TEMPLATE_FILE);
     $this->setTemplateMacro(self::DEFAULT_TEMPLATE_MACRO);
     // Template-Konstruktor aufrufen
     parent::__construct();
 }
开发者ID:jeko,项目名称:pksworld,代码行数:9,代码来源:View.php

示例4: __construct

 public function __construct($template = false)
 {
     parent::__construct($template);
     $this->setTemplateRepository(self::$_template_dirs);
     if (DEBUG) {
         $this->setForceReparse(true);
     }
     $this->static = new Template_StaticContext();
     $this->global = new Template_GlobalContext();
 }
开发者ID:Anpu,项目名称:INQ-Calculators,代码行数:10,代码来源:Template.php

示例5: __construct

 /**
  * Constructor
  * @param string $tplName The name of the Template file (without .xml)
  * @throws \Exception
  */
 public function __construct($tplName)
 {
     $this->templateFile = BUZZSEO_DIR . DIRECTORY_SEPARATOR . 'tal' . DIRECTORY_SEPARATOR . $tplName . '.xml';
     if (!is_readable($this->templateFile)) {
         throw new \Exception(sprintf(__('File %s does not exist.', 'buzz-seo'), $this->templateFile), 404);
     }
     // Construct PHPTAL object
     parent::__construct();
     // Add translator
     $this->TalTranslator = new Services\Translation();
     $this->TalTranslator->useDomain('buzz-seo');
     $this->setTranslator($this->TalTranslator);
     // Render as HTML5
     $this->setOutputMode(\PHPTAL::HTML5);
     // Strip comments
     $this->stripComments(true);
     // Set source
     $this->setTemplate($this->templateFile);
 }
开发者ID:nextbuzz,项目名称:buzz-seo,代码行数:24,代码来源:Template.php

示例6:

 function __construct()
 {
     //Call PHPTAL constructor (because we can)
     parent::__construct();
     /**
      * Use CI config to set encoding, templates and compiled templates path
      */
     $CI =& get_instance();
     //BUGGGGGG!!!! CI FORUM BUG, REMOVE the ; SYNTAX ERROR!
     /**
      * You can change paths if you need to
      */
     $cache_path = $CI->config->item('cache_path');
     if (empty($cache_path)) {
         $cache_path = APPPATH . 'cache/';
     }
     $this->setEncoding($CI->config->item('charset'));
     $this->setTemplateRepository(APPPATH . 'views/');
     $this->setPhpCodeDestination($cache_path);
 }
开发者ID:rjrico,项目名称:CI-TAL-WURFL,代码行数:20,代码来源:tal.php


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