function ThemeNegotiator::__construct

Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Theme/ThemeNegotiator.php \Drupal\Core\Theme\ThemeNegotiator::__construct()
  2. 10 core/lib/Drupal/Core/Theme/ThemeNegotiator.php \Drupal\Core\Theme\ThemeNegotiator::__construct()
  3. 11.x core/lib/Drupal/Core/Theme/ThemeNegotiator.php \Drupal\Core\Theme\ThemeNegotiator::__construct()

Constructs a new ThemeNegotiator.

Parameters

\Drupal\Core\Theme\ThemeAccessCheck $theme_access: The access checker for themes.

\Drupal\Core\DependencyInjection\ClassResolverInterface $class_resolver: The class resolver.

string[] $negotiators: An array of negotiator IDs.

File

core/lib/Drupal/Core/Theme/ThemeNegotiator.php, line 47

Class

ThemeNegotiator
Provides a class which determines the active theme of the page.

Namespace

Drupal\Core\Theme

Code

public function __construct(ThemeAccessCheck $theme_access, ClassResolverInterface $class_resolver, array $negotiators) {
    $this->themeAccess = $theme_access;
    $this->negotiators = $negotiators;
    $this->classResolver = $class_resolver;
}

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