function theme_theme_test in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/system/tests/modules/theme_test/theme_test.inc \theme_theme_test()
Returns HTML for the 'theme_test' theme hook used by tests.
1 string reference to 'theme_theme_test'
- theme_test_theme in core/
modules/ system/ tests/ modules/ theme_test/ theme_test.module - Implements hook_theme().
File
- core/
modules/ system/ tests/ modules/ theme_test/ theme_test.inc, line 6
Code
function theme_theme_test($variables) {
return 'Theme hook implementor=theme_theme_test(). Foo=' . $variables['foo'];
}