function theme_common_test_foo

7.x common_test.module theme_common_test_foo($variables)

Theme function for testing drupal_render() theming.

1 theme call to theme_common_test_foo()
DrupalRenderTestCase::testDrupalRenderThemeArguments in drupal-7.x/modules/simpletest/tests/common.test
Test passing arguments to the theme function.

File

drupal-7.x/modules/simpletest/tests/common_test.module, line 218
Helper module for the Common tests.

Code

function theme_common_test_foo($variables) {
  return $variables['foo'] . $variables['bar'];
}