public function Twig_Node_Block::compile

Compiles the node to PHP.

Parameters

Twig_Compiler A Twig_Compiler instance:

Overrides Twig_Node::compile

File

drupal/core/vendor/twig/twig/lib/Twig/Node/Block.php, line 31

Class

Twig_Node_Block
Represents a block node.

Code

public function compile(Twig_Compiler $compiler) {
  $compiler
    ->addDebugInfo($this)
    ->write(sprintf("public function block_%s(\$context, array \$blocks = array())\n", $this
    ->getAttribute('name')), "{\n")
    ->indent();
  $compiler
    ->subcompile($this
    ->getNode('body'))
    ->outdent()
    ->write("}\n\n");
}