You are here

function common_test_theme in SimpleTest 7

Implement hook_theme().

File

tests/common_test.module, line 139
Helper module for the Common tests.

Code

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