You are here

function state_flow_ctools_plugin_type in State Machine 7

Same name and namespace in other branches
  1. 7.2 modules/state_flow/state_flow.module \state_flow_ctools_plugin_type()

Implements hook_ctools_plugin_type().

File

modules/state_flow/state_flow.module, line 86
An implementation of node revision workflow for Drupal based on the State Machine system.

Code

function state_flow_ctools_plugin_type() {
  $plugins = array(
    'plugins' => array(
      'cache' => TRUE,
      'use hooks' => TRUE,
    ),
  );
  return $plugins;
}