You are here

public function DbUpdateNegotiator::applies in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/src/Theme/DbUpdateNegotiator.php \Drupal\system\Theme\DbUpdateNegotiator::applies()
  2. 9 core/modules/system/src/Theme/DbUpdateNegotiator.php \Drupal\system\Theme\DbUpdateNegotiator::applies()

Whether this theme negotiator should be used to set the theme.

Parameters

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

Return value

bool TRUE if this negotiator should be used or FALSE to let other negotiators decide.

Overrides ThemeNegotiatorInterface::applies

File

core/modules/system/src/Theme/DbUpdateNegotiator.php, line 46

Class

DbUpdateNegotiator
Sets the active theme for the database update pages.

Namespace

Drupal\system\Theme

Code

public function applies(RouteMatchInterface $route_match) {
  return $route_match
    ->getRouteName() == 'system.db_update';
}