30 lines
990 B
PHP
Executable File
30 lines
990 B
PHP
Executable File
<?php
|
|
|
|
namespace Phive\Twig\Extensions\Deferred;
|
|
|
|
class DeferredBlockNode extends \Twig_Node_Block
|
|
{
|
|
public function compile(\Twig_Compiler $compiler)
|
|
{
|
|
$name = $this->getAttribute('name');
|
|
|
|
$compiler
|
|
->write("public function block_$name(\$context, array \$blocks = array())\n", "{\n")
|
|
->indent()
|
|
->write("\$this->env->getExtension('Phive\\Twig\\Extensions\\Deferred\\DeferredExtension')->defer(\$this, '$name');\n")
|
|
->outdent()
|
|
->write("}\n\n")
|
|
;
|
|
|
|
$compiler
|
|
->addDebugInfo($this)
|
|
->write("public function block_{$name}_deferred(\$context, array \$blocks = array())\n", "{\n")
|
|
->indent()
|
|
->subcompile($this->getNode('body'))
|
|
->write("\$this->env->getExtension('Phive\\Twig\\Extensions\\Deferred\\DeferredExtension')->resolve(\$this, \$context, \$blocks);\n")
|
|
->outdent()
|
|
->write("}\n\n")
|
|
;
|
|
}
|
|
}
|