1 theme_test.theme.inc | theme_theme_test($variables) |
Returns HTML for the 'theme_test' theme hook used by tests.
File
- core/
modules/ simpletest/ tests/ theme_test.theme.inc, line 10 - Theme functions for the Theme Test module.
Code
function theme_theme_test($variables) {
return 'Theme hook implementor=theme_theme_test(). Foo=' . $variables['foo'];
}