function common_test_theme

Implements hook_theme().

File

drupal/modules/simpletest/tests/common_test.module, line 216
Helper module for the Common tests.

Code

function common_test_theme() {
  return array(
    'common_test_foo' => array(
      'variables' => array(
        'foo' => 'foo',
        'bar' => 'bar',
      ),
    ),
  );
}