class Twig_Node_SandboxedModule

Represents a module node.

@package twig @author Fabien Potencier <fabien@symfony.com>

Hierarchy

Expanded class hierarchy of Twig_Node_SandboxedModule

File

drupal/core/vendor/twig/twig/lib/Twig/Node/SandboxedModule.php, line 19

View source
class Twig_Node_SandboxedModule extends Twig_Node_Module {
  protected $usedFilters;
  protected $usedTags;
  protected $usedFunctions;
  public function __construct(Twig_Node_Module $node, array $usedFilters, array $usedTags, array $usedFunctions) {
    parent::__construct($node
      ->getNode('body'), $node
      ->getNode('parent'), $node
      ->getNode('blocks'), $node
      ->getNode('macros'), $node
      ->getNode('traits'), $node
      ->getAttribute('embedded_templates'), $node
      ->getAttribute('filename'), $node
      ->getLine(), $node
      ->getNodeTag());
    $this
      ->setAttribute('index', $node
      ->getAttribute('index'));
    $this->usedFilters = $usedFilters;
    $this->usedTags = $usedTags;
    $this->usedFunctions = $usedFunctions;
  }
  protected function compileDisplayBody(Twig_Compiler $compiler) {
    $compiler
      ->write("\$this->checkSecurity();\n");
    parent::compileDisplayBody($compiler);
  }
  protected function compileDisplayFooter(Twig_Compiler $compiler) {
    parent::compileDisplayFooter($compiler);
    $compiler
      ->write("protected function checkSecurity() {\n")
      ->indent()
      ->write("\$this->env->getExtension('sandbox')->checkSecurity(\n")
      ->indent()
      ->write(!$this->usedTags ? "array(),\n" : "array('" . implode('\', \'', $this->usedTags) . "'),\n")
      ->write(!$this->usedFilters ? "array(),\n" : "array('" . implode('\', \'', $this->usedFilters) . "'),\n")
      ->write(!$this->usedFunctions ? "array()\n" : "array('" . implode('\', \'', $this->usedFunctions) . "')\n")
      ->outdent()
      ->write(");\n")
      ->outdent()
      ->write("}\n\n");
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Twig_Node::$attributes protected property
Twig_Node::$lineno protected property
Twig_Node::$nodes protected property
Twig_Node::$tag protected property
Twig_Node::count public function
Twig_Node::getAttribute public function Gets an attribute.
Twig_Node::getIterator public function
Twig_Node::getLine public function Overrides Twig_NodeInterface::getLine
Twig_Node::getNode public function Gets a node by name.
Twig_Node::getNodeTag public function Overrides Twig_NodeInterface::getNodeTag
Twig_Node::hasAttribute public function Returns true if the attribute is defined.
Twig_Node::hasNode public function Returns true if the node with the given identifier exists.
Twig_Node::removeAttribute public function Removes an attribute.
Twig_Node::removeNode public function Removes a node by name.
Twig_Node::setAttribute public function Sets an attribute.
Twig_Node::setNode public function Sets a node.
Twig_Node::toXml public function
Twig_Node::__toString public function
Twig_Node_Module::compile public function Compiles the node to PHP. Overrides Twig_Node::compile
Twig_Node_Module::compileClassFooter protected function
Twig_Node_Module::compileClassHeader protected function
Twig_Node_Module::compileConstructor protected function
Twig_Node_Module::compileDebugInfo protected function
Twig_Node_Module::compileDisplayHeader protected function
Twig_Node_Module::compileGetParent protected function
Twig_Node_Module::compileGetTemplateName protected function
Twig_Node_Module::compileIsTraitable protected function
Twig_Node_Module::compileLoadTemplate protected function
Twig_Node_Module::compileMacros protected function
Twig_Node_Module::compileTemplate protected function
Twig_Node_Module::setIndex public function
Twig_Node_SandboxedModule::$usedFilters protected property
Twig_Node_SandboxedModule::$usedFunctions protected property
Twig_Node_SandboxedModule::$usedTags protected property
Twig_Node_SandboxedModule::compileDisplayBody protected function Overrides Twig_Node_Module::compileDisplayBody
Twig_Node_SandboxedModule::compileDisplayFooter protected function Overrides Twig_Node_Module::compileDisplayFooter
Twig_Node_SandboxedModule::__construct public function Constructor. Overrides Twig_Node_Module::__construct