protected function Twig_Node_Embed::addGetTemplate

Overrides Twig_Node_Include::addGetTemplate

File

drupal/core/vendor/twig/twig/lib/Twig/Node/Embed.php, line 29

Class

Twig_Node_Embed
Represents an embed node.

Code

protected function addGetTemplate(Twig_Compiler $compiler) {
  $compiler
    ->write("\$this->env->loadTemplate(")
    ->string($this
    ->getAttribute('filename'))
    ->raw(', ')
    ->string($this
    ->getAttribute('index'))
    ->raw(")");
}