You are here

function video_embed_brightcove_video_embed_handler_info in Video Embed Field 7.2

Implements hook_video_embed_handler_info().

File

video_embed_brightcove/video_embed_brightcove.module, line 12
Add a handler for brightcove videos to Video Embed Field.

Code

function video_embed_brightcove_video_embed_handler_info() {
  $handlers = array();
  $handlers['brightcove'] = array(
    'title' => 'Brightcove Video',
    'function' => 'video_embed_brightcove_handle_video',
    'thumbnail_default' => drupal_get_path('module', 'video_embed_brightcove') . '/img/brightcove.jpg',
    'form' => 'video_embed_brightcove_form',
    'form_validate' => 'video_embed_field_handler_brightcove_form_validate',
    'domains' => array(
      'brightcove.com',
      'link.brightcove.com',
    ),
    'defaults' => array(
      'width' => 640,
      'height' => 360,
      'class' => '',
    ),
  );
  return $handlers;
}