Home
last modified time | relevance | path

Searched refs:entityFlags (Results 1 – 2 of 2) sorted by last modified time

/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DCompiler.php26 private $entityFlags; variable in Mustache_Compiler
39 * @param int $entityFlags (default: ENT_COMPAT)
43 …me, $customEscape = false, $charset = 'UTF-8', $strictCallables = false, $entityFlags = ENT_COMPAT) argument
51 $this->entityFlags = $entityFlags;
623 …return sprintf(self::DEFAULT_ESCAPE, $value, var_export($this->entityFlags, true), var_export($thi…
H A DEngine.php52 private $entityFlags = ENT_COMPAT; variable in Mustache_Engine
192 $this->entityFlags = $options['entity_flags'];
256 return $this->entityFlags;
629 'entityFlags' => $this->entityFlags,
813 …e, $tree, $name, isset($this->escape), $this->charset, $this->strictCallables, $this->entityFlags);