You are here

function video_features_export in Video 7.2

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

Implements hook_features_export().

File

./video.features.inc, line 21
Contains code to support the Features module.

Code

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