function 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 11  
Code
function theme_suggestions_test_theme_suggestions_alter(array &$suggestions, array $variables, $hook) {
  \Drupal::messenger()->addStatus(__FUNCTION__ . '() executed.');
  if ($hook == 'theme_test_general_suggestions') {
    $suggestions[] = $hook . '__module_override';
  }
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.