Gets or sets type or priority of HTML5/Flash Uploader controls.
public function getType() { } public function setType($value) { }
Type: string
Type or priority of HTML5/Flash Uploader controls.
Possible values are:
You can use this property to change default controls priority or to specify the only control to use.
Default value is "html|flash".
<?php $uploader = new ImageUploaderFlash("Uploader1"); $uploader->setType("flash|html"); $uploader->render(); ?>