BatchNegotiator::applies

public BatchNegotiator::applies(RouteMatchInterface $route_match)

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/BatchNegotiator.php, line 45

Class

BatchNegotiator
Sets the active theme for the batch page.

Namespace

Drupal\system\Theme

Code

1
2
3
public function applies(RouteMatchInterface $route_match) {
  return $route_match->getRouteName() == 'system.batch_page';
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.