function exif_custom_features_export_options in EXIF Custom 7
Implements COMPONENT_features_export_options().
File
- ./
exif_custom.features.inc, line 26 - Features file for the exif_custom module.
Code
function exif_custom_features_export_options() {
// Inform features about the available mappings in the database.
return db_select('exif_custom_maps', 'ecm')
->fields('ecm', array(
'name',
'name',
))
->execute()
->fetchAllKeyed();
}