You are here

function minplayer_get_player_settings in MediaFront 7.2

Same name and namespace in other branches
  1. 7 players/minplayer/minplayer.module \minplayer_get_player_settings()

Implements hook_get_player_settings

These are the settings that the module implements...

File

players/minplayer/minplayer.module, line 115

Code

function minplayer_get_player_settings() {
  return array(
    'width' => MINPLAYER_DEFAULT_WIDTH,
    'height' => MINPLAYER_DEFAULT_HEIGHT,
    'fluidWidth' => TRUE,
    'showWhenEmpty' => TRUE,
    'debug' => FALSE,
  );
}