function common_test_theme
Implements hook_theme().
Archivo
- drupal-7.x/
modules/ simpletest/ tests/ common_test.module, line 207 - Helper module for the Common tests.
Código
function common_test_theme() {
return array(
'common_test_foo' => array(
'variables' => array(
'foo' => 'foo',
'bar' => 'bar',
),
),
);
}