You are here

function video_video_flv_players in Video 6.5

Same name and namespace in other branches
  1. 6.4 video.admin.inc \video_video_flv_players()
  2. 7.2 modules/video_ui/video.admin.inc \video_video_flv_players()
  3. 7 video.module \video_video_flv_players()

Return our possible flash players.

1 call to video_video_flv_players()
video_players_admin_settings in ./video.admin.inc
Video player admin settings

File

./video.admin.inc, line 525

Code

function video_video_flv_players() {
  $options = array();
  if (module_exists('swftools')) {
    $options['swftools'] = t('SWF Tools');
  }
  if (module_exists('flowplayer')) {
    $options['flowplayer'] = t('Flowplayer');
  }
  return $options;
}