function ThemeTestSubscriber::onView
Same name in other branches
- 9 core/modules/system/tests/modules/theme_test/src/EventSubscriber/ThemeTestSubscriber.php \Drupal\theme_test\EventSubscriber\ThemeTestSubscriber::onView()
- 10 core/modules/system/tests/modules/theme_test/src/EventSubscriber/ThemeTestSubscriber.php \Drupal\theme_test\EventSubscriber\ThemeTestSubscriber::onView()
- 11.x core/modules/system/tests/modules/theme_test/src/EventSubscriber/ThemeTestSubscriber.php \Drupal\theme_test\EventSubscriber\ThemeTestSubscriber::onView()
Ensures that the theme registry was not initialized.
File
-
core/
modules/ system/ tests/ modules/ theme_test/ src/ EventSubscriber/ ThemeTestSubscriber.php, line 79
Class
- ThemeTestSubscriber
- Theme test subscriber for controller requests.
Namespace
Drupal\theme_test\EventSubscriberCode
public function onView(GetResponseEvent $event) {
$current_route = $this->currentRouteMatch
->getRouteName();
$entity_autocomplete_route = [
'system.entity_autocomplete',
];
if (in_array($current_route, $entity_autocomplete_route)) {
if ($this->container
->initialized('theme.registry')) {
throw new \Exception('registry initialized');
}
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.