public function Twig_Template::getBlockNames in Translation template extractor 7.3
Same name and namespace in other branches
- 6.3 vendor/Twig/Template.php \Twig_Template::getBlockNames()
Returns all block names.
This method is for internal use only and should never be called directly.
@internal
Return value
array An array of block names
See also
hasBlock
File
- vendor/
Twig/ Template.php, line 270
Class
- Twig_Template
- Default base class for compiled templates.
Code
public function getBlockNames() {
return array_keys($this->blocks);
}