You are here

function mediafront_views_features_export_options in MediaFront 7.2

Implementation of hook_features_export_options().

File

includes/mediafront.features.inc, line 16

Code

function mediafront_views_features_export_options() {
  $options = array();
  foreach (mediafront_views_get_options() as $view => $views_options) {
    $options[$view] = $view;
  }
  return $options;
}