function theme_common_test_foo

Provides a theme function for drupal_render().

1 theme call to theme_common_test_foo()
RenderTest::testDrupalRenderThemeArguments in drupal/core/modules/system/lib/Drupal/system/Tests/Common/RenderTest.php
Tests passing arguments to the theme function.

File

drupal/core/modules/system/tests/modules/common_test/common_test.module, line 259
Helper module for the Common tests.

Code

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