You are here

public function Twig_TokenParser_Include::getTag in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/twig/twig/lib/Twig/TokenParser/Include.php \Twig_TokenParser_Include::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_Include::getTag()
Twig_TokenParser_Include::parse in vendor/twig/twig/lib/Twig/TokenParser/Include.php
Parses a token and returns a node.
1 method overrides Twig_TokenParser_Include::getTag()
Twig_TokenParser_Embed::getTag in vendor/twig/twig/lib/Twig/TokenParser/Embed.php
Gets the tag name associated with this token parser.

File

vendor/twig/twig/lib/Twig/TokenParser/Include.php, line 59

Class

Twig_TokenParser_Include
Includes a template.

Code

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