function theme_theme_test

Returns HTML for the 'theme_test' theme hook used by tests.

1 theme call to theme_theme_test()
_theme_test_suggestion in drupal/modules/simpletest/tests/theme_test.module
Page callback, calls a theme hook suggestion.

File

drupal/modules/simpletest/tests/theme_test.inc, line 6

Code

function theme_theme_test($variables) {
  return 'Theme hook implementor=theme_theme_test(). Foo=' . $variables['foo'];
}