function TwigExtension::__construct
Constructs \Drupal\Core\Template\TwigExtension.
Parameters
\Drupal\Core\Render\RendererInterface $renderer: The renderer.
\Drupal\Core\Routing\UrlGeneratorInterface $url_generator: The URL generator.
\Drupal\Core\Theme\ThemeManagerInterface $theme_manager: The theme manager.
\Drupal\Core\Datetime\DateFormatterInterface $date_formatter: The date formatter.
\Drupal\Core\File\FileUrlGeneratorInterface $file_url_generator: The file URL generator.
File
- 
              core/
lib/ Drupal/ Core/ Template/ TwigExtension.php, line 87  
Class
- TwigExtension
 - A class providing Drupal Twig extensions.
 
Namespace
Drupal\Core\TemplateCode
public function __construct(RendererInterface $renderer, UrlGeneratorInterface $url_generator, ThemeManagerInterface $theme_manager, DateFormatterInterface $date_formatter, FileUrlGeneratorInterface $file_url_generator) {
  $this->renderer = $renderer;
  $this->urlGenerator = $url_generator;
  $this->themeManager = $theme_manager;
  $this->dateFormatter = $date_formatter;
  $this->fileUrlGenerator = $file_url_generator;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.