public function ThemeTestController::preprocessSuggestions 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::preprocessSuggestions()
Controller for testing preprocess functions with theme suggestions.
1 string reference to 'ThemeTestController::preprocessSuggestions'
- 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 149 - Contains \Drupal\theme_test\ThemeTestController.
Class
- ThemeTestController
- Controller routines for theme test routes.
Namespace
Drupal\theme_testCode
public function preprocessSuggestions() {
return [
[
'#theme' => 'theme_test_preprocess_suggestions',
'#foo' => 'suggestion',
],
[
'#theme' => 'theme_test_preprocess_suggestions',
'#foo' => 'kitten',
],
[
'#theme' => 'theme_test_preprocess_suggestions',
'#foo' => 'monkey',
],
[
'#theme' => 'theme_test_preprocess_suggestions__kitten__flamingo',
],
];
}