PEEL Shopping
Open source ecommerce : PEEL Shopping
Import.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of Twig.
5  *
6  * (c) 2009 Fabien Potencier
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11 
18 {
19  public function __construct(Twig_Node_Expression $expr, Twig_Node_Expression $var, $lineno, $tag = null)
20  {
21  parent::__construct(array('expr' => $expr, 'var' => $var), array(), $lineno, $tag);
22  }
23 
29  public function compile(Twig_Compiler $compiler)
30  {
31  $compiler
32  ->addDebugInfo($this)
33  ->write('')
34  ->subcompile($this->getNode('var'))
35  ->raw(' = ')
36  ;
37 
38  if ($this->getNode('expr') instanceof Twig_Node_Expression_Name && '_self' === $this->getNode('expr')->getAttribute('name')) {
39  $compiler->raw("\$this");
40  } else {
41  $compiler
42  ->raw('$this->env->loadTemplate(')
43  ->subcompile($this->getNode('expr'))
44  ->raw(")")
45  ;
46  }
47 
48  $compiler->raw(";\n");
49  }
50 }
__construct(Twig_Node_Expression $expr, Twig_Node_Expression $var, $lineno, $tag=null)
Definition: Import.php:19
Compiles a node to PHP code.
Definition: Compiler.php:18
Represents a node in the AST.
Definition: Node.php:18
getAttribute($name)
Gets an attribute.
Definition: Node.php:138
$lineno
Definition: Node.php:22
addDebugInfo(Twig_NodeInterface $node)
Adds debugging information.
Definition: Compiler.php:207
compile(Twig_Compiler $compiler)
Compiles the node to PHP.
Definition: Import.php:29
Abstract class for all nodes that represents an expression.
Definition: Expression.php:18
Represents an import node.
Definition: Import.php:17
raw($string)
Adds a raw string to the compiled code.
Definition: Compiler.php:109
getNode($name)
Gets a node by name.
Definition: Node.php:187

This documentation for Open ecommerce PEEL Shopping and PEEL.fr has been generated by Doxygen on Thu Oct 15 2015 14:41:19 - Peel ecommerce is a product of Agence web Advisto SAS. All rights reserved.