Does anyone know where you can edit the uploader order. I would like to take off the recorder and have the default uploader be regular not flash. Any idea of where to change this?
Does anyone know where you can edit the uploader order. I would like to take off the recorder and have the default uploader be regular not flash. Any idea of where to change this? |
Anyone know how to do this?? |
Hello! In current D7.0 it can be done via editing code only (in D7.1 it will be defined in modules settings). For changing order: Place elements in array generated by method getUploaderSwitcher of class BxDolFilesConfig (file inc/modules/BxDolFilesConfig.php). Method also can be redefined in any files module Config class. For settings default uploader: Need to change in next code: switch ($sMode) { this fragment: case 'flash': make it like: case 'flash': default: $sForm = $this->getRecordFormFile(); Regard |
Ok thanks for the explanation... but is there a way I can apply this only to the video uploader? because now it's affects the photo uploader as well. thanks in advance |