You are here

function image_features_export_options in Features 7.2

Same name and namespace in other branches
  1. 7 includes/features.image.inc \image_features_export_options()

Implements hook_features_export_options().

File

includes/features.image.inc, line 27
Features integration for 'image' module.

Code

function image_features_export_options() {
  $options = array();
  foreach (image_styles() as $name => $style) {
    $options[$name] = $style['name'];
  }
  return $options;
}