Searched refs:strictCallables (Results 1 – 3 of 3) sorted by relevance
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/ |
H A D | Template.php | 27 protected $strictCallables = false; variable in Mustache_Template 172 … if (($this->strictCallables ? is_object($value) : !is_string($value)) && is_callable($value)) {
|
H A D | Compiler.php | 28 private $strictCallables; variable in Mustache_Compiler 38 * @param bool $strictCallables (default: false) 43 …rce, array $tree, $name, $customEscape = false, $charset = 'UTF-8', $strictCallables = false, $ent… argument 53 $this->strictCallables = $strictCallables; 232 $callable = $this->strictCallables ? $this->prepare(self::STRICT_CALLABLE) : ''; 670 $tpl = $this->strictCallables ? self::STRICT_IS_CALLABLE : self::IS_CALLABLE;
|
H A D | Engine.php | 55 private $strictCallables = false; variable in Mustache_Engine 204 $this->strictCallables = $options['strict_callables']; 633 'strictCallables' => $this->strictCallables, 813 …($source, $tree, $name, isset($this->escape), $this->charset, $this->strictCallables, $this->entit…
|