function content_features_export_options in Default Content 7.2
Same name and namespace in other branches
- 7 defaultcontent.features.inc \content_features_export_options()
Implements hook_features_export_options().
File
- ./
defaultcontent.features.inc, line 11 - Handles all features exporting functionality
Code
function content_features_export_options() {
$options = array();
foreach (defaultcontent_get_default() as $record) {
$options[$record->name] = $record->name;
}
return $options;
}