node_convert.rules.inc in Node Convert 6
Same filename and directory in other branches
rules integration for the node_convert module
File
node_convert.rules.incView source
<?php
/**
* @file
* rules integration for the node_convert module
*/
/**
* Implementation of hook_rules_event_info().
* @ingroup rules
*/
function node_convert_rules_event_info() {
return array(
'node_convert_converted_node' => array(
'label' => t('Content has been converted'),
'module' => 'Node',
'arguments' => rules_events_node_arguments(t('Converted content'), t("Content's author"), TRUE),
),
);
}
Functions
Name | Description |
---|---|
node_convert_rules_event_info | Implementation of hook_rules_event_info(). |