You are here

function video_get_type_info in Video 6.2

Same name and namespace in other branches
  1. 5 video.module \video_get_type_info()
  2. 6 video.module \video_get_type_info()

Return the informations for a given video type

4 calls to video_get_type_info()
video_image_is_autothumbable in plugins/video_image/video_image.module
Return true if the video support authothumbnailing
video_support_autoplaytime in ./video.module
Return true if the video support auto playtime
video_support_autoresolution in ./video.module
Return true if the video support auto resolution
video_support_download in ./video.module
Return true if a given video type is downloadable

File

./video.module, line 648
video.module

Code

function video_get_type_info($type) {
  return module_invoke('video_' . $type, 'v_info');
}