You are here

function swftools_onepixelout_swftools_variable_mapping in SWF Tools 6.3

File

onepixelout/swftools_onepixelout.module, line 140
Enables SWF Tools support for the original OnePixelOut player.

Code

function swftools_onepixelout_swftools_variable_mapping() {
  return array(
    'onepixelout' => array(
      'height' => 'flashvars',
      'width' => 'flashvars',
      'loop' => 'flashvars',
      'autostart' => 'flashvars',
      'leftbg' => 'flashvars',
      'lefticon' => 'flashvars',
      'rightbg' => 'flashvars',
      'righticon' => 'flashvars',
      'rightbghover' => 'flashvars',
      'righticonhover' => 'flashvars',
    ),
  );
}