You are here

function nd_rules_action_info in Node displays 6.3

Same name and namespace in other branches
  1. 6.2 nd.module \nd_rules_action_info()

Implementation of hook_rules_action_info().

File

./nd.module, line 59
Node displays.

Code

function nd_rules_action_info() {
  return array(
    'nd_rules_disable_fields' => array(
      'label' => t('Do not show a ND field'),
      'arguments' => array(
        'node' => array(
          'type' => 'node',
          'label' => t('Content'),
        ),
      ),
      'module' => 'nd',
    ),
  );
}