public function AdminDemoNegotiator::applies in Drupal 9
Same name and namespace in other branches
- 8 core/modules/block/src/Theme/AdminDemoNegotiator.php \Drupal\block\Theme\AdminDemoNegotiator::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/ block/ src/ Theme/ AdminDemoNegotiator.php, line 16
Class
- AdminDemoNegotiator
- Negotiates the theme for the block admin demo page via the URL.
Namespace
Drupal\block\ThemeCode
public function applies(RouteMatchInterface $route_match) {
return $route_match
->getRouteName() == 'block.admin_demo';
}