You are here

node_convert.rules.inc in Node Convert 6

Same filename and directory in other branches
  1. 7 node_convert.rules.inc

rules integration for the node_convert module

File

node_convert.rules.inc
View 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

Namesort descending Description
node_convert_rules_event_info Implementation of hook_rules_event_info().