public function ThemeTestController::nonHtml in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/system/tests/modules/theme_test/src/ThemeTestController.php \Drupal\theme_test\ThemeTestController::nonHtml()
Controller to ensure that no theme is initialized.
Return value
\Symfony\Component\HttpFoundation\JsonResponse The json response with the theme initialized information.
1 string reference to 'ThemeTestController::nonHtml'
- theme_test.routing.yml in core/
modules/ system/ tests/ modules/ theme_test/ theme_test.routing.yml - core/modules/system/tests/modules/theme_test/theme_test.routing.yml
File
- core/
modules/ system/ tests/ modules/ theme_test/ src/ ThemeTestController.php, line 141 - Contains \Drupal\theme_test\ThemeTestController.
Class
- ThemeTestController
- Controller routines for theme test routes.
Namespace
Drupal\theme_testCode
public function nonHtml() {
$theme_initialized = \Drupal::theme()
->hasActiveTheme();
return new JsonResponse([
'theme_initialized' => $theme_initialized,
]);
}