You are here

vud_node.api.php in Vote Up/Down 6.3

File

vud_node/vud_node.api.php
View source
<?php

/**
 * Alter the widget type depending on  the $node.
 *
 * @param string $widget
 *   The widget type.
 * @param $node
 *   The node object or NID being viewed. In the case of Views handlers the
 *   full node object may not be available.
 */
function hook_vud_node_widget_alter(&$widget, $node) {
  if ($node->type == 'answer') {
    $widget = 'upanddown';
  }
}

Functions

Namesort descending Description
hook_vud_node_widget_alter Alter the widget type depending on the $node.