2011-04-11 06:43:27 +02:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
|
|
|
|
<title>Plupload - Queue widget example</title>
|
2011-08-05 08:40:12 +02:00
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
|
|
font-family:Verdana, Geneva, sans-serif;
|
|
|
|
font-size:13px;
|
|
|
|
color:#333;
|
|
|
|
background:url(../bg.jpg);
|
|
|
|
}
|
|
|
|
</style>
|
2011-04-11 06:43:27 +02:00
|
|
|
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/base/jquery-ui.css" type="text/css" />
|
2011-08-05 08:40:12 +02:00
|
|
|
<link rel="stylesheet" href="../../js/jquery.ui.plupload/css/jquery.ui.plupload.css" type="text/css" />
|
2011-04-11 06:43:27 +02:00
|
|
|
|
2011-08-05 08:40:12 +02:00
|
|
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
|
|
|
|
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js"></script>
|
2011-04-11 06:43:27 +02:00
|
|
|
<script type="text/javascript" src="http://bp.yahooapis.com/2.4.21/browserplus-min.js"></script>
|
|
|
|
|
2011-08-05 08:40:12 +02:00
|
|
|
<script type="text/javascript" src="../../js/plupload.js"></script>
|
|
|
|
<script type="text/javascript" src="../../js/plupload.gears.js"></script>
|
|
|
|
<script type="text/javascript" src="../../js/plupload.silverlight.js"></script>
|
|
|
|
<script type="text/javascript" src="../../js/plupload.flash.js"></script>
|
|
|
|
<script type="text/javascript" src="../../js/plupload.browserplus.js"></script>
|
|
|
|
<script type="text/javascript" src="../../js/plupload.html4.js"></script>
|
|
|
|
<script type="text/javascript" src="../../js/plupload.html5.js"></script>
|
|
|
|
<script type="text/javascript" src="../../js/jquery.ui.plupload/jquery.ui.plupload.js"></script>
|
|
|
|
|
2011-04-11 06:43:27 +02:00
|
|
|
<!--<script type="text/javascript" src="http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js"></script>-->
|
2011-08-05 08:40:12 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2011-04-11 06:43:27 +02:00
|
|
|
|
2011-08-05 08:40:12 +02:00
|
|
|
<h1>jQuery UI Widget</h1>
|
|
|
|
|
|
|
|
<p>You can see this example with different themes on the <a href="http://plupload.com/example_jquery_ui.php">www.plupload.com</a> website.</p>
|
|
|
|
|
|
|
|
<form method="post" action="dump.php">
|
|
|
|
<div id="uploader">
|
|
|
|
<p>You browser doesn't have Flash, Silverlight, Gears, BrowserPlus or HTML5 support.</p>
|
|
|
|
</div>
|
|
|
|
</form>
|
2011-04-11 06:43:27 +02:00
|
|
|
<script type="text/javascript">
|
|
|
|
// Convert divs to queue widgets when the DOM is ready
|
|
|
|
$(function() {
|
|
|
|
$("#uploader").plupload({
|
|
|
|
// General settings
|
|
|
|
runtimes : 'flash,html5,browserplus,silverlight,gears,html4',
|
2011-08-05 08:40:12 +02:00
|
|
|
url : '../upload.php',
|
2011-04-11 06:43:27 +02:00
|
|
|
max_file_size : '1000mb',
|
|
|
|
max_file_count: 20, // user can add no more then 20 files at a time
|
|
|
|
chunk_size : '1mb',
|
|
|
|
unique_names : true,
|
|
|
|
multiple_queues : true,
|
|
|
|
|
|
|
|
// Resize images on clientside if we can
|
|
|
|
resize : {width : 320, height : 240, quality : 90},
|
|
|
|
|
|
|
|
// Rename files by clicking on their titles
|
|
|
|
rename: true,
|
|
|
|
|
|
|
|
// Sort files
|
|
|
|
sortable: true,
|
|
|
|
|
|
|
|
// Specify what files to browse for
|
|
|
|
filters : [
|
|
|
|
{title : "Image files", extensions : "jpg,gif,png"},
|
|
|
|
{title : "Zip files", extensions : "zip,avi"}
|
|
|
|
],
|
|
|
|
|
|
|
|
// Flash settings
|
2011-08-05 08:40:12 +02:00
|
|
|
flash_swf_url : '../../js/plupload.flash.swf',
|
2011-04-11 06:43:27 +02:00
|
|
|
|
|
|
|
// Silverlight settings
|
2011-08-05 08:40:12 +02:00
|
|
|
silverlight_xap_url : '../../js/plupload.silverlight.xap'
|
2011-04-11 06:43:27 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// Client side form validation
|
|
|
|
$('form').submit(function(e) {
|
|
|
|
var uploader = $('#uploader').plupload('getUploader');
|
|
|
|
|
|
|
|
// Validate number of uploaded files
|
|
|
|
if (uploader.total.uploaded == 0) {
|
|
|
|
// Files in queue upload them first
|
|
|
|
if (uploader.files.length > 0) {
|
|
|
|
// When all files are uploaded submit form
|
|
|
|
uploader.bind('UploadProgress', function() {
|
|
|
|
if (uploader.total.uploaded == uploader.files.length)
|
|
|
|
$('form').submit();
|
|
|
|
});
|
|
|
|
|
|
|
|
uploader.start();
|
|
|
|
} else
|
|
|
|
alert('You must at least upload one file.');
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|