diff —git a/exif_custom.features.inc b/exif_custom.features.inc new file mode 100644 index 0000000..243bbe2 —- /dev/null +++ b/exif_custom.features.inc @@ -0,0 +1,158 @@ +<?php +/** + * @file + * Features file for the exif_custom module. + / + +/* + * Implements hook_features_api(). + */ +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_cus + ), + ); +} +…