You are here

workbench_workflows_ignore.inc in Workbench Moderation 7.2

A class to mark a node as ignored by State Machine / Workbench Workflows.

File

modules/workbench_workflows/plugins/state_flow_entity/workbench_workflows_ignore.inc
View source
<?php

/**
 * @file
 *   A class to mark a node as ignored by State Machine / Workbench Workflows.
 */
class WorkbenchWorkflowsIgnore extends StateFlowNode {
  public function init($workflow = array()) {
  }
  public function ignore() {
    return TRUE;
  }

}

Classes

Namesort descending Description
WorkbenchWorkflowsIgnore @file A class to mark a node as ignored by State Machine / Workbench Workflows.