You are here

function feeds_tests_rules_action_info in Feeds 7.2

Implements hook_rules_action_info().

File

tests/feeds_tests.rules.inc, line 23
Includes any rules integration provided by the module.

Code

function feeds_tests_rules_action_info() {
  $items['feeds_tests_create_node'] = array(
    'label' => t('Create a node'),
    'group' => t('Rules test'),
  );
  return $items;
}