You are here

public static function video_utility::getVideoPlayers in Video 7.2

Return our supported video players.

3 calls to video_utility::getVideoPlayers()
video_players_admin_settings in modules/video_ui/video.admin.inc
Video player admin settings
video_theme in ./video.module
Implements hook_theme().
video_theme_registry_alter in ./video.module
Implements hook_theme_registry_alter().

File

./video.utility.inc, line 276
This file will be used to keep all utility functions data structures.

Class

video_utility
Helper functions for the Video module.

Code

public static function getVideoPlayers() {
  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'),
  );
}