| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/lib/flex/varien/varien/upload/ |
Upload File : |
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
package varien.upload
{
import flash.errors.IOError;
import flash.errors.IllegalOperationError;
import flash.events.Event;
import flash.net.FileReference;
import mx.core.IMXMLObject;
/**
* @eventType varien.upload.UploaderEvent.SELECT
*/
[Event(name='select', type='varien.upload.UploaderEvent')]
public class UploaderSingle extends Uploader implements IMXMLObject
{
protected var _file:FileReference;
/**
* Constructor
*
* @param config configuration of uploader
*/
public function UploaderSingle(config:Object=null)
{
super(config);
_file = new FileReference();
_file.addEventListener(Event.SELECT, _handleSelect);
}
/**
* Browse files for upload
*/
override public function browse():void
{
_file.browse(useTypeFilter ? getTypeFiltersArray() : null);
}
override protected function _handleSelect(event:Event):void
{
var badFile:Boolean = false;
var zeroSize:Boolean = false;
try {
_file.size;
}
catch (exception:IllegalOperationError) {
badFile = true;
}
catch (exception:IOError) { // If file size == 0
zeroSize = true;
}
if(!badFile) {
var id:String = _uniqueFileId(_file);
_files[id] = {status:Uploader.FILE_NEW, file:_file, uploadTry:0};
if(zeroSize) {
_files[id].status = Uploader.FILE_ERROR;
_files[id].errorCode = Uploader.ERROR_ZERO_SIZE;
_files[id].error = 'File size should be more than 0 bytes';
}
}
_createEvent(UploaderEvent.SELECT);
}
}
}