You are here

public function DefaultNegotiator::determineActiveTheme in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Theme/DefaultNegotiator.php \Drupal\Core\Theme\DefaultNegotiator::determineActiveTheme()

Determine the active theme for the request.

Parameters

\Drupal\Core\Routing\RouteMatchInterface $route_match: The current route match object.

Return value

string|null The name of the theme, or NULL if other negotiators, like the configured default one, should be used instead.

Overrides ThemeNegotiatorInterface::determineActiveTheme

File

core/lib/Drupal/Core/Theme/DefaultNegotiator.php, line 40

Class

DefaultNegotiator
Determines the default theme of the site.

Namespace

Drupal\Core\Theme

Code

public function determineActiveTheme(RouteMatchInterface $route_match) {
  return $this->configFactory
    ->get('system.theme')
    ->get('default');
}