workflow_rules.node.inc in Workflow 7
Same filename and directory in other branches
Rules integration for the Workflow module with Node API
File
workflow_rules/workflow_rules.node.incView source
<?php
/**
* @file
* Rules integration for the Workflow module with Node API
*/
/**
* Implements subfunction of hook_rules_condition_info().
*/
function _workflow_rules_rules_node_condition_info() {
return array(
'workflow_check_transition' => array(
'group' => t('Workflow'),
'label' => t('Content makes a specific transition'),
'parameter' => array(
'node' => array(
'type' => 'node',
'label' => t('Node'),
'description' => t('The node whose workflow state is being checked.'),
),
'old_state' => array(
'type' => 'list<integer>',
'label' => t('Old workflow state'),
'options list' => '_workflow_rules_workflow_get_options',
'description' => t('The workflow state moved from.'),
),
'new_state' => array(
'type' => 'list<integer>',
'label' => t('New workflow state'),
'options list' => '_workflow_rules_workflow_get_options',
'description' => t('The workflow state moved to.'),
),
),
'base' => '_workflow_rules_workflow_check_transition',
'callbacks' => array(
'execute' => '_workflow_rules_workflow_check_transition',
),
),
'workflow_check_state' => array(
'group' => t('Workflow'),
'label' => t('Content has a workflow state'),
'parameter' => array(
'node' => array(
'type' => 'node',
'label' => t('Node'),
'description' => t('The node to compare the current workflow state of.'),
),
'workflow_state' => array(
'type' => 'list<integer>',
'label' => t('Compare workflow state'),
'options list' => '_workflow_rules_workflow_get_options',
'description' => t('The possible workflow states to compare against.'),
),
),
'base' => '_workflow_rules_workflow_check_state',
'callbacks' => array(
'execute' => '_workflow_rules_workflow_check_state',
),
),
'workflow_check_previous_state' => array(
'group' => t('Workflow'),
'label' => t('Content has a previous workflow state'),
'parameter' => array(
'node' => array(
'type' => 'node',
'label' => t('Node'),
'description' => t('The node to compare the previous workflow state of.'),
),
'workflow_state' => array(
'type' => 'list<integer>',
'label' => t('Compare workflow state'),
'options list' => '_workflow_rules_workflow_get_options',
'description' => t('The possible workflow states to compare against.'),
),
),
'base' => '_workflow_rules_workflow_check_previous_state',
'callbacks' => array(
'execute' => '_workflow_rules_workflow_check_previous_state',
),
),
);
}
/**
* Implements subfunction of hook_rules_action_info().
*/
function _workflow_rules_rules_node_action_info() {
return array(
'workflow_rules_set_state' => array(
'group' => t('Workflow'),
'label' => t('Set workflow state for content'),
'parameter' => array(
'node' => array(
'type' => 'node',
'label' => t('Node'),
'description' => t('The node to set the current workflow state of.'),
),
'workflow_state' => array(
'type' => 'list<integer>',
'label' => t('New workflow state'),
'options list' => '_workflow_rules_workflow_get_options',
'description' => t('The workflow state to set (select only one).'),
),
'workflow_comment' => array(
'type' => 'text',
'label' => t('Workflow Comment'),
'description' => t('The workflow comment to set.'),
'optional' => TRUE,
),
),
'base' => '_workflow_rules_node_set_state',
'callbacks' => array(
'execute' => '_workflow_rules_node_set_state',
),
),
);
}
Functions
Name | Description |
---|---|
_workflow_rules_rules_node_action_info | Implements subfunction of hook_rules_action_info(). |
_workflow_rules_rules_node_condition_info | Implements subfunction of hook_rules_condition_info(). |