You are here

function nd_rules_action_info in Display Suite 6.3

Implementation of hook_rules_action_info().

File

modules/nd/nd.module, line 42
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',
    ),
  );
}