alter('theme_test_alter'). */ function test_theme_theme_test_alter_alter(&$data) { $data = 'test_theme_theme_test_alter_alter was invoked'; } /** * Implements hook_theme_suggestions_alter(). */ function test_theme_theme_suggestions_alter(array &$suggestions, array $variables, $hook) { \Drupal::messenger()->addStatus(__FUNCTION__ . '() executed.'); // Theme alter hooks run after module alter hooks, so add this theme // suggestion to the beginning of the array so that the suggestion added by // the theme_suggestions_test module can be picked up when that module is // enabled. if ($hook == 'theme_test_general_suggestions') { array_unshift($suggestions, 'theme_test_general_suggestions__' . 'theme_override'); } } /** * Implements hook_theme_suggestions_HOOK_alter(). */ function test_theme_theme_suggestions_theme_test_suggestions_alter(array &$suggestions, array $variables) { \Drupal::messenger()->addStatus(__FUNCTION__ . '() executed.'); // Theme alter hooks run after module alter hooks, so add this theme // suggestion to the beginning of the array so that the suggestion added by // the theme_suggestions_test module can be picked up when that module is // enabled. array_unshift($suggestions, 'theme_test_suggestions__' . 'theme_override'); } /** * Implements hook_theme_registry_alter(). */ function test_theme_theme_registry_alter(&$registry) { $registry['theme_test_template_test']['variables']['additional'] = 'value'; } /** * Tests a theme overriding a default hook with a suggestion. * * Implements hook_preprocess_HOOK(). */ function test_theme_preprocess_theme_test_preprocess_suggestions(&$variables) { $variables['foo'] = 'Theme hook implementor=test_theme_preprocess_theme_test_preprocess_suggestions().'; } /** * Tests a theme overriding a default hook with a suggestion. */ function test_theme_preprocess_theme_test_preprocess_suggestions__suggestion(&$variables) { $variables['foo'] = 'Suggestion'; } /** * Tests a theme overriding a default hook with a suggestion. */ function test_theme_preprocess_theme_test_preprocess_suggestions__kitten(&$variables) { $variables['foo'] = 'Kitten'; } /** * Tests a theme overriding a default hook with a suggestion. */ function test_theme_preprocess_theme_test_preprocess_suggestions__kitten__flamingo(&$variables) { $variables['bar'] = 'Flamingo'; } /** * Tests a preprocess function with suggestions. */ function test_theme_preprocess_theme_test_preprocess_suggestions__kitten__meerkat__tarsier__moose(&$variables) { $variables['bar'] = 'Moose'; } /** * Tests that a class can be loaded within a .theme file. */ function test_theme_preprocess_theme_test_theme_class(&$variables) { if (class_exists('\Drupal\test_theme\ThemeClass')) { $variables['message'] = 'Loading ThemeClass was successful.'; } else { $variables['message'] = 'Loading ThemeClass failed.'; } }