You are here

function _swftools_imagerotator_options in SWF Tools 6.3

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 _swftools_imagerotator_options()
swftools_imagerotator_profile_form in imagerotator/swftools_imagerotator.admin.inc
Returns a form definition for use by the profile system.

File

imagerotator/swftools_imagerotator.admin.inc, line 26
Configuration settings for LongTail Image Rotator.

Code

function _swftools_imagerotator_options() {
  $options['overstretch'] = array(
    'default' => 'default',
    'false' => 'false',
    'true' => 'true',
    'fit' => 'fit',
    'none' => 'none',
  );
  $options['repeat'] = array(
    'default' => 'default',
    'false' => 'false',
    'true' => 'true',
    'list' => 'list',
  );
  $options['linktarget'] = array(
    'default' => 'default',
    '_self' => '_self',
    '_blank' => '_blank',
  );
  $options['transition'] = array(
    'default' => 'default',
    'fade' => 'fade',
    'bgfade' => 'bgfade',
    'blocks' => 'blocks',
    'bubbles' => 'bubbles',
    'circles' => 'circles',
    'flash' => 'flash',
    'fluids' => 'fluids',
    'lines' => 'lines',
    'slowfade' => 'slowfade',
    'random' => 'random',
  );
  $options['bool'] = array(
    'default' => 'default',
    'true' => 'true',
    'false' => 'false',
  );
  return $options;
}