function video_features_export_options in Video 7
Same name and namespace in other branches
- 7.2 video.features.inc \video_features_export_options()
Implementation of hook_features_export_options().
File
- ./
video.features.inc, line 9
Code
function video_features_export_options() {
$options = array();
foreach (video_preset_get_presets() as $preset) {
$options[$preset['name']] = $preset['name'];
}
return $options;
}