You are here

function theme_theme_test_suggestions_include in Drupal 8

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

Returns HTML for a theme function include test.

1 string reference to 'theme_theme_test_suggestions_include'
theme_legacy_test_theme in core/modules/system/tests/modules/theme_legacy_test/theme_legacy_test.module
Implements hook_theme().
1 theme call to theme_theme_test_suggestions_include()
ThemeTestController::suggestionAlterInclude in core/modules/system/tests/modules/theme_legacy_test/src/ThemeTestController.php
Menu callback for testing includes with suggestion alter hooks.

File

core/modules/system/tests/modules/theme_legacy_test/theme_legacy_test.module, line 113
Test module for legacy theme functions.

Code

function theme_theme_test_suggestions_include($variables) {
  return 'Original function before altering theme suggestions.';
}