function video_features_api in Video 7.2
Same name and namespace in other branches
- 7 video.module \video_features_api()
Implements hook_features_api().
File
- ./
video.module, line 333 - All module hooks implementation can be found in this file.
Code
function video_features_api() {
return array(
'video' => array(
'name' => t('Video presets'),
'default_hook' => 'video_default_presets',
'file' => drupal_get_path('module', 'video') . '/video.features.inc',
),
);
}