You are here

function paragraphs_features_export_options in Paragraphs 7

Implements hook_features_export_options().

File

./paragraphs.features.inc, line 11
Holds features implementation.

Code

function paragraphs_features_export_options() {
  $bundles = paragraphs_bundle_load();
  $names = array();
  foreach ($bundles as $key => $value) {
    $names[$key] = $value->name;
  }
  return $names;
}