function video_features_export_options in Video 7.2
Same name and namespace in other branches
- 7 video.features.inc \video_features_export_options()
Implements hook_features_export_options().
File
- ./
video.features.inc, line 10 - Contains code to support the Features module.
Code
function video_features_export_options() {
$options = array();
foreach (Preset::getAllPresets() as $preset) {
$options[$preset['name']] = $preset['name'];
}
return $options;
}