You are here

function node_convert_action_info in Node Convert 6

Same name and namespace in other branches
  1. 7 node_convert.module \node_convert_action_info()

Implementation of hook_action_info().

File

./node_convert.module, line 139
The node_convert module converts nodes from one type to another.

Code

function node_convert_action_info() {
  return array(
    'node_convert_convert_action' => array(
      'description' => t("Convert a node"),
      'type' => 'node',
      'configurable' => TRUE,
      'hooks' => array(
        'any' => TRUE,
      ),
    ),
  );
}