function vud_theme in Vote Up/Down 7
Same name and namespace in other branches
- 8 vud.theme.inc \vud_theme()
- 6.3 vud.theme.inc \vud_theme()
- 6.2 vud.theme.inc \vud_theme()
- 7.2 vud.theme.inc \vud_theme()
Implementation of hook_theme().
File
- ./vud.theme.inc, line 74 
- Theme functions
Code
function vud_theme() {
  return array(
    'vud_widget' => array(
      'function' => 'vud_widget_proxy',
      'variables' => array(
        'entity_id' => NULL,
        'type' => NULL,
        'tag' => NULL,
        'widget_theme' => NULL,
        'readonly' => NULL,
        'widget_message_code' => NULL,
      ),
    ),
    'vud_votes' => array(
      'function' => 'vud_votes_proxy',
      'variables' => array(
        'entity_id' => NULL,
        'type' => NULL,
        'tag' => NULL,
        'widget_theme' => NULL,
      ),
    ),
  );
}