1 common_test.module | common_test_theme() |
Implements hook_theme().
File
- core/
modules/ simpletest/ tests/ common_test.module, line 255 - Helper module for the Common tests.
Code
function common_test_theme() {
return array(
'common_test_foo' => array(
'variables' => array('foo' => 'foo', 'bar' => 'bar'),
'file' => 'common_test.theme.inc',
),
);
}