function webform_features_features_api in Webform Features 7.3
Same name and namespace in other branches
- 7.4 webform_features.module \webform_features_features_api()
Implements hook_features_api().
File
- ./
webform_features.module, line 158 - This module allows to export Webforms into Features.
Code
function webform_features_features_api() {
return array(
'webform' => array(
'name' => 'Webforms',
'default_hook' => 'webform_defaults',
'default_file' => FEATURES_DEFAULTS_INCLUDED,
'feature_source' => TRUE,
'file' => drupal_get_path('module', 'webform_features') . '/webform_features.features.inc',
),
);
}