Base class for all token parsers.
@package twig @author Fabien Potencier <fabien@symfony.com>
Expanded class hierarchy of Twig_TokenParser
abstract class Twig_TokenParser implements Twig_TokenParserInterface {
/**
* @var Twig_Parser
*/
protected $parser;
/**
* Sets the parser associated with this token parser
*
* @param $parser A Twig_Parser instance
*/
public function setParser(Twig_Parser $parser) {
$this->parser = $parser;
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Twig_TokenParser:: |
protected | property | ||
Twig_TokenParser:: |
public | function |
Sets the parser associated with this token parser Overrides Twig_TokenParserInterface:: |
|
Twig_TokenParserInterface:: |
function | Gets the tag name associated with this token parser. | 18 | |
Twig_TokenParserInterface:: |
function | Parses a token and returns a node. | 18 |