You are here

function imageapi_optimize_features_export_options in Image Optimize (or ImageAPI Optimize) 7.2

Implements hook_features_export_options().

File

./imageapi_optimize.features.inc, line 25
Features integration for the ImageAPI Optimize module.

Code

function imageapi_optimize_features_export_options() {
  $options = array();
  foreach (imageapi_optimize_pipelines() as $name => $pipeline) {
    $options[$name] = $pipeline['name'];
  }
  return $options;
}