You are here

function workflow_vbo_next_action_info in Workflow 7.2

Implements hook_action_info().

Registers custom VBO actions as Drupal actions.

1 call to workflow_vbo_next_action_info()
workflow_vbo_action_info in workflow_vbo/workflow_vbo.module
Implements hook_action_info().

File

workflow_vbo/actions/next.action.inc, line 13
VBO action to modify entity values (properties and fields).

Code

function workflow_vbo_next_action_info() {
  return array(
    'workflow_vbo_next_state_action' => array(
      'type' => 'entity',
      'label' => t('Change workflow state of post to next state'),
      'configurable' => FALSE,
      'triggers' => array(
        'any',
      ),
    ),
  );
}