You are here

function _imagerotator_options in SWF Tools 6.2

Same name and namespace in other branches
  1. 6 imagerotator/imagerotator.module \_imagerotator_options()

flashvar and param option arrays. These are used for options settings in the configuration screen.

2 calls to _imagerotator_options()
imagerotator_admin_form in imagerotator/imagerotator.admin.inc
_imagerotator_settings in imagerotator/imagerotator.module
These are the default settings as they are stored in the database and displayed on the settings page.

File

imagerotator/imagerotator.module, line 198

Code

function _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;
}