function theme_common_test_foo in SimpleTest 7
Theme function for testing drupal_render() theming.
1 theme call to theme_common_test_foo()
- DrupalRenderUnitTestCase::testDrupalRenderThemeArguments in tests/
common.test - Test passing arguments to the theme function.
File
- tests/
common_test.module, line 150 - Helper module for the Common tests.
Code
function theme_common_test_foo($variables) {
return $variables['foo'] . $variables['bar'];
}