You are here

function feeds_rules_action_info in Feeds 8.2

Same name and namespace in other branches
  1. 7.2 feeds.rules.inc \feeds_rules_action_info()

Implements of hook_rules_action_info().

File

./feeds.rules.inc, line 64
Rules integration.

Code

function feeds_rules_action_info() {
  return array(
    'feeds_skip_item' => array(
      'base' => 'feeds_action_skip_item',
      'label' => t('Skip import of feeds item'),
      'group' => t('Feeds'),
      'parameter' => array(
        'entity' => array(
          'type' => 'entity',
          'label' => t('The feeds import item to be marked as skipped'),
        ),
      ),
      'access callback' => 'feeds_rules_access_callback',
    ),
  );
}