You are here

public function Twig_TokenParser_Block::getTag in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/twig/twig/lib/Twig/TokenParser/Block.php \Twig_TokenParser_Block::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_Block::getTag()
Twig_TokenParser_Block::parse in vendor/twig/twig/lib/Twig/TokenParser/Block.php
Parses a token and returns a node.

File

vendor/twig/twig/lib/Twig/TokenParser/Block.php, line 65

Class

Twig_TokenParser_Block
Marks a section of a template as being reusable.

Code

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