| Server IP : 172.67.159.97 / Your IP : 216.73.217.154 Web Server : nginx/1.24.0 System : Linux wordpress-sites 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/rebeccaone.com/wp-content/plugins/envira-gallery/assets/js/ |
Upload File : |
/**
* Hooks into the global Plupload instance ('uploader'), which is set when includes/admin/metaboxes.php calls media_form()
* We hook into this global instance and apply our own changes during and after the upload.
*
* @since 1.3.1.3
*/
(function ($) {
$(function () {
if (typeof uploader !== 'undefined') {
// Change "Select Files" button in the pluploader to "Select Files from Your Computer"
$('input#plupload-browse-button').val(envira_gallery_metabox.uploader_files_computer);
// Set a custom progress bar
var envira_bar = $('#envira-gallery .envira-progress-bar'),
envira_progress = $('#envira-gallery .envira-progress-bar div.envira-progress-bar-inner'),
envira_status = $('#envira-gallery .envira-progress-bar div.envira-progress-bar-status'),
envira_output = $('#envira-gallery-output'),
envira_error = $('#envira-gallery-upload-error'),
envira_file_count = 0;
// Uploader has initialized
uploader.bind('Init', function (up) {
// Fade in the uploader, as it's hidden with CSS so the user doesn't see elements reposition on screen and look messy.
$('#drag-drop-area').fadeIn();
$('a.envira-media-library.button').fadeIn();
});
// Files Added for Uploading
uploader.bind('FilesAdded', function (up, files) {
// Hide any existing errors
$(envira_error).html('');
// Get the number of files to be uploaded
envira_file_count = files.length;
// Set the status text, to tell the user what's happening
$('.uploading .current', $(envira_status)).text('1');
$('.uploading .total', $(envira_status)).text(envira_file_count);
$('.uploading', $(envira_status)).show();
$('.done', $(envira_status)).hide();
if (files[0].name.includes('.zip')) {
$('.uploading').hide();
}
// Fade in the upload progress bar
$(envira_bar).fadeIn('fast', function () {
$('p.max-upload-size').css('padding-top', '10px');
});
});
// File Uploading - show progress bar
uploader.bind('UploadProgress', function (up, file) {
// Update the status text
if (file.name.includes('.zip')) {
// If this is a zip file, display a different message...
$('.uploading').hide();
$('.opening_zip', $(envira_status)).show();
} else {
// ...otherwise display how far along we are in uploading the files
$('.uploading .current', $(envira_status)).text(envira_file_count - up.total.queued + 1);
}
// Update the progress bar
$(envira_progress).css({
width: up.total.percent + '%'
});
});
// File Uploaded - AJAX call to process image and add to screen.
uploader.bind('FileUploaded', function (up, file, info) {
// Update the status text
if (file.name.includes('.zip')) {
// If this is a zip file, display a different message...
$('.uploading').hide();
$('.done').hide();
$('.uploading_zip').hide();
$('.envira_bar').show();
$('.envira_status').show();
$('.opening_zip').show();
} else {
// ...otherwise display how far along we are in uploading the files
$('.uploading .current', $(envira_status)).text(envira_file_count - up.total.queued + 1);
}
// AJAX call to Envira to store the newly uploaded image in the meta against this Gallery
$.post(
envira_gallery_metabox.ajax,
{
action: 'envira_gallery_load_image',
nonce: envira_gallery_metabox.load_image,
id: info.response,
post_id: envira_gallery_metabox.id
},
function (res) {
// Prepend or append the new image to the existing grid of images,
// depending on the media_position setting
switch (envira_gallery_metabox.media_position) {
case 'before':
$(envira_output).prepend(res);
break;
case 'after':
default:
$(envira_output).append(res);
break;
}
$(document).trigger('enviraInsert');
// Repopulate the Envira Gallery Image Collection
EnviraGalleryImagesUpdate(false);
if (file.name.includes('.zip')) {
$('.opening_zip').hide();
$('.uploading_zip').hide();
$('.done_zip', $(envira_status)).show();
setTimeout(function () {
$(envira_bar).fadeOut();
$('.done_zip', $(envira_status)).hide();
$('p.max-upload-size').css('padding-top', '0');
}, 8000);
}
},
'json'
);
});
// Files Uploaded
uploader.bind('UploadComplete', function (up, files) {
if (files[files.length - 1].name.includes('.zip')) {
// if this a zip file, return back and let fileuploaded handle it
$('.done').hide();
$('.uploading_zip', $(envira_status)).hide();
return;
}
// Update status
$('.uploading', $(envira_status)).hide();
$('.done', $(envira_status)).show();
if (wp.media.frame.content.get() !== null) {
wp.media.frame.content.get().collection.props.set({ignore: +new Date()});
wp.media.frame.content.get().options.selection.reset();
} else {
wp.media.frame.library.props.set({ignore: +new Date()});
}
// Hide Progress Bar
setTimeout(function () {
$(envira_bar).fadeOut('fast', function () {
$('p.max-upload-size').css('padding-top', '0');
});
}, 1000);
});
// File Upload Error
uploader.bind('Error', function (up, err) {
// Show message
$('#envira-gallery-upload-error').html(
'<div class="error fade"><p>' + err.file.name + ': ' + err.message + '</p></div>'
);
up.refresh();
});
}
});
})(jQuery);