{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='swfobject' load='footer' path='admin/include/uploadify/swfobject.js'} {combine_script id='jquery.uploadify' load='footer' require='jquery' path='admin/include/uploadify/jquery.uploadify.v2.1.0.min.js' } {combine_css path="admin/themes/default/uploadify.jGrowl.css"} {combine_css path="admin/include/uploadify/uploadify.css"} {/if} {footer_script}{literal} jQuery(document).ready(function(){ function checkUploadStart() { var nbErrors = 0; jQuery("#formErrors").hide(); jQuery("#formErrors li").hide(); if (jQuery("input[name=category_type]:checked").val() == "new" && jQuery("input[name=category_name]").val() == "") { jQuery("#formErrors #emptyCategoryName").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; } if (jQuery("select[name=category] option").length == 0) { jQuery('input[name=category_type][value=existing]').attr('disabled', true); jQuery('input[name=category_type]').attr('checked', false); jQuery('input[name=category_type][value=new]').attr('checked', true); } jQuery("input[name=category_type]").click(function () { jQuery("[id^=category_type_]").hide(); jQuery("#category_type_"+jQuery(this).attr("value")).show(); }); jQuery("#hideErrors").click(function() { jQuery("#formErrors").hide(); 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 = 'Browse'; var sizeLimit = {$upload_max_filesize}; {literal} jQuery("#uploadify").uploadify({ 'uploader' : uploadify_path + '/uploadify.swf', 'script' : uploadify_path + '/uploadify.php', 'scriptData' : { 'upload_id' : upload_id, 'session_id' : session_id, 'pwg_token' : pwg_token, }, 'cancelImg' : uploadify_path + '/cancel.png', 'queueID' : 'fileQueue', 'auto' : false, 'displayData' : 'speed', 'buttonText' : buttonText, 'multi' : true, 'fileDesc' : 'Photo files (*.jpg,*.jpeg,*.png)', 'fileExt' : '*.jpg;*.JPG;*.jpeg;*.JPEG;*.png;*.PNG', 'sizeLimit' : sizeLimit, 'onAllComplete' : function(event, data) { if (data.errors) { return false; } else { jQuery("input[name=submit_upload]").click(); } }, onError: function (event, queueID ,fileObj, errorObj) { var msg; if (errorObj.type === "HTTP") { if (errorObj.info === 404) { alert('Could not find upload script.'); msg = 'Could not find upload script.'; } else { msg = errorObj.type+": "+errorObj.info; } } else if (errorObj.type ==="File Size") { msg = "File too big"; msg = msg + '
'+fileObj.name+': '+humanReadableFileSize(fileObj.size); msg = msg + '
Limit: '+humanReadableFileSize(sizeLimit); } else { msg = errorObj.type+": "+errorObj.info; } jQuery.jGrowl( '

'+msg, { theme: 'error', header: 'ERROR', sticky: true } ); jQuery("#fileUploadgrowl" + queueID).fadeOut( 250, function() { jQuery("#fileUploadgrowl" + queueID).remove() } ); return false; }, onCancel: function (a, b, c, d) { var msg = "Cancelled uploading: "+c.name; jQuery.jGrowl( '

'+msg, { theme: 'warning', header: 'Cancelled Upload', life: 4000, sticky: false } ); }, onClearQueue: function (a, b) { var msg = "Cleared "+b.fileCount+" files from queue"; jQuery.jGrowl( '

'+msg, { theme: 'warning', header: 'Cleared Queue', life: 4000, sticky: false } ); }, onComplete: function (a, b ,c, d, e) { var size = Math.round(c.size/1024); jQuery.jGrowl( '

'+c.name+' - '+size+'KB', { theme: 'success', header: 'Upload Complete', life: 4000, sticky: false } ); } }); jQuery("input[type=button]").click(function() { if (!checkUploadStart()) { return false; } jQuery("#uploadify").uploadifyUpload(); }); {/literal} {/if} }); {/footer_script}

{'Upload Photos'|@translate}

{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}
{'Drop into album'|@translate} {if $upload_mode eq 'multiple'} {/if}
{'Parent album'|@translate}
{'Album name'|@translate}
{'Who can see these photos?'|@translate}
{'Select files'|@translate} {if $upload_mode eq 'html'}

{'... or switch to the multiple files form'|@translate}

{'JPEG files or ZIP archives with JPEG files inside please.'|@translate}

{elseif $upload_mode eq 'multiple'}

{'... or switch to the old style form'|@translate}

{/if}
{/if} {* empty($thumbnails) *} {/if} {* $setup_errors *}