From: Fabien Potencier Date: Fri, 4 May 2012 06:00:53 +0000 (+0200) Subject: enforced interface when adding tests, filters, functions, and node visitors from... X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=db32d5ef431c868aaeabbb3d7d7cfe319fe4d562;p=konrad%2Ftwig.git enforced interface when adding tests, filters, functions, and node visitors from extensions This avoids some hard to find bugs where you use a Twig_Function_Method for instance for a filter. This is hard to find because the interface is almost the same but the getSafe() contract is not the same. --- diff --git a/CHANGELOG b/CHANGELOG index 355e69c..c244d30 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,6 @@ * 1.8.0 (2012-XX-XX) + * enforced interface when adding tests, filters, functions, and node visitors from extensions * fixed a side-effect of the date filter where the timezone might be changed * simplified usage of the autoescape tag; the only (optional) argument is now the escaping strategy or false (with a BC layer) * added a way to dynamically change the auto-escaping strategy according to the template "filename" diff --git a/lib/Twig/Environment.php b/lib/Twig/Environment.php index 8026e72..a290db8 100644 --- a/lib/Twig/Environment.php +++ b/lib/Twig/Environment.php @@ -113,6 +113,14 @@ class Twig_Environment $this->setCache($options['cache']); $this->functionCallbacks = array(); $this->filterCallbacks = array(); + $this->staging = array( + 'functions' => array(), + 'filters' => array(), + 'tests' => array(), + 'token_parsers' => array(), + 'visitors' => array(), + 'globals' => array(), + ); } /** @@ -751,10 +759,13 @@ class Twig_Environment public function getNodeVisitors() { if (null === $this->visitors) { - $this->visitors = isset($this->staging['visitors']) ? $this->staging['visitors'] : array(); foreach ($this->getExtensions() as $extension) { - $this->visitors = array_merge($this->visitors, $extension->getNodeVisitors()); + foreach ($extension->getNodeVisitors() as $visitor) { + $this->addNodeVisitor($visitor); + } } + + $this->visitors = $this->staging['visitors']; } return $this->visitors; @@ -831,10 +842,13 @@ class Twig_Environment public function getFilters() { if (null === $this->filters) { - $this->filters = isset($this->staging['filters']) ? $this->staging['filters'] : array(); foreach ($this->getExtensions() as $extension) { - $this->filters = array_merge($this->filters, $extension->getFilters()); + foreach ($extension->getFilters() as $name => $filter) { + $this->addFilter($name, $filter); + } } + + $this->filters = $this->staging['filters']; } return $this->filters; @@ -860,10 +874,13 @@ class Twig_Environment public function getTests() { if (null === $this->tests) { - $this->tests = isset($this->staging['tests']) ? $this->staging['tests'] : array(); foreach ($this->getExtensions() as $extension) { - $this->tests = array_merge($this->tests, $extension->getTests()); + foreach ($extension->getTests() as $name => $test) { + $this->addTest($name, $test); + } } + + $this->tests = $this->staging['tests']; } return $this->tests; @@ -940,10 +957,13 @@ class Twig_Environment public function getFunctions() { if (null === $this->functions) { - $this->functions = isset($this->staging['functions']) ? $this->staging['functions'] : array(); foreach ($this->getExtensions() as $extension) { - $this->functions = array_merge($this->functions, $extension->getFunctions()); + foreach ($extension->getFunctions() as $name => $function) { + $this->addFunction($name, $function); + } } + + $this->functions = $this->staging['functions']; } return $this->functions;