You are here

function video_features_api in Video 7

Same name and namespace in other branches
  1. 7.2 video.module \video_features_api()

Implementation of hook_features_api()

File

./video.module, line 677

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',
    ),
  );
}