You are here

function imagecache_features_export_options in Features 6

Implementation of hook_features_export_options().

File

includes/features.imagecache.inc, line 18

Code

function imagecache_features_export_options() {
  $options = array();
  foreach (imagecache_presets() as $preset) {
    $options[$preset['presetname']] = $preset['presetname'];
  }
  return $options;
}