You are here

function video_get_types_infos in Video 6.2

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

Return an array containing informations on enabled Video Types

3 calls to video_get_types_infos()
video_get_types in ./video.module
Return an array containing enabled Video Types
video_settings_form in ./video.module
Settings Hook
video_types_page in ./video.module
Display a video types selection page

File

./video.module, line 635
video.module

Code

function video_get_types_infos() {
  static $infos = NULL;
  if (!is_array($infos)) {
    $infos = module_invoke_all('v_info');
  }
  return $infos;
}