Embed.php in Zircon Profile 8.0
File
vendor/twig/twig/lib/Twig/Node/Embed.php
View source
<?php
class Twig_Node_Embed extends Twig_Node_Include {
public function __construct($filename, $index, Twig_Node_Expression $variables = null, $only = false, $ignoreMissing = false, $lineno, $tag = null) {
parent::__construct(new Twig_Node_Expression_Constant('not_used', $lineno), $variables, $only, $ignoreMissing, $lineno, $tag);
$this
->setAttribute('filename', $filename);
$this
->setAttribute('index', $index);
}
protected function addGetTemplate(Twig_Compiler $compiler) {
$compiler
->write('$this->loadTemplate(')
->string($this
->getAttribute('filename'))
->raw(', ')
->repr($compiler
->getFilename())
->raw(', ')
->repr($this
->getLine())
->raw(', ')
->string($this
->getAttribute('index'))
->raw(')');
}
}