You are here

function swftools_wijering4_swftools_variable_mapping in SWF Tools 6.3

Implementation of hook_swftools_variable_mapping().

File

wijering4/swftools_wijering4.module, line 296
Enables SWF Tools support for LongTail Player 4. This module also works with LongTail Player 5.

Code

function swftools_wijering4_swftools_variable_mapping() {
  return array(
    'jwplayer4' => array(
      'height' => 'flashvars',
      'width' => 'flashvars',
      'shuffle' => 'flashvars',
      'fullscreen' => 'flashvars',
      'autostart' => 'flashvars',
      'quality' => 'flashvars',
      'backcolor' => 'flashvars',
      'frontcolor' => 'flashvars',
      'lightcolor' => 'flashvars',
      'screencolor' => 'flashvars',
      'logo' => 'flashvars',
      'captions' => 'flashvars',
      'link' => 'flashvars',
      'streamscript' => 'flashvars',
      'skin' => 'flashvars',
      'playlistsize' => 'flashvars',
      'bufferlength' => 'flashvars',
      'volume' => 'flashvars',
      'type' => 'flashvars',
      'repeat' => 'flashvars',
      'linktarget' => 'flashvars',
      'stretching' => 'flashvars',
      'playlist' => 'flashvars',
      'controlbar' => 'flashvars',
      'displayclick' => 'flashvars',
    ),
  );
}