![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/www/wp-content/themes/dt-the7/inc/extensions/meta-box/js/ |
jQuery( document ).ready( function( $ ) { // Add more file $( '.the7-mb-add-file' ).each( function() { var $this = $( this ), $uploads = $this.siblings( '.file-input' ), $first = $uploads.first(), uploadCount = $uploads.length, $fileList = $this.closest( '.the7-mb-input' ).find( '.the7-mb-uploaded' ), fileCount = $fileList.children( 'li' ).length, maxFileUploads = $fileList.data( 'max_file_uploads' ); // 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 $( '.the7-mb-uploaded' ).on( 'click', '.the7-mb-delete-file', function() { var $this = $( this ), $parent = $this.parents( 'li' ), $container = $this.closest( '.the7-mb-uploaded' ), data = { action: 'the7_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 ) { var res = wpAjax.parseAjaxResponse( r, 'ajax-response' ); if ( res.errors ) { alert( res.responses[0].errors[0].message ); } else { $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.the7mbFile' ); } }, 'xml' ); return false; } ); //Remove deleted file $( '.the7-mb-uploaded' ).on( 'transitionend webkitTransitionEnd otransitionend', 'li.removed', function() { $( this ).remove(); }); $( 'body' ).on( 'update.the7mbFile', '.the7-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; } ); } );