public function Twig_Template::getBlockNames

Returns all block names.

This method is for internal use only and should never be called directly.

Return value

array An array of block names

See also

hasBlock

File

drupal/core/vendor/twig/twig/lib/Twig/Template.php, line 214

Class

Twig_Template
Default base class for compiled templates.

Code

public function getBlockNames() {
  return array_keys($this->blocks);
}