PATH:
home
/
letacommog
/
letaweb
/
admin
/
classes
/
twig
/
lib
/
Twig
<?php /* * This file is part of Twig. * * (c) 2010 Fabien Potencier * (c) 2010 Arnaud Le Blanc * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Default implementation of a token parser broker. * * @author Arnaud Le Blanc <arnaud.lb@gmail.com> * * @deprecated since 1.12 (to be removed in 2.0) */ class Twig_TokenParserBroker implements Twig_TokenParserBrokerInterface { protected $parser; protected $parsers = array(); protected $brokers = array(); /** * Constructor. * * @param array|Traversable $parsers A Traversable of Twig_TokenParserInterface instances * @param array|Traversable $brokers A Traversable of Twig_TokenParserBrokerInterface instances * @param bool $triggerDeprecationError */ public function __construct($parsers = array(), $brokers = array(), $triggerDeprecationError = true) { if ($triggerDeprecationError) { @trigger_error('The '.__CLASS__.' class is deprecated since version 1.12 and will be removed in 2.0.', E_USER_DEPRECATED); } foreach ($parsers as $parser) { if (!$parser instanceof Twig_TokenParserInterface) { throw new LogicException('$parsers must a an array of Twig_TokenParserInterface.'); } $this->parsers[$parser->getTag()] = $parser; } foreach ($brokers as $broker) { if (!$broker instanceof Twig_TokenParserBrokerInterface) { throw new LogicException('$brokers must a an array of Twig_TokenParserBrokerInterface.'); } $this->brokers[] = $broker; } } /** * Adds a TokenParser. * * @param Twig_TokenParserInterface $parser A Twig_TokenParserInterface instance */ public function addTokenParser(Twig_TokenParserInterface $parser) { $this->parsers[$parser->getTag()] = $parser; } /** * Removes a TokenParser. * * @param Twig_TokenParserInterface $parser A Twig_TokenParserInterface instance */ public function removeTokenParser(Twig_TokenParserInterface $parser) { $name = $parser->getTag(); if (isset($this->parsers[$name]) && $parser === $this->parsers[$name]) { unset($this->parsers[$name]); } } /** * Adds a TokenParserBroker. * * @param Twig_TokenParserBroker $broker A Twig_TokenParserBroker instance */ public function addTokenParserBroker(Twig_TokenParserBroker $broker) { $this->brokers[] = $broker; } /** * Removes a TokenParserBroker. * * @param Twig_TokenParserBroker $broker A Twig_TokenParserBroker instance */ public function removeTokenParserBroker(Twig_TokenParserBroker $broker) { if (false !== $pos = array_search($broker, $this->brokers)) { unset($this->brokers[$pos]); } } /** * Gets a suitable TokenParser for a tag. * * First looks in parsers, then in brokers. * * @param string $tag A tag name * * @return null|Twig_TokenParserInterface A Twig_TokenParserInterface or null if no suitable TokenParser was found */ public function getTokenParser($tag) { if (isset($this->parsers[$tag])) { return $this->parsers[$tag]; } $broker = end($this->brokers); while (false !== $broker) { $parser = $broker->getTokenParser($tag); if (null !== $parser) { return $parser; } $broker = prev($this->brokers); } } public function getParsers() { return $this->parsers; } public function getParser() { return $this->parser; } public function setParser(Twig_ParserInterface $parser) { $this->parser = $parser; foreach ($this->parsers as $tokenParser) { $tokenParser->setParser($parser); } foreach ($this->brokers as $broker) { $broker->setParser($parser); } } }
[+]
..
[+]
Cache
[-] TokenParserInterface.php
[edit]
[-] NodeTraverser.php
[edit]
[-] TokenParserBroker.php
[edit]
[-] TokenParser.php
[edit]
[-] Markup.php
[edit]
[-] Parser.php
[edit]
[-] TokenParserBrokerInterface.php
[edit]
[-] ParserInterface.php
[edit]
[-] FunctionInterface.php
[edit]
[-] NodeOutputInterface.php
[edit]
[-] NodeVisitorInterface.php
[edit]
[+]
Test
[-] TestCallableInterface.php
[edit]
[-] FunctionCallableInterface.php
[edit]
[-] TokenStream.php
[edit]
[-] Environment.php
[edit]
[-] Extension.php
[edit]
[+]
NodeVisitor
[-] Test.php
[edit]
[-] CacheInterface.php
[edit]
[+]
Loader
[-] ExpressionParser.php
[edit]
[-] Template.php
[edit]
[-] SimpleFilter.php
[edit]
[+]
Sandbox
[-] FileExtensionEscapingStrategy.php
[edit]
[-] BaseNodeVisitor.php
[edit]
[+]
Function
[+]
Node
[-] CompilerInterface.php
[edit]
[-] Lexer.php
[edit]
[-] Node.php
[edit]
[+]
Extension
[-] TestInterface.php
[edit]
[-] Filter.php
[edit]
[-] SimpleTest.php
[edit]
[-] LoaderInterface.php
[edit]
[+]
Error
[+]
Filter
[-] LexerInterface.php
[edit]
[-] NodeInterface.php
[edit]
[+]
Profiler
[+]
TokenParser
[+]
Util
[-] TemplateInterface.php
[edit]
[-] SimpleFunction.php
[edit]
[-] FilterCallableInterface.php
[edit]
[-] Token.php
[edit]
[-] Error.php
[edit]
[-] ExistsLoaderInterface.php
[edit]
[-] Function.php
[edit]
[-] FilterInterface.php
[edit]
[-] Compiler.php
[edit]
[-] Autoloader.php
[edit]
[-] ExtensionInterface.php
[edit]