{if $upload_mode eq 'multiple'} {combine_script id='jquery.jgrowl' load='footer' require='jquery' path='themes/default/js/plugins/jquery.jgrowl_minimized.js' } {combine_script id='jquery.uploadify' load='footer' require='jquery' path='admin/include/uploadify/jquery.uploadify.v3.0.0.min.js' } {combine_script id='jquery.ui.progressbar' load='footer'} {combine_css path="themes/default/js/plugins/jquery.jgrowl.css"} {combine_css path="admin/include/uploadify/uploadify.css"} {/if} {include file='include/colorbox.inc.tpl'} {include file='include/add_album.inc.tpl'} {footer_script}{literal} jQuery(document).ready(function(){ function checkUploadStart() { var nbErrors = 0; jQuery("#formErrors").hide(); jQuery("#formErrors li").hide(); if (jQuery("#albumSelect option:selected").length == 0) { jQuery("#formErrors #noAlbum").show(); nbErrors++; } var nbFiles = 0; if (jQuery("#uploadBoxes").size() == 1) { jQuery("input[name^=image_upload]").each(function() { if (jQuery(this).val() != "") { nbFiles++; } }); } else { nbFiles = jQuery(".uploadifyQueueItem").size(); } if (nbFiles == 0) { jQuery("#formErrors #noPhoto").show(); nbErrors++; } if (nbErrors != 0) { jQuery("#formErrors").show(); return false; } else { return true; } } function humanReadableFileSize(bytes) { var byteSize = Math.round(bytes / 1024 * 100) * .01; var suffix = 'KB'; if (byteSize > 1000) { byteSize = Math.round(byteSize *.001 * 100) * .01; suffix = 'MB'; } var sizeParts = byteSize.toString().split('.'); if (sizeParts.length > 1) { byteSize = sizeParts[0] + '.' + sizeParts[1].substr(0,2); } else { byteSize = sizeParts[0]; } return byteSize+suffix; } jQuery("#hideErrors").click(function() { jQuery("#formErrors").hide(); return false; }); jQuery("#uploadWarningsSummary a.showInfo").click(function() { jQuery("#uploadWarningsSummary").hide(); jQuery("#uploadWarnings").show(); return false; }); jQuery("#showPermissions").click(function() { jQuery(this).parent(".showFieldset").hide(); jQuery("#permissions").show(); return false; }); {/literal} {if $upload_mode eq 'html'} {literal} function addUploadBox() { var uploadBox = '

'; jQuery(uploadBox).appendTo("#uploadBoxes"); } addUploadBox(); jQuery("#addUploadBox A").click(function () { addUploadBox(); }); jQuery("#uploadForm").submit(function() { return checkUploadStart(); }); {/literal} {elseif $upload_mode eq 'multiple'} var uploadify_path = '{$uploadify_path}'; var upload_id = '{$upload_id}'; var session_id = '{$session_id}'; var pwg_token = '{$pwg_token}'; var buttonText = "{'Select files'|@translate}"; var sizeLimit = Math.round({$upload_max_filesize} / 1024); /* in KBytes */ {literal} jQuery("#uploadify").uploadify({ 'uploader' : uploadify_path + '/uploadify.php', 'langFile' : uploadify_path + '/uploadifyLang_en.js', 'swf' : uploadify_path + '/uploadify.swf', 'checkExisting' : false, buttonCursor : 'pointer', 'buttonText' : buttonText, 'width' : 300, 'cancelImage' : uploadify_path + '/cancel.png', 'queueID' : 'fileQueue', 'auto' : false, 'multi' : true, 'fileTypeDesc' : 'Photo files', 'fileTypeExts' : '*.jpg;*.JPG;*.jpeg;*.JPEG;*.png;*.PNG;*.gif;*.GIF', 'fileSizeLimit' : sizeLimit, 'progressData' : 'percentage', requeueErrors : false, 'onSelect' : function(event,ID,fileObj) { jQuery("#fileQueue").show(); }, 'onQueueComplete' : function(stats) { jQuery("input[name=submit_upload]").click(); }, onUploadError: function (file,errorCode,errorMsg,errorString,swfuploadifyQueue) { /* uploadify calls the onUploadError trigger when the user cancels a file! */ /* There no error so we skip it to avoid panic. */ if ("Cancelled" == errorString) { return false; } var msg = file.name+', '+errorString; /* Let's put the error message in the form to display once the form is */ /* performed, it makes support easier when user can copy/paste the error */ /* thrown. */ jQuery("#uploadForm").append(''); jQuery.jGrowl( '

onUploadError '+msg, { theme: 'error', header: 'ERROR', life: 4000, sticky: false } ); return false; }, onUploadSuccess: function (file,data,response) { var data = jQuery.parseJSON(data); jQuery("#uploadedPhotos").parent("fieldset").show(); /* Let's display the thumbnail of the uploaded photo, no need to wait the */ /* end of the queue */ jQuery("#uploadedPhotos").prepend(' '); }, onUploadComplete: function(file,swfuploadifyQueue) { var max = parseInt(jQuery("#progressMax").text()); var next = parseInt(jQuery("#progressCurrent").text())+1; var addToProgressBar = 2; if (next <= max) { jQuery("#progressCurrent").text(next); } else { addToProgressBar = 1; } jQuery("#progressbar").progressbar({ value: jQuery("#progressbar").progressbar("option", "value") + addToProgressBar }); } }); jQuery("input[type=button]").click(function() { if (!checkUploadStart()) { return false; } jQuery("#uploadify").uploadifySettings( 'postData', { 'category_id' : jQuery("select[name=category] option:selected").val(), 'level' : jQuery("select[name=level] option:selected").val(), 'upload_id' : upload_id, 'session_id' : session_id, 'pwg_token' : pwg_token } ); nb_files = jQuery(".uploadifyQueueItem").size(); jQuery("#progressMax").text(nb_files); jQuery("#progressbar").progressbar({max: nb_files*2, value:1}); jQuery("#progressCurrent").text(1); jQuery("#uploadProgress").show(); jQuery("#uploadify").uploadifyUpload(); }); {/literal} {/if} }); {/footer_script}

{'Upload Photos'|@translate} {$TABSHEET_TITLE}

{if count($setup_errors) > 0}
{else} {if count($setup_warnings) > 0}
{/if} {if !empty($thumbnails)}
{'Uploaded Photos'|@translate}
{foreach from=$thumbnails item=thumbnail} {$thumbnail.file} {/foreach}

{'Add another set of photos'|@translate}

{else}
{if $upload_mode eq 'multiple'} {/if}
{'Drop into album'|@translate} {'create a new album'|@translate}
{'Select files'|@translate} {if isset($original_resize_maxheight)}

{'The picture dimensions will be reduced to %dx%d pixels.'|@translate:$original_resize_maxwidth:$original_resize_maxheight}

{/if}

{$upload_max_filesize_shorthand}B. {$upload_file_types}. {if isset($max_upload_resolution)}{$max_upload_resolution}Mpx{/if}

{'Maximum file size: %sB.'|@translate:$upload_max_filesize_shorthand} {'Allowed file types: %s.'|@translate:$upload_file_types} {if isset($max_upload_resolution)} {'Approximate maximum resolution: %dM pixels (that\'s %dx%d pixels).'|@translate:$max_upload_resolution:$max_upload_width:$max_upload_height} {/if}

{if $upload_mode eq 'html'}

{'You are using the Browser uploader. Try the Flash uploader instead.'|@translate:$switch_url}

{elseif $upload_mode eq 'multiple'}
You've got a problem with your JavaScript

{'You are using the Flash uploader. Problems? Try the Browser uploader instead.'|@translate:$switch_url}

{/if}

{'Manage Permissions'|@translate}

{if $upload_mode eq 'html'}

{elseif $upload_mode eq 'multiple'}

{/if}
{'Uploaded Photos'|@translate}
{/if} {* empty($thumbnails) *} {/if} {* $setup_errors *}