1.20.x theme_test.theme.inc theme_theme_test($variables)

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

File

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'];
}