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


PHP Mustache_Engine::setLoader方法代码示例

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


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

示例1: testSettingServices

 public function testSettingServices()
 {
     $logger = new Mustache_Logger_StreamLogger(tmpfile());
     $loader = new Mustache_Loader_StringLoader();
     $tokenizer = new Mustache_Tokenizer();
     $parser = new Mustache_Parser();
     $compiler = new Mustache_Compiler();
     $mustache = new Mustache_Engine();
     $cache = new Mustache_Cache_FilesystemCache(self::$tempDir);
     $this->assertNotSame($logger, $mustache->getLogger());
     $mustache->setLogger($logger);
     $this->assertSame($logger, $mustache->getLogger());
     $this->assertNotSame($loader, $mustache->getLoader());
     $mustache->setLoader($loader);
     $this->assertSame($loader, $mustache->getLoader());
     $this->assertNotSame($loader, $mustache->getPartialsLoader());
     $mustache->setPartialsLoader($loader);
     $this->assertSame($loader, $mustache->getPartialsLoader());
     $this->assertNotSame($tokenizer, $mustache->getTokenizer());
     $mustache->setTokenizer($tokenizer);
     $this->assertSame($tokenizer, $mustache->getTokenizer());
     $this->assertNotSame($parser, $mustache->getParser());
     $mustache->setParser($parser);
     $this->assertSame($parser, $mustache->getParser());
     $this->assertNotSame($compiler, $mustache->getCompiler());
     $mustache->setCompiler($compiler);
     $this->assertSame($compiler, $mustache->getCompiler());
     $this->assertNotSame($cache, $mustache->getCache());
     $mustache->setCache($cache);
     $this->assertSame($cache, $mustache->getCache());
 }
开发者ID:baardbaard,项目名称:bb-twitterfeed,代码行数:31,代码来源:EngineTest.php

示例2: get_mustache_engine

 /**
  * @return Mustache_Engine
  */
 private function get_mustache_engine()
 {
     if (is_null($this->mustache_engine)) {
         $this->get_loader()->load(FCA_FBC_Loader::LIB_MUSTACHE, 'php');
         $loader = new Mustache_Loader_FilesystemLoader(dirname(__FILE__) . '/Template');
         $this->mustache_engine = new Mustache_Engine();
         $this->mustache_engine->setLoader($loader);
         $this->mustache_engine->setPartialsLoader($loader);
     }
     return $this->mustache_engine;
 }
开发者ID:firatkarakusoglu,项目名称:feedback-cat,代码行数:14,代码来源:Component.php

示例3: parse_string

 public function parse_string($template, $data = array(), $return = FALSE, $config = array())
 {
     if (!is_array($config)) {
         $config = array();
     }
     $config = array_merge($this->config, $config);
     if (!is_array($data)) {
         $data = array();
     }
     $ci = $this->ci;
     $is_mx = false;
     if (!$return) {
         list($ci, $is_mx) = $this->detect_mx();
     }
     $parser = new Mustache_Engine($config);
     $parser->setLoader(new Mustache_Loader_StringLoader());
     $template = $parser->render($template, $data);
     return $this->output($template, $return, $ci, $is_mx);
 }
开发者ID:belajarberbagi,项目名称:starter-public-edition-4,代码行数:19,代码来源:Parser_mustache.php

示例4: testSettingServices

 public function testSettingServices()
 {
     $loader = new Mustache_Loader_StringLoader();
     $tokenizer = new Mustache_Tokenizer();
     $parser = new Mustache_Parser();
     $compiler = new Mustache_Compiler();
     $mustache = new Mustache_Engine();
     $this->assertNotSame($loader, $mustache->getLoader());
     $mustache->setLoader($loader);
     $this->assertSame($loader, $mustache->getLoader());
     $this->assertNotSame($loader, $mustache->getPartialsLoader());
     $mustache->setPartialsLoader($loader);
     $this->assertSame($loader, $mustache->getPartialsLoader());
     $this->assertNotSame($tokenizer, $mustache->getTokenizer());
     $mustache->setTokenizer($tokenizer);
     $this->assertSame($tokenizer, $mustache->getTokenizer());
     $this->assertNotSame($parser, $mustache->getParser());
     $mustache->setParser($parser);
     $this->assertSame($parser, $mustache->getParser());
     $this->assertNotSame($compiler, $mustache->getCompiler());
     $mustache->setCompiler($compiler);
     $this->assertSame($compiler, $mustache->getCompiler());
 }
开发者ID:juanmndz,项目名称:build-podcast,代码行数:23,代码来源:EngineTest.php

示例5: parse_string

 public function parse_string($template, $data = array(), $return = FALSE, $options = array())
 {
     if (!is_array($options)) {
         $options = array();
     }
     $options = array_merge($this->config, $options);
     if (!isset($options['charset']) || trim($options['charset']) == '') {
         $options['charset'] = $this->ci->config->item('charset');
     }
     $options['charset'] = strtoupper($options['charset']);
     if (is_object($data)) {
         $data = get_object_vars($data);
     }
     if (!is_array($data)) {
         $data = array();
     }
     $ci = $this->ci;
     $is_mx = false;
     if (!$return) {
         list($ci, $is_mx) = $this->detect_mx();
     }
     $parser = new Mustache_Engine($options);
     $parser->setLoader(new Mustache_Loader_StringLoader());
     $template = $parser->render($template, $data);
     return $this->output($template, $return, $ci, $is_mx);
 }
开发者ID:bhavesh561988,项目名称:starter-public-edition-4,代码行数:26,代码来源:Parser_mustache.php


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