You are here

function cloud_zoom_preset_features_export_options in Cloud Zoom 6

Implementation of hook_features_export_options().

File

./cloud_zoom.features.inc, line 38
cloud_zoom.features.inc Contains the implementions to enable Features Exportable settings

Code

function cloud_zoom_preset_features_export_options() {
  $options = array();
  foreach (cloud_zoom_get_settings() as $preset) {
    $options[$preset['name']] = $preset['name'];
  }
  return $options;
}