You are here

function state_flow_entity_ctools_plugin_type in State Machine 7.3

Implements hook_ctools_plugin_type().

File

modules/state_flow_entity/state_flow_entity.module, line 564
An implementation of entity workflow for Drupal based on the State Machine system.

Code

function state_flow_entity_ctools_plugin_type() {
  $plugins = array(
    'plugins' => array(
      'cache' => TRUE,
      'use hooks' => TRUE,
      'info file' => TRUE,
      'alterable' => TRUE,
      'classes' => array(
        'handler',
      ),
    ),
  );
  return $plugins;
}