You are here

function uuid_paragraphs_features_export in UUID Features Integration 7

Implements hook_features_export().

File

includes/uuid_paragraphs.features.inc, line 52
Features hooks for the uuid_paragraphs features component.

Code

function uuid_paragraphs_features_export($data, &$export, $module_name = '') {
  $export['dependencies']['paragraphs'] = 'paragraphs';
  $export['dependencies']['uuid'] = 'uuid';
  $export['dependencies']['uuid_features'] = 'uuid_features';
  foreach ($data as $uuid) {
    $export['features']['uuid_paragraphs'][$uuid] = $uuid;
  }
  return array();
}