function theme_theme_test

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.

Archivo

drupal-7.x/modules/simpletest/tests/theme_test.inc, line 6

Código

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