function DbUpdateNegotiator::determineActiveTheme
Same name in other branches
- 9 core/modules/system/src/Theme/DbUpdateNegotiator.php \Drupal\system\Theme\DbUpdateNegotiator::determineActiveTheme()
- 10 core/modules/system/src/Theme/DbUpdateNegotiator.php \Drupal\system\Theme\DbUpdateNegotiator::determineActiveTheme()
- 11.x core/modules/system/src/Theme/DbUpdateNegotiator.php \Drupal\system\Theme\DbUpdateNegotiator::determineActiveTheme()
Overrides ThemeNegotiatorInterface::determineActiveTheme
File
-
core/
modules/ system/ src/ Theme/ DbUpdateNegotiator.php, line 42
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.