You are here

function heartbeat_features_export in Heartbeat 6.4

Implementation of hook_features_export().

File

./heartbeat.features.inc, line 45
Features support.

Code

function heartbeat_features_export($data, &$export, $module_name = '') {
  $pipe = array();
  $export['dependencies']['heartbeat'] = 'heartbeat';
  foreach ($data as $module) {
    $export['features']['heartbeat'][$module] = $module;
  }
  return $pipe;
}