You are here

function widgets_set_features_export_options in Widgets 7

Implements hook_features_export_options().

File

./widgets.features.inc, line 78

Code

function widgets_set_features_export_options() {
  $options = array();
  $sets = (array) widgets_sets();

  // Create options list of only custom definitions.
  foreach ($sets as $name => $elem) {
    $options[$name] = $set['name'];
  }
  return $options;
}