You are here

function workflow_features_api in Workflow 7

Same name and namespace in other branches
  1. 7.2 workflow.module \workflow_features_api()

Implements hook_features_api().

File

./workflow.module, line 225
Support workflows made up of arbitrary states.

Code

function workflow_features_api() {
  return array(
    'workflow' => array(
      'name' => t('Workflow'),
      'file' => drupal_get_path('module', 'workflow') . '/workflow.features.inc',
      'default_hook' => 'workflow_default_workflows',
      'feature_source' => TRUE,
    ),
  );
}