You are here

function _flowplayer3_options in SWF Tools 6.2

Options used to populate the select elements of the form above Collect them here to make them easier to find and adjust!

1 call to _flowplayer3_options()
flowplayer3_admin_settings in flowplayer3/flowplayer3.admin.inc
Menu callback for the FlowPlayer3 settings form.

File

flowplayer3/flowplayer3.admin.inc, line 409

Code

function _flowplayer3_options() {
  $options['bool'] = array(
    'true' => 'true',
    'false' => 'false',
  );
  $options['linkWindow'] = array(
    '_blank' => '_blank',
    '_parent' => '_parent',
    '_self' => '_self',
    '_top' => '_top',
  );
  $options['scaling'] = array(
    'fit' => 'fit',
    'half' => 'half',
    'orig' => 'orig',
    'scale' => 'scale',
  );
  $options['gradient'] = array(
    'none' => 'none',
    'low' => 'low',
    'medium' => 'medium',
    'high' => 'high',
  );
  $options['autoHide'] = array(
    'never' => 'never',
    'always' => 'always',
    'fullscreen' => 'fullscreen',
  );
  $options['backgroundRepeat'] = array(
    'no-repeat' => 'no-repeat',
    'repeat' => 'repeat',
  );
  return $options;
}