You are here

function votingapi_actions_votingapi_action_handlers in Voting API 5

File

./votingapi_actions.inc, line 8

Code

function votingapi_actions_votingapi_action_handlers() {
  $handlers = array(
    'votingapi_vote_result_handler' => array(
      'name' => 'Vote result properties',
      'type' => '*',
    ),
    'votingapi_vote_handler' => array(
      'name' => 'Individual vote properties',
      'type' => '*',
    ),
    'votingapi_node_properties_handler' => array(
      'name' => 'Node properties',
      'type' => 'node',
    ),
  );
  return $handlers;
}