You are here

function theme_test_theme_suggestions_theme_test_preprocess_suggestions in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/theme_test/theme_test.module \theme_test_theme_suggestions_theme_test_preprocess_suggestions()

Implements hook_theme_suggestions_HOOK().

File

core/modules/system/tests/modules/theme_test/theme_test.module, line 83
Test module.

Code

function theme_test_theme_suggestions_theme_test_preprocess_suggestions($variables) {
  return [
    'theme_test_preprocess_suggestions__' . $variables['foo'],
  ];
}