public function Twig_TokenParser_AutoEscape::getTag

Gets the tag name associated with this token parser.

Return value

string The tag name

Overrides Twig_TokenParserInterface::getTag

1 call to Twig_TokenParser_AutoEscape::getTag()
Twig_TokenParser_AutoEscape::parse in drupal/core/vendor/twig/twig/lib/Twig/TokenParser/AutoEscape.php
Parses a token and returns a node.

File

drupal/core/vendor/twig/twig/lib/Twig/TokenParser/AutoEscape.php, line 84

Class

Twig_TokenParser_AutoEscape
Marks a section of a template to be escaped or not.

Code

public function getTag() {
  return 'autoescape';
}