function ocupload_templates_features_export_options in One Click Upload 7.2
Same name and namespace in other branches
- 7 ocupload.features.inc \ocupload_templates_features_export_options()
Implementation of hook_features_export_options. [component_hook]
Return value
mixed
File
- ./
ocupload.features.inc, line 7
Code
function ocupload_templates_features_export_options() {
return db_select('ocupload_templates', 'oc')
->fields('oc', array(
'mask',
'mask',
))
->execute()
->fetchAllKeyed();
}