You are here

function video_google_v_info in Video 6

Same name and namespace in other branches
  1. 5 types/video_google/video_google.module \video_google_v_info()
  2. 6.2 types/video_google/video_google.module \video_google_v_info()

Implementation of hook_v_info()

File

types/video_google/video_google.module, line 46
Enable Google Video support for video module.

Code

function video_google_v_info() {
  $info['google'] = array(
    '#name' => 'Google Video',
    '#description' => t('Post a video available on !link to this website.', array(
      '!link' => l(t('Google Video'), 'http://video.google.com'),
      NULL,
      NULL,
      NULL,
      TRUE,
    )),
    '#autothumbable' => true,
    '#autoresolution' => true,
    '#autoplaytime' => false,
  );
  return $info;
}