You are here

public function TwigNodeTrans::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Template/TwigNodeTrans.php \Drupal\Core\Template\TwigNodeTrans::__construct()

File

core/lib/Drupal/Core/Template/TwigNodeTrans.php, line 25
Contains \Drupal\Core\Template\TwigNodeTrans.

Class

TwigNodeTrans
A class that defines the Twig 'trans' tag for Drupal.

Namespace

Drupal\Core\Template

Code

public function __construct(\Twig_Node $body, \Twig_Node $plural = NULL, \Twig_Node_Expression $count = NULL, \Twig_Node_Expression $options = NULL, $lineno, $tag = NULL) {
  parent::__construct(array(
    'count' => $count,
    'body' => $body,
    'plural' => $plural,
    'options' => $options,
  ), array(), $lineno, $tag);
}