public function DbUpdateNegotiator::determineActiveTheme in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/system/src/Theme/DbUpdateNegotiator.php \Drupal\system\Theme\DbUpdateNegotiator::determineActiveTheme()
Determine the active theme for the request.
Parameters
\Drupal\Core\Routing\RouteMatchInterface $route_match: The current route match object.
Return value
string|null Returns the active theme name, else return NULL.
Overrides ThemeNegotiatorInterface::determineActiveTheme
File
- core/
modules/ system/ src/ Theme/ DbUpdateNegotiator.php, line 47 - Contains \Drupal\system\Theme\DbUpdateNegotiator.
Class
- DbUpdateNegotiator
- Sets the active theme for the database update pages.
Namespace
Drupal\system\ThemeCode
public function determineActiveTheme(RouteMatchInterface $route_match) {
$custom_theme = Settings::get('maintenance_theme', 'seven');
if (!$custom_theme) {
$config = $this->configFactory
->get('system.theme');
$custom_theme = $config
->get('default');
}
return $custom_theme;
}