function _wijering_options in SWF Tools 5
Same name and namespace in other branches
- 6 wijering/wijering.module \_wijering_options()
- 6.2 wijering/wijering.module \_wijering_options()
flashvar and param option arrays. These are used for options settings in the configuration screen.
2 calls to _wijering_options()
- _wijering_admin_form in wijering/
wijering.admin.inc - _wijering_settings in wijering/
wijering.module - These are the default settings as they are stored in the database and displayed on the settings page.
File
- wijering/
wijering.module, line 266
Code
function _wijering_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',
'circles' => 'circles',
'fluids' => 'fluids',
'lines' => 'lines',
'random' => 'random',
);
$options['bool'] = array(
'default' => 'default',
'true' => 'true',
'false' => 'false',
);
return $options;
}