TwigNodeCheckDeprecations.php

Same filename and directory in other branches
  1. 10 core/lib/Drupal/Core/Template/TwigNodeCheckDeprecations.php

Namespace

Drupal\Core\Template

File

core/lib/Drupal/Core/Template/TwigNodeCheckDeprecations.php

View source
<?php

namespace Drupal\Core\Template;

use Twig\Compiler;
use Twig\Node\Expression\ArrayExpression;
use Twig\Node\Expression\ConstantExpression;
use Twig\Node\Node;

/**
 * A node that checks deprecated variable usage.
 *
 * @see \Drupal\Core\Template\TwigNodeVisitorCheckDeprecations
 * @see \Drupal\Core\Template\TwigExtension::checkDeprecations()
 */
class TwigNodeCheckDeprecations extends Node {
    
    /**
     * The named variables used in the template.
     */
    protected array $usedNames = [];
    
    /**
     * {@inheritdoc}
     */
    public function __construct(array $usedNames) {
        $this->usedNames = $usedNames;
        parent::__construct();
    }
    
    /**
     * {@inheritdoc}
     */
    public function compile(Compiler $compiler) {
        $usedNamesNode = new ArrayExpression([], $this->getTemplateLine());
        foreach ($this->usedNames as $name) {
            $usedNamesNode->addElement(new ConstantExpression($name, $this->getTemplateLine()));
        }
        $compiler->write("\$this->env->getExtension('\\Drupal\\Core\\Template\\TwigExtension')\n");
        $compiler->indent();
        $compiler->write("->checkDeprecations(\$context, ");
        $compiler->subcompile($usedNamesNode);
        $compiler->raw(");");
        $compiler->outdent();
    }

}

Classes

Title Deprecated Summary
TwigNodeCheckDeprecations A node that checks deprecated variable usage.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.