function vud_field_theme in Vote Up/Down 7
Same name and namespace in other branches
- 7.2 vud_field/vud_field.module \vud_field_theme()
Implements hook_theme().
File
- vud_field/
vud_field.module, line 113 - Defines field type which contains a voting widget.
Code
function vud_field_theme() {
return array(
'vud_field_formatter_default' => array(
'variables' => array(
'entity_info' => NULL,
'entity' => NULL,
'instance' => NULL,
'langcode' => NULL,
// variables for theme('vud_widget')
'vud_widget_variables' => NULL,
),
),
);
}