function video_video_players in Video 6.5
Same name and namespace in other branches
- 6.4 video.module \video_video_players()
- 7 video.module \video_video_players()
Return our supported video players.
2 calls to video_video_players()
- video_players_admin_settings in ./
video.admin.inc - Video player admin settings
- video_theme in ./
video.module - Implementation of hook_theme().
File
- ./
video.module, line 494 - Main file of the Video module.
Code
function video_video_players() {
return array(
'video_play_html5' => t('HTML5 Player'),
'video_play_divx' => t('Divx Player'),
'video_play_quicktime' => t('Quicktime'),
'video_play_realmedia' => t('Real Media Player'),
'video_play_flv' => t('FLV Flash Players'),
'video_play_flash' => t('SWF Flash Player'),
'video_play_dcr' => t('Director/Shockwave'),
'video_play_windowsmedia' => t('Windows Media Player'),
'video_play_theora' => t('Theora Player'),
);
}