You are here

function video_features_export in Video 7

Same name and namespace in other branches
  1. 7.2 video.features.inc \video_features_export()

Implementation of hook_features_export().

File

./video.features.inc, line 20

Code

function video_features_export($data, &$export, $module_name = '') {
  foreach ($data as $preset) {
    $export['features']['video'][$preset] = $preset;
  }
}