leftypol/inc/lib/Twig/TokenParserBrokerInterface.php

46 lines
1.2 KiB
PHP
Raw Normal View History

2011-10-05 04:22:53 +00:00
<?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.
*/
/**
* Interface implemented by token parser brokers.
*
* Token parser brokers allows to implement custom logic in the process of resolving a token parser for a given tag name.
*
2013-08-01 19:20:12 +00:00
* @author Arnaud Le Blanc <arnaud.lb@gmail.com>
* @deprecated since 1.12 (to be removed in 2.0)
2011-10-05 04:22:53 +00:00
*/
interface Twig_TokenParserBrokerInterface
{
/**
* Gets a TokenParser suitable for a tag.
*
2013-08-01 19:20:12 +00:00
* @param string $tag A tag name
2011-10-05 04:22:53 +00:00
*
* @return null|Twig_TokenParserInterface A Twig_TokenParserInterface or null if no suitable TokenParser was found
*/
2013-08-01 19:20:12 +00:00
public function getTokenParser($tag);
2011-10-05 04:22:53 +00:00
/**
* Calls Twig_TokenParserInterface::setParser on all parsers the implementation knows of.
*
* @param Twig_ParserInterface $parser A Twig_ParserInterface interface
*/
2013-08-01 19:20:12 +00:00
public function setParser(Twig_ParserInterface $parser);
2011-10-05 04:22:53 +00:00
/**
* Gets the Twig_ParserInterface.
*
2013-08-01 19:20:12 +00:00
* @return null|Twig_ParserInterface A Twig_ParserInterface instance or null
2011-10-05 04:22:53 +00:00
*/
2013-08-01 19:20:12 +00:00
public function getParser();
2011-10-05 04:22:53 +00:00
}