You are here

function vud_theme in Vote Up/Down 6.2

Same name and namespace in other branches
  1. 8 vud.theme.inc \vud_theme()
  2. 6.3 vud.theme.inc \vud_theme()
  3. 7.2 vud.theme.inc \vud_theme()
  4. 7 vud.theme.inc \vud_theme()

Implementation of hook_theme().

File

./vud.theme.inc, line 72
Theme functions

Code

function vud_theme() {
  return array(
    'vud_widget' => array(
      'function' => 'vud_widget_proxy',
      'arguments' => array(
        'content_id' => NULL,
        'type' => NULL,
        'tag' => NULL,
        'widget_theme' => NULL,
        'readonly' => NULL,
        'widget_message_code' => NULL,
      ),
    ),
    'vud_votes' => array(
      'function' => 'vud_votes_proxy',
      'arguments' => array(
        'content_id' => NULL,
        'type' => NULL,
        'tag' => NULL,
        'widget_theme' => NULL,
      ),
    ),
  );
}