| Server IP : 68.178.247.200 / Your IP : 216.73.216.14 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/x9dppmxs4rgd/www/wp-content/plugins/youtube-showcase/assets/ext/emd-meta-box/js/ |
Upload File : |
jQuery( document ).ready( function( $ )
{
function validateExtension(file,mimeType){
var ext = file.name.split('.').pop().toLowerCase();
if(mimeType.length == 0){
return true;
}
var allowed = mimeType.split(",");
if($.inArray(ext, allowed) == -1) {
return false;
}
else{
return true;
}
}
function validateSize(file,maxSize){
fsize = (file.size/1024);
if (fsize > maxSize){
return false;
}
else{
return true;
}
}
// Add more file
$( '.emd-mb-add-file' ).each( function()
{
var $this = $( this ),
$uploads = $this.siblings( '.file-input' ),
$first = $uploads.first(),
uploadCount = $uploads.length,
$fileList = $this.closest( '.emd-mb-input' ).find( '.emd-mb-uploaded' ),
fileCount = $fileList.children( 'li' ).length,
maxFileUploads = $fileList.data( 'max_file_uploads' );
mimeType = $fileList.data( 'mime_type' );
maxSize = $fileList.data( 'max_size' );
// Hide "Add New File" and input fields when loaded
if ( maxFileUploads > 0 )
{
if ( uploadCount + fileCount >= maxFileUploads )
$this.hide();
if ( fileCount >= maxFileUploads )
$uploads.hide();
}
$this.click( function()
{
// Clone upload input only when needed
if ( maxFileUploads <= 0 || uploadCount + fileCount < maxFileUploads )
{
$first.clone().insertBefore( $this );
uploadCount++;
// If there're too many upload inputs, hide "Add New File"
if ( maxFileUploads > 0 && uploadCount + fileCount >= maxFileUploads )
$this.hide();
}
return false;
} );
} );
// Delete file via Ajax
$( '.emd-mb-uploaded' ).on( 'click', '.emd-mb-delete-file', function()
{
var $this = $( this ),
$parent = $this.parents( 'li' ),
$container = $this.closest( '.emd-mb-uploaded' ),
data = {
action: 'emd_mb_delete_file',
_ajax_nonce: $container.data( 'delete_nonce' ),
post_id: $( '#post_ID' ).val(),
field_id: $container.data( 'field_id' ),
attachment_id: $this.data( 'attachment_id' ),
force_delete: $container.data( 'force_delete' )
};
$.post( ajaxurl, data, function( r )
{
if ( !r.success )
{
alert( r.data );
return;
}
$('.file-input').show();
$parent.addClass( 'removed' );
// If transition events not supported
if (
!( 'ontransitionend' in window )
&& ( 'onwebkittransitionend' in window )
&& !( 'onotransitionend' in myDiv || navigator.appName == 'Opera' )
)
{
$parent.remove();
$container.trigger( 'update.emdmbFile' );
}
$( '.emd-mb-uploaded' ).on( 'transitionend webkitTransitionEnd otransitionend', 'li.removed', function()
{
$( this ).remove();
$container.trigger( 'update.emdmbFile' );
} );
}, 'json' );
return false;
} );
//Remove deleted file
$( '.emd-mb-uploaded' ).on( 'transitionend webkitTransitionEnd otransitionend', 'li.removed', function() {
$( this ).remove();
});
$( 'body' ).on( 'update.emdmbFile', '.emd-mb-uploaded', function()
{
var $fileList = $( this ),
maxFileUploads = $fileList.data( 'max_file_uploads' ),
$uploader = $fileList.siblings( '.new-files' ),
numFiles = $fileList.children().length;
numFiles > 0 ? $fileList.removeClass( 'hidden' ) : $fileList.addClass( 'hidden' );
// Return if maxFileUpload = 0
if ( maxFileUploads === 0 )
return false;
// Hide files button if reach max file uploads
numFiles >= maxFileUploads ? $uploader.addClass( 'hidden' ) : $uploader.removeClass( 'hidden' );
return false;
} );
$('.file-input :file').change(function(){
f = $(this)[0].files[0];
if(validateSize(f,maxSize) === false){
$(this).val('');
$('#emd-file-err-msg').html(emdmbFile.maxFileSizeError);
$('#emd-file-err-msg').show();
}
else if(validateExtension(f,mimeType) === false){
$(this).val('');
$('#emd-file-err-msg').html(emdmbFile.FileExtError);
$('#emd-file-err-msg').show();
}
else {
$('#emd-file-err-msg').hide();
}
});
});