You are here

function theme_theme_test_function_template_override 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_template_override()

Theme function for testing _theme('theme_test_function_template_override').

1 string reference to 'theme_theme_test_function_template_override'
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_template_override()
ThemeTestController::functionTemplateOverridden in core/modules/system/tests/modules/theme_test/src/ThemeTestController.php
A theme template that overrides a theme function.

File

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

Code

function theme_theme_test_function_template_override($variables) {
  return 'theme_test_function_template_override test failed.';
}