| Server IP : 37.27.51.148 / Your IP : 216.73.216.189 Web Server : nginx/1.14.1 System : Linux libra 4.18.0-553.76.1.el8_10.x86_64 #1 SMP Thu Sep 25 11:17:52 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.31 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/plugins/imagify/assets/js/ |
Upload File : |
(function($, d, w, undefined) { // eslint-disable-line no-unused-vars, no-shadow, no-shadow-restricted-names
var bulkOpt;
/**
* Add a "Imagify'em all" in the select list.
*/
bulkOpt = '<option value="imagify-bulk|optimize">' + imagifyLibrary.labels.bulkActionsOptimize + '</option>';
if ( $( '.button-imagify-optimize-missing-sizes' ).length ) {
// If we have items that have missing sizes.
bulkOpt += '<option value="imagify-bulk|optimize_missing_sizes">' + imagifyLibrary.labels.bulkActionsOptimizeMissingSizes + '</option>';
}
if ( imagifyLibrary.backupOption || $( '.attachment-has-backup' ).length ) {
// If the backup option is enabled, or if we have items that can be restored.
bulkOpt += '<option value="imagify-bulk|restore">' + imagifyLibrary.labels.bulkActionsRestore + '</option>';
}
$( '.bulkactions select[name="action"] option:last-child' ).before( bulkOpt );
$( '.bulkactions select[name="action2"] option:last-child' ).before( bulkOpt );
$( '#bulkaction option:last-child' ).after( bulkOpt );
/**
* Process optimization for all selected images.
*/
$( '#doaction' )
.add( '#doaction2' )
.add( '#bulkaction + [name="showThickbox"]' )
.on( 'click', function( e ) {
var value = $( this ).prev( 'select' ).val().split( '|' ),
action, ids;
if ( 'imagify-bulk' !== value[0] ) {
return;
}
e.preventDefault();
action = value[1];
ids = $( 'input[name^="media"]:checked, input[name^="doaction"]:checked' ).map( function() {
return this.value;
} ).get();
ids.forEach( function( id, index ) {
setTimeout( function() {
$( 'table .imagify-data-actions-container[data-id="' + id + '"] .button-imagify-' + action ).first().trigger( 'click' );
}, index * 300 );
} );
} );
} )(jQuery, document, window);