test_legacy_theme.theme in Drupal 8
Same filename and directory in other branches
Theme to test functionality of legacy theme functions.
@todo Remove in https://www.drupal.org/project/drupal/issues/3097889
File
core/modules/system/tests/themes/test_legacy_theme/test_legacy_theme.themeView source
<?php
/**
* @file
* Theme to test functionality of legacy theme functions.
*
* @todo Remove in https://www.drupal.org/project/drupal/issues/3097889
*/
/**
* Tests a theme overriding a suggestion of a base theme hook.
*/
function test_legacy_theme_theme_test_preprocess_suggestions__kitten__meerkat($variables) {
return 'Theme hook implementor=test_theme_theme_test__suggestion(). Foo=' . $variables['foo'];
}
/**
* Implements hook_theme_suggestions_HOOK_alter().
*/
function test_legacy_theme_theme_suggestions_theme_test_function_suggestions_alter(array &$suggestions, array $variables) {
// 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_function_suggestions__' . 'theme_override');
}
/**
* Returns HTML for a theme function suggestion test.
*
* Implements the theme_test_function_suggestions__theme_override suggestion.
*/
function test_legacy_theme_theme_test_function_suggestions__theme_override($variables) {
return 'Theme function overridden based on new theme suggestion provided by the test_legacy_theme theme.';
}
/**
* Returns HTML for a theme function suggestion test.
*
* Implements the theme_test_function_suggestions__module_override suggestion.
*/
function test_legacy_theme_theme_test_function_suggestions__module_override($variables) {
return 'Theme function overridden based on new theme suggestion provided by a module.';
}
Functions
Name | Description |
---|---|
test_legacy_theme_theme_suggestions_theme_test_function_suggestions_alter | Implements hook_theme_suggestions_HOOK_alter(). |
test_legacy_theme_theme_test_function_suggestions__module_override | Returns HTML for a theme function suggestion test. |
test_legacy_theme_theme_test_function_suggestions__theme_override | Returns HTML for a theme function suggestion test. |
test_legacy_theme_theme_test_preprocess_suggestions__kitten__meerkat | Tests a theme overriding a suggestion of a base theme hook. |