function translation_table_theme in Translation table 6
Same name and namespace in other branches
- 7 translation_table.module \translation_table_theme()
Implementation of hook_theme().
File
- ./
translation_table.module, line 77 - Translation table module
Code
function translation_table_theme() {
return array(
'translation_table' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'includes/theme.inc',
),
'translation_table_filter' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'includes/theme.inc',
),
);
}