function exif_custom_features_api in EXIF Custom 7
Implements hook_features_api().
File
- ./
exif_custom.features.inc, line 11 - Features file for the exif_custom module.
Code
function exif_custom_features_api() {
return array(
'exif_custom' => array(
'name' => t('EXIF Custom mappings'),
'default_hook' => 'exif_custom_export_maps',
'feature_source' => TRUE,
'default_file' => FEATURES_DEFAULTS_INCLUDED,
'file' => drupal_get_path('module', 'exif_custom') . '/exif_custom.features.inc',
),
);
}