You are here

function theme_suggestions_test_theme_suggestions_alter in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/theme_suggestions_test/theme_suggestions_test.module \theme_suggestions_test_theme_suggestions_alter()

Implements hook_theme_suggestions_alter().

File

core/modules/system/tests/modules/theme_suggestions_test/theme_suggestions_test.module, line 23
Support module for testing theme suggestions.

Code

function theme_suggestions_test_theme_suggestions_alter(array &$suggestions, array $variables, $hook) {
  drupal_set_message(__FUNCTION__ . '() executed.');
  if ($hook == 'theme_test_general_suggestions') {
    $suggestions[] = $hook . '__module_override';
  }
}