You are here

function video_url_v_info in Video 6.2

Same name and namespace in other branches
  1. 5 types/video_url/video_url.module \video_url_v_info()
  2. 6 types/video_url/video_url.module \video_url_v_info()

Implementation of hook_v_info()

File

types/video_url/video_url.module, line 45
Enable Path or URL support for video module.

Code

function video_url_v_info() {
  $info['url'] = array(
    '#name' => 'URL Video',
    '#description' => t('Post a video available on the Internet to this website.'),
    '#downloadable' => TRUE,
    '#autothumbable' => FALSE,
    '#autoresolution' => FALSE,
    '#autoplaytime' => FALSE,
  );
  return $info;
}