You are here

function theme_theme_test_function_suggestions in Zircon Profile 8

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

Returns HTML for a theme function suggestion test.

2 string references to 'theme_theme_test_function_suggestions'
RegistryTest::testGetRegistryForModule in core/tests/Drupal/Tests/Core/Theme/RegistryTest.php
Tests getting the theme registry defined by a module.
theme_test_theme in core/modules/system/tests/modules/theme_test/theme_test.module
Implements hook_theme().
1 theme call to theme_theme_test_function_suggestions()
ThemeTestController::functionSuggestionAlter in core/modules/system/tests/modules/theme_test/src/ThemeTestController.php
Menu callback for testing suggestion alter hooks with theme functions.

File

core/modules/system/tests/modules/theme_test/theme_test.module, line 156

Code

function theme_theme_test_function_suggestions($variables) {
  return 'Original theme function.';
}