function node_expire_rules_action_info in Node expire 6.2
Same name and namespace in other branches
- 8 node_expire.rules.inc \node_expire_rules_action_info()
- 7.2 node_expire.rules.inc \node_expire_rules_action_info()
- 7 node_expire.rules.inc \node_expire_rules_action_info()
Implementation of hook_rules_action_info().
File
- ./
node_expire.rules.inc, line 12 - Rules module integration.
Code
function node_expire_rules_action_info() {
return array(
'node_expire_unset_expired' => array(
'arguments' => array(
'node' => array(
'type' => 'node',
'label' => t('content expired'),
),
),
'label' => t('Unset the expired flag'),
'module' => 'Node',
),
'node_expire_update_lastnotify' => array(
'arguments' => array(
'node' => array(
'type' => 'node',
'label' => t('content expired'),
),
),
'label' => t('Update lastnotify'),
'module' => 'Node',
),
);
}