You are here

public function HighPriorityThemeNegotiator::applies in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/theme_test/src/Theme/HighPriorityThemeNegotiator.php \Drupal\theme_test\Theme\HighPriorityThemeNegotiator::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/tests/modules/theme_test/src/Theme/HighPriorityThemeNegotiator.php, line 16

Class

HighPriorityThemeNegotiator
Implements a test theme negotiator which was configured with a high priority.

Namespace

Drupal\theme_test\Theme

Code

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