function html5_media_player_settings in HTML5 Media 7
Returns the player settings.
1 call to html5_media_player_settings()
- html5_media_register_player in ./
html5_media.module - Register a new media player in JavaScript.
File
- ./
html5_media.module, line 126
Code
function html5_media_player_settings() {
return array(
"id" => 'player',
"controller" => 'default',
"template" => 'default',
"swfplayer" => '',
"wmode" => 'transparent',
"preload" => true,
"autoplay" => false,
"loop" => false,
"width" => '100%',
"height" => '400px',
"debug" => false,
"volume" => 80,
"files" => array(),
"file" => '',
"preview" => '',
"attributes" => array(),
);
}