function _wijering4_options in SWF Tools 6
Same name and namespace in other branches
- 5 wijering4/wijering4.module \_wijering4_options()
- 6.2 wijering4/wijering4.module \_wijering4_options()
flashvar and param option arrays. These are used for options settings in the configuration screen.
1 call to _wijering4_options()
- wijering4_admin_form in wijering4/
wijering4.admin.inc
File
- wijering4/
wijering4.module, line 212
Code
function _wijering4_options() {
$options['type'] = array(
'default' => 'default',
'sound' => 'sound',
'image' => 'image',
'video' => 'video',
'youtube' => 'youtube',
'camera' => 'camera',
'http' => 'http',
'rtmp' => 'rtmp',
);
$options['overstretch'] = array(
'default' => 'default',
'uniform' => 'uniform',
'fill' => 'fill',
'exactfit' => 'exactfit',
'none' => 'none',
);
$options['repeat'] = array(
'default' => 'default',
'none' => 'none',
'list' => 'list',
'always' => 'always',
);
$options['linktarget'] = array(
'default' => 'default',
'_self' => '_self',
'_blank' => '_blank',
'none' => 'none',
);
$options['playlist'] = array(
'default' => 'default',
'bottom' => 'bottom',
'over' => 'over',
'right' => 'right',
'none' => 'none',
);
$options['controlbar'] = array(
'default' => 'default',
'bottom' => 'bottom',
'over' => 'over',
'none' => 'none',
);
$options['displayclick'] = array(
'default' => 'default',
'play' => 'play',
'link' => 'link',
'fullscreen' => 'fullscreen',
'none' => 'none',
'mute' => 'mute',
'next' => 'next',
);
$options['bool'] = array(
'default' => 'default',
'true' => 'true',
'false' => 'false',
);
return $options;
}