function nd_rules_action_info in Node displays 6.2
Same name and namespace in other branches
- 6.3 nd.module \nd_rules_action_info()
Implementation of hook_rules_action_info().
File
- ./
nd.module, line 58 - 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',
),
);
}