You are here

function workbench_email_features_api in Workbench Email 7.3

Same name and namespace in other branches
  1. 7 workbench_email.module \workbench_email_features_api()

Implements hook_features_api().

File

./workbench_email.module, line 101
Code for the Workbench Email Module.

Code

function workbench_email_features_api() {
  return array(
    'workbench_email' => array(
      'name' => t('Workbench Email'),
      'default_hook' => 'workbench_email_export',
      'feature_source' => TRUE,
      'default_file' => FEATURES_DEFAULTS_INCLUDED,
      'file' => drupal_get_path('module', 'workbench_email') . '/workbench_email.features.inc',
    ),
  );
}