Compiles the node to PHP.
Twig_Compiler A Twig_Compiler instance:
Overrides Twig_Node::compile
public function compile(Twig_Compiler $compiler) {
$compiler
->addDebugInfo($this);
if (count($this
->getNode('names')) > 1) {
$compiler
->write('list(');
foreach ($this
->getNode('names') as $idx => $node) {
if ($idx) {
$compiler
->raw(', ');
}
$compiler
->subcompile($node);
}
$compiler
->raw(')');
}
else {
if ($this
->getAttribute('capture')) {
$compiler
->write("ob_start();\n")
->subcompile($this
->getNode('values'));
}
$compiler
->subcompile($this
->getNode('names'), false);
if ($this
->getAttribute('capture')) {
$compiler
->raw(" = ('' === \$tmp = ob_get_clean()) ? '' : new Twig_Markup(\$tmp, \$this->env->getCharset())");
}
}
if (!$this
->getAttribute('capture')) {
$compiler
->raw(' = ');
if (count($this
->getNode('names')) > 1) {
$compiler
->write('array(');
foreach ($this
->getNode('values') as $idx => $value) {
if ($idx) {
$compiler
->raw(', ');
}
$compiler
->subcompile($value);
}
$compiler
->raw(')');
}
else {
if ($this
->getAttribute('safe')) {
$compiler
->raw("('' === \$tmp = ")
->subcompile($this
->getNode('values'))
->raw(") ? '' : new Twig_Markup(\$tmp, \$this->env->getCharset())");
}
else {
$compiler
->subcompile($this
->getNode('values'));
}
}
}
$compiler
->raw(";\n");
}