function theme_theme_test
7.x theme_test.inc | theme_theme_test($variables) |
Returns HTML for the 'theme_test' theme hook used by tests.
2 theme calls to theme_theme_test()
- _theme_test_suggestion in drupal-7.x/
modules/ simpletest/ tests/ theme_test.module - Page callback, calls a theme hook suggestion.
- _theme_test_suggestion in drupal-7.x/
modules/ simpletest/ tests/ theme_test.module - Page callback, calls a theme hook suggestion.
File
- drupal-7.x/
modules/ simpletest/ tests/ theme_test.inc, line 6
Code
function theme_theme_test($variables) {
return 'Theme hook implementor=theme_theme_test(). Foo=' . $variables['foo'];
}