View source
<?php
class Twig_Environment {
const VERSION = '1.23.1';
protected $charset;
protected $loader;
protected $debug;
protected $autoReload;
protected $cache;
protected $lexer;
protected $parser;
protected $compiler;
protected $baseTemplateClass;
protected $extensions;
protected $parsers;
protected $visitors;
protected $filters;
protected $tests;
protected $functions;
protected $globals;
protected $runtimeInitialized = false;
protected $extensionInitialized = false;
protected $loadedTemplates;
protected $strictVariables;
protected $unaryOperators;
protected $binaryOperators;
protected $templateClassPrefix = '__TwigTemplate_';
protected $functionCallbacks = array();
protected $filterCallbacks = array();
protected $staging;
private $originalCache;
private $bcWriteCacheFile = false;
private $bcGetCacheFilename = false;
private $lastModifiedExtension = 0;
public function __construct(Twig_LoaderInterface $loader = null, $options = array()) {
if (null !== $loader) {
$this
->setLoader($loader);
}
else {
@trigger_error('Not passing a Twig_LoaderInterface as the first constructor argument of Twig_Environment is deprecated.', E_USER_DEPRECATED);
}
$options = array_merge(array(
'debug' => false,
'charset' => 'UTF-8',
'base_template_class' => 'Twig_Template',
'strict_variables' => false,
'autoescape' => 'html',
'cache' => false,
'auto_reload' => null,
'optimizations' => -1,
), $options);
$this->debug = (bool) $options['debug'];
$this->charset = strtoupper($options['charset']);
$this->baseTemplateClass = $options['base_template_class'];
$this->autoReload = null === $options['auto_reload'] ? $this->debug : (bool) $options['auto_reload'];
$this->strictVariables = (bool) $options['strict_variables'];
$this
->setCache($options['cache']);
$this
->addExtension(new Twig_Extension_Core());
$this
->addExtension(new Twig_Extension_Escaper($options['autoescape']));
$this
->addExtension(new Twig_Extension_Optimizer($options['optimizations']));
$this->staging = new Twig_Extension_Staging();
if (is_string($this->originalCache)) {
$r = new ReflectionMethod($this, 'writeCacheFile');
if ($r
->getDeclaringClass()
->getName() !== __CLASS__) {
@trigger_error('The Twig_Environment::writeCacheFile method is deprecated and will be removed in Twig 2.0.', E_USER_DEPRECATED);
$this->bcWriteCacheFile = true;
}
$r = new ReflectionMethod($this, 'getCacheFilename');
if ($r
->getDeclaringClass()
->getName() !== __CLASS__) {
@trigger_error('The Twig_Environment::getCacheFilename method is deprecated and will be removed in Twig 2.0.', E_USER_DEPRECATED);
$this->bcGetCacheFilename = true;
}
}
}
public function getBaseTemplateClass() {
return $this->baseTemplateClass;
}
public function setBaseTemplateClass($class) {
$this->baseTemplateClass = $class;
}
public function enableDebug() {
$this->debug = true;
}
public function disableDebug() {
$this->debug = false;
}
public function isDebug() {
return $this->debug;
}
public function enableAutoReload() {
$this->autoReload = true;
}
public function disableAutoReload() {
$this->autoReload = false;
}
public function isAutoReload() {
return $this->autoReload;
}
public function enableStrictVariables() {
$this->strictVariables = true;
}
public function disableStrictVariables() {
$this->strictVariables = false;
}
public function isStrictVariables() {
return $this->strictVariables;
}
public function getCache($original = true) {
return $original ? $this->originalCache : $this->cache;
}
public function setCache($cache) {
if (is_string($cache)) {
$this->originalCache = $cache;
$this->cache = new Twig_Cache_Filesystem($cache);
}
elseif (false === $cache) {
$this->originalCache = $cache;
$this->cache = new Twig_Cache_Null();
}
elseif (null === $cache) {
@trigger_error('Using "null" as the cache strategy is deprecated and will be removed in Twig 2.0.', E_USER_DEPRECATED);
$this->originalCache = false;
$this->cache = new Twig_Cache_Null();
}
elseif ($cache instanceof Twig_CacheInterface) {
$this->originalCache = $this->cache = $cache;
}
else {
throw new LogicException(sprintf('Cache can only be a string, false, or a Twig_CacheInterface implementation.'));
}
}
public function getCacheFilename($name) {
@trigger_error(sprintf('The %s method is deprecated and will be removed in Twig 2.0.', __METHOD__), E_USER_DEPRECATED);
$key = $this->cache
->generateKey($name, $this
->getTemplateClass($name));
return !$key ? false : $key;
}
public function getTemplateClass($name, $index = null) {
$key = $this
->getLoader()
->getCacheKey($name);
$key .= json_encode(array_keys($this->extensions));
$key .= function_exists('twig_template_get_attributes');
return $this->templateClassPrefix . hash('sha256', $key) . (null === $index ? '' : '_' . $index);
}
public function getTemplateClassPrefix() {
@trigger_error(sprintf('The %s method is deprecated and will be removed in Twig 2.0.', __METHOD__), E_USER_DEPRECATED);
return $this->templateClassPrefix;
}
public function render($name, array $context = array()) {
return $this
->loadTemplate($name)
->render($context);
}
public function display($name, array $context = array()) {
$this
->loadTemplate($name)
->display($context);
}
public function loadTemplate($name, $index = null) {
$cls = $this
->getTemplateClass($name, $index);
if (isset($this->loadedTemplates[$cls])) {
return $this->loadedTemplates[$cls];
}
if (!class_exists($cls, false)) {
if ($this->bcGetCacheFilename) {
$key = $this
->getCacheFilename($name);
}
else {
$key = $this->cache
->generateKey($name, $cls);
}
if (!$this
->isAutoReload() || $this
->isTemplateFresh($name, $this->cache
->getTimestamp($key))) {
$this->cache
->load($key);
}
if (!class_exists($cls, false)) {
$content = $this
->compileSource($this
->getLoader()
->getSource($name), $name);
if ($this->bcWriteCacheFile) {
$this
->writeCacheFile($key, $content);
}
else {
$this->cache
->write($key, $content);
}
eval('?>' . $content);
}
}
if (!$this->runtimeInitialized) {
$this
->initRuntime();
}
return $this->loadedTemplates[$cls] = new $cls($this);
}
public function createTemplate($template) {
$name = sprintf('__string_template__%s', hash('sha256', uniqid(mt_rand(), true), false));
$loader = new Twig_Loader_Chain(array(
new Twig_Loader_Array(array(
$name => $template,
)),
$current = $this
->getLoader(),
));
$this
->setLoader($loader);
try {
$template = $this
->loadTemplate($name);
} catch (Exception $e) {
$this
->setLoader($current);
throw $e;
}
$this
->setLoader($current);
return $template;
}
public function isTemplateFresh($name, $time) {
if (0 === $this->lastModifiedExtension) {
foreach ($this->extensions as $extension) {
$r = new ReflectionObject($extension);
if (file_exists($r
->getFileName()) && ($extensionTime = filemtime($r
->getFileName())) > $this->lastModifiedExtension) {
$this->lastModifiedExtension = $extensionTime;
}
}
}
return $this->lastModifiedExtension <= $time && $this
->getLoader()
->isFresh($name, $time);
}
public function resolveTemplate($names) {
if (!is_array($names)) {
$names = array(
$names,
);
}
foreach ($names as $name) {
if ($name instanceof Twig_Template) {
return $name;
}
try {
return $this
->loadTemplate($name);
} catch (Twig_Error_Loader $e) {
}
}
if (1 === count($names)) {
throw $e;
}
throw new Twig_Error_Loader(sprintf('Unable to find one of the following templates: "%s".', implode('", "', $names)));
}
public function clearTemplateCache() {
@trigger_error(sprintf('The %s method is deprecated and will be removed in Twig 2.0.', __METHOD__), E_USER_DEPRECATED);
$this->loadedTemplates = array();
}
public function clearCacheFiles() {
@trigger_error(sprintf('The %s method is deprecated and will be removed in Twig 2.0.', __METHOD__), E_USER_DEPRECATED);
if (is_string($this->originalCache)) {
foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($this->originalCache), RecursiveIteratorIterator::LEAVES_ONLY) as $file) {
if ($file
->isFile()) {
@unlink($file
->getPathname());
}
}
}
}
public function getLexer() {
if (null === $this->lexer) {
$this->lexer = new Twig_Lexer($this);
}
return $this->lexer;
}
public function setLexer(Twig_LexerInterface $lexer) {
$this->lexer = $lexer;
}
public function tokenize($source, $name = null) {
return $this
->getLexer()
->tokenize($source, $name);
}
public function getParser() {
if (null === $this->parser) {
$this->parser = new Twig_Parser($this);
}
return $this->parser;
}
public function setParser(Twig_ParserInterface $parser) {
$this->parser = $parser;
}
public function parse(Twig_TokenStream $stream) {
return $this
->getParser()
->parse($stream);
}
public function getCompiler() {
if (null === $this->compiler) {
$this->compiler = new Twig_Compiler($this);
}
return $this->compiler;
}
public function setCompiler(Twig_CompilerInterface $compiler) {
$this->compiler = $compiler;
}
public function compile(Twig_NodeInterface $node) {
return $this
->getCompiler()
->compile($node)
->getSource();
}
public function compileSource($source, $name = null) {
try {
$compiled = $this
->compile($this
->parse($this
->tokenize($source, $name)), $source);
if (isset($source[0])) {
$compiled .= '/* ' . str_replace(array(
'*/',
"\r\n",
"\r",
"\n",
), array(
'*//* ',
"\n",
"\n",
"*/\n/* ",
), $source) . "*/\n";
}
return $compiled;
} catch (Twig_Error $e) {
$e
->setTemplateFile($name);
throw $e;
} catch (Exception $e) {
throw new Twig_Error_Syntax(sprintf('An exception has been thrown during the compilation of a template ("%s").', $e
->getMessage()), -1, $name, $e);
}
}
public function setLoader(Twig_LoaderInterface $loader) {
$this->loader = $loader;
}
public function getLoader() {
if (null === $this->loader) {
throw new LogicException('You must set a loader first.');
}
return $this->loader;
}
public function setCharset($charset) {
$this->charset = strtoupper($charset);
}
public function getCharset() {
return $this->charset;
}
public function initRuntime() {
$this->runtimeInitialized = true;
foreach ($this
->getExtensions() as $name => $extension) {
if (!$extension instanceof Twig_Extension_InitRuntimeInterface) {
$m = new ReflectionMethod($extension, 'initRuntime');
if ('Twig_Extension' !== $m
->getDeclaringClass()
->getName()) {
@trigger_error(sprintf('Defining the initRuntime() method in the "%s" extension is deprecated. Use the `needs_environment` option to get the Twig_Environment instance in filters, functions, or tests; or explicitly implement Twig_Extension_InitRuntimeInterface if needed (not recommended).', $name), E_USER_DEPRECATED);
}
}
$extension
->initRuntime($this);
}
}
public function hasExtension($name) {
return isset($this->extensions[$name]);
}
public function getExtension($name) {
if (!isset($this->extensions[$name])) {
throw new Twig_Error_Runtime(sprintf('The "%s" extension is not enabled.', $name));
}
return $this->extensions[$name];
}
public function addExtension(Twig_ExtensionInterface $extension) {
$name = $extension
->getName();
if ($this->extensionInitialized) {
throw new LogicException(sprintf('Unable to register extension "%s" as extensions have already been initialized.', $name));
}
if (isset($this->extensions[$name])) {
@trigger_error(sprintf('The possibility to register the same extension twice ("%s") is deprecated and will be removed in Twig 2.0. Use proper PHP inheritance instead.', $name), E_USER_DEPRECATED);
}
$this->lastModifiedExtension = 0;
$this->extensions[$name] = $extension;
}
public function removeExtension($name) {
@trigger_error(sprintf('The %s method is deprecated and will be removed in Twig 2.0.', __METHOD__), E_USER_DEPRECATED);
if ($this->extensionInitialized) {
throw new LogicException(sprintf('Unable to remove extension "%s" as extensions have already been initialized.', $name));
}
unset($this->extensions[$name]);
}
public function setExtensions(array $extensions) {
foreach ($extensions as $extension) {
$this
->addExtension($extension);
}
}
public function getExtensions() {
return $this->extensions;
}
public function addTokenParser(Twig_TokenParserInterface $parser) {
if ($this->extensionInitialized) {
throw new LogicException('Unable to add a token parser as extensions have already been initialized.');
}
$this->staging
->addTokenParser($parser);
}
public function getTokenParsers() {
if (!$this->extensionInitialized) {
$this
->initExtensions();
}
return $this->parsers;
}
public function getTags() {
$tags = array();
foreach ($this
->getTokenParsers()
->getParsers() as $parser) {
if ($parser instanceof Twig_TokenParserInterface) {
$tags[$parser
->getTag()] = $parser;
}
}
return $tags;
}
public function addNodeVisitor(Twig_NodeVisitorInterface $visitor) {
if ($this->extensionInitialized) {
throw new LogicException('Unable to add a node visitor as extensions have already been initialized.');
}
$this->staging
->addNodeVisitor($visitor);
}
public function getNodeVisitors() {
if (!$this->extensionInitialized) {
$this
->initExtensions();
}
return $this->visitors;
}
public function addFilter($name, $filter = null) {
if (!$name instanceof Twig_SimpleFilter && !($filter instanceof Twig_SimpleFilter || $filter instanceof Twig_FilterInterface)) {
throw new LogicException('A filter must be an instance of Twig_FilterInterface or Twig_SimpleFilter');
}
if ($name instanceof Twig_SimpleFilter) {
$filter = $name;
$name = $filter
->getName();
}
else {
@trigger_error(sprintf('Passing a name as a first argument to the %s method is deprecated. Pass an instance of "Twig_SimpleFilter" instead when defining filter "%s".', __METHOD__, $name), E_USER_DEPRECATED);
}
if ($this->extensionInitialized) {
throw new LogicException(sprintf('Unable to add filter "%s" as extensions have already been initialized.', $name));
}
$this->staging
->addFilter($name, $filter);
}
public function getFilter($name) {
if (!$this->extensionInitialized) {
$this
->initExtensions();
}
if (isset($this->filters[$name])) {
return $this->filters[$name];
}
foreach ($this->filters as $pattern => $filter) {
$pattern = str_replace('\\*', '(.*?)', preg_quote($pattern, '#'), $count);
if ($count) {
if (preg_match('#^' . $pattern . '$#', $name, $matches)) {
array_shift($matches);
$filter
->setArguments($matches);
return $filter;
}
}
}
foreach ($this->filterCallbacks as $callback) {
if (false !== ($filter = call_user_func($callback, $name))) {
return $filter;
}
}
return false;
}
public function registerUndefinedFilterCallback($callable) {
$this->filterCallbacks[] = $callable;
}
public function getFilters() {
if (!$this->extensionInitialized) {
$this
->initExtensions();
}
return $this->filters;
}
public function addTest($name, $test = null) {
if (!$name instanceof Twig_SimpleTest && !($test instanceof Twig_SimpleTest || $test instanceof Twig_TestInterface)) {
throw new LogicException('A test must be an instance of Twig_TestInterface or Twig_SimpleTest');
}
if ($name instanceof Twig_SimpleTest) {
$test = $name;
$name = $test
->getName();
}
else {
@trigger_error(sprintf('Passing a name as a first argument to the %s method is deprecated. Pass an instance of "Twig_SimpleTest" instead when defining test "%s".', __METHOD__, $name), E_USER_DEPRECATED);
}
if ($this->extensionInitialized) {
throw new LogicException(sprintf('Unable to add test "%s" as extensions have already been initialized.', $name));
}
$this->staging
->addTest($name, $test);
}
public function getTests() {
if (!$this->extensionInitialized) {
$this
->initExtensions();
}
return $this->tests;
}
public function getTest($name) {
if (!$this->extensionInitialized) {
$this
->initExtensions();
}
if (isset($this->tests[$name])) {
return $this->tests[$name];
}
return false;
}
public function addFunction($name, $function = null) {
if (!$name instanceof Twig_SimpleFunction && !($function instanceof Twig_SimpleFunction || $function instanceof Twig_FunctionInterface)) {
throw new LogicException('A function must be an instance of Twig_FunctionInterface or Twig_SimpleFunction');
}
if ($name instanceof Twig_SimpleFunction) {
$function = $name;
$name = $function
->getName();
}
else {
@trigger_error(sprintf('Passing a name as a first argument to the %s method is deprecated. Pass an instance of "Twig_SimpleFunction" instead when defining function "%s".', __METHOD__, $name), E_USER_DEPRECATED);
}
if ($this->extensionInitialized) {
throw new LogicException(sprintf('Unable to add function "%s" as extensions have already been initialized.', $name));
}
$this->staging
->addFunction($name, $function);
}
public function getFunction($name) {
if (!$this->extensionInitialized) {
$this
->initExtensions();
}
if (isset($this->functions[$name])) {
return $this->functions[$name];
}
foreach ($this->functions as $pattern => $function) {
$pattern = str_replace('\\*', '(.*?)', preg_quote($pattern, '#'), $count);
if ($count) {
if (preg_match('#^' . $pattern . '$#', $name, $matches)) {
array_shift($matches);
$function
->setArguments($matches);
return $function;
}
}
}
foreach ($this->functionCallbacks as $callback) {
if (false !== ($function = call_user_func($callback, $name))) {
return $function;
}
}
return false;
}
public function registerUndefinedFunctionCallback($callable) {
$this->functionCallbacks[] = $callable;
}
public function getFunctions() {
if (!$this->extensionInitialized) {
$this
->initExtensions();
}
return $this->functions;
}
public function addGlobal($name, $value) {
if ($this->extensionInitialized || $this->runtimeInitialized) {
if (null === $this->globals) {
$this->globals = $this
->initGlobals();
}
if (!array_key_exists($name, $this->globals)) {
@trigger_error(sprintf('Registering global variable "%s" at runtime or when the extensions have already been initialized is deprecated.', $name), E_USER_DEPRECATED);
}
}
if ($this->extensionInitialized || $this->runtimeInitialized) {
$this->globals[$name] = $value;
}
else {
$this->staging
->addGlobal($name, $value);
}
}
public function getGlobals() {
if (!$this->runtimeInitialized && !$this->extensionInitialized) {
return $this
->initGlobals();
}
if (null === $this->globals) {
$this->globals = $this
->initGlobals();
}
return $this->globals;
}
public function mergeGlobals(array $context) {
foreach ($this
->getGlobals() as $key => $value) {
if (!array_key_exists($key, $context)) {
$context[$key] = $value;
}
}
return $context;
}
public function getUnaryOperators() {
if (!$this->extensionInitialized) {
$this
->initExtensions();
}
return $this->unaryOperators;
}
public function getBinaryOperators() {
if (!$this->extensionInitialized) {
$this
->initExtensions();
}
return $this->binaryOperators;
}
public function computeAlternatives($name, $items) {
@trigger_error(sprintf('The %s method is deprecated and will be removed in Twig 2.0.', __METHOD__), E_USER_DEPRECATED);
return Twig_Error_Syntax::computeAlternatives($name, $items);
}
protected function initGlobals() {
$globals = array();
foreach ($this->extensions as $name => $extension) {
if (!$extension instanceof Twig_Extension_GlobalsInterface) {
$m = new ReflectionMethod($extension, 'getGlobals');
if ('Twig_Extension' !== $m
->getDeclaringClass()
->getName()) {
@trigger_error(sprintf('Defining the getGlobals() method in the "%s" extension is deprecated without explicitly implementing Twig_Extension_GlobalsInterface.', $name), E_USER_DEPRECATED);
}
}
$extGlob = $extension
->getGlobals();
if (!is_array($extGlob)) {
throw new UnexpectedValueException(sprintf('"%s::getGlobals()" must return an array of globals.', get_class($extension)));
}
$globals[] = $extGlob;
}
$globals[] = $this->staging
->getGlobals();
return call_user_func_array('array_merge', $globals);
}
protected function initExtensions() {
if ($this->extensionInitialized) {
return;
}
$this->extensionInitialized = true;
$this->parsers = new Twig_TokenParserBroker(array(), array(), false);
$this->filters = array();
$this->functions = array();
$this->tests = array();
$this->visitors = array();
$this->unaryOperators = array();
$this->binaryOperators = array();
foreach ($this->extensions as $extension) {
$this
->initExtension($extension);
}
$this
->initExtension($this->staging);
}
protected function initExtension(Twig_ExtensionInterface $extension) {
foreach ($extension
->getFilters() as $name => $filter) {
if ($filter instanceof Twig_SimpleFilter) {
$name = $filter
->getName();
}
else {
@trigger_error(sprintf('Using an instance of "%s" for filter "%s" is deprecated. Use Twig_SimpleFilter instead.', get_class($filter), $name), E_USER_DEPRECATED);
}
$this->filters[$name] = $filter;
}
foreach ($extension
->getFunctions() as $name => $function) {
if ($function instanceof Twig_SimpleFunction) {
$name = $function
->getName();
}
else {
@trigger_error(sprintf('Using an instance of "%s" for function "%s" is deprecated. Use Twig_SimpleFunction instead.', get_class($function), $name), E_USER_DEPRECATED);
}
$this->functions[$name] = $function;
}
foreach ($extension
->getTests() as $name => $test) {
if ($test instanceof Twig_SimpleTest) {
$name = $test
->getName();
}
else {
@trigger_error(sprintf('Using an instance of "%s" for test "%s" is deprecated. Use Twig_SimpleTest instead.', get_class($test), $name), E_USER_DEPRECATED);
}
$this->tests[$name] = $test;
}
foreach ($extension
->getTokenParsers() as $parser) {
if ($parser instanceof Twig_TokenParserInterface) {
$this->parsers
->addTokenParser($parser);
}
elseif ($parser instanceof Twig_TokenParserBrokerInterface) {
@trigger_error('Registering a Twig_TokenParserBrokerInterface instance is deprecated.', E_USER_DEPRECATED);
$this->parsers
->addTokenParserBroker($parser);
}
else {
throw new LogicException('getTokenParsers() must return an array of Twig_TokenParserInterface or Twig_TokenParserBrokerInterface instances');
}
}
foreach ($extension
->getNodeVisitors() as $visitor) {
$this->visitors[] = $visitor;
}
if ($operators = $extension
->getOperators()) {
if (2 !== count($operators)) {
throw new InvalidArgumentException(sprintf('"%s::getOperators()" does not return a valid operators array.', get_class($extension)));
}
$this->unaryOperators = array_merge($this->unaryOperators, $operators[0]);
$this->binaryOperators = array_merge($this->binaryOperators, $operators[1]);
}
}
protected function writeCacheFile($file, $content) {
$this->cache
->write($file, $content);
}
}