function video_video_players in Video 7
Same name and namespace in other branches
- 6.5 video.module \video_video_players()
- 6.4 video.module \video_video_players()
2 calls to video_video_players()
- video_players_admin_settings in modules/
video_ui/ video.admin.inc - Video player admin settings
- video_theme in ./
video.module - Implementation of hook_theme().
File
- ./
video.module, line 507
Code
function video_video_players() {
$players = 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'),
);
return $players;
}