function image_features_export_options in Features 7
Same name and namespace in other branches
- 7.2 includes/features.image.inc \image_features_export_options()
 
Implements hook_features_export_options().
File
- includes/
features.image.inc, line 20  
Code
function image_features_export_options() {
  $options = array();
  foreach (image_styles() as $name => $style) {
    $options[$name] = $style['name'];
  }
  return $options;
}