![]() 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/mets-rebuild.corals.io/wp-content/plugins/wp-smushit/app/common/ |
<?php /** * Progress bar block. * * @package WP_Smush * * @var integer $count Total number of images to smush. * @var string $background_in_processing_notice * @var bool $background_processing_enabled * @var string $in_processing_notice */ if ( ! defined( 'WPINC' ) ) { die; } ?> <div class="wp-smush-bulk-progress-bar-wrapper sui-hidden"> <div class="sui-notice sui-notice-warning sui-hidden"></div> <div id="wp-smush-running-notice" class="sui-notice"> <div class="sui-notice-content"> <div class="sui-notice-message"> <i class="sui-notice-icon sui-icon-info sui-md" aria-hidden="true"></i> <p> <?php if ( $background_processing_enabled ) { $desc = $background_in_processing_notice; } else { $desc = $in_processing_notice; } echo wp_kses_post( $desc ); ?> </p> </div> </div> </div> <div class="sui-progress-block sui-progress-can-close"> <div class="sui-progress"> <span class="sui-progress-icon" aria-hidden="true"> <i class="sui-icon-loader sui-loading"></i> </span> <div class="sui-progress-text"> <span class="wp-smush-images-percent">0%</span> </div> <div class="sui-progress-bar"> <span class="wp-smush-progress-inner" style="width: 0%"></span> </div> </div> <?php // $cancel_btn_class = $background_processing_enabled ? 'wp-smush-bo-cancel-bulk' : 'wp-smush-cancel-bulk'; $cancel_btn_class = 'wp-smush-cancel-btn'; ?> <button class="sui-progress-close <?php echo esc_attr( $cancel_btn_class ); ?>" type="button"> <?php esc_html_e( 'Cancel', 'wp-smushit' ); ?> </button> <button class="sui-progress-close sui-button-icon sui-tooltip wp-smush-all sui-hidden" type="button" data-tooltip="<?php esc_html_e( 'Resume scan.', 'wp-smushit' ); ?>"> <i class="sui-icon-play"></i> </button> </div> <div class="sui-box-footer" style="border-top:none;margin:10px 0 0;padding:0;"> <div class="sui-actions-left" style="margin:0"> <div class="wp-smush-bulk-hold-on-notice sui-hidden"> <p class="sui-p-small" style="color:#333"> <?php printf( /* translators: 1: Open <strong> tag, 2: Close </strong> tag */ esc_html__( '%1$sNote:%2$s The process is taking longer than expected, please hold on while we try to resolve this for you.', 'wp-smushit' ), '<strong>', '</strong>' ); ?> </p> </div> </div> <!-- Elements aligned to right --> <div class="sui-actions-right"> <div class="sui-progress-state"> <span class="sui-progress-state-text"><span>0</span>/<span class="wp-smush-total-count"><?php echo absint( $count ); ?></span> </span> <span class="sui-progress-state-unit"><?php esc_html_e( 'images optimized', 'wp-smushit' ); ?></span> </div> </div> </div> <div id="bulk-smush-resume-button" class="sui-hidden"> <a class="sui-button wp-smush-started wp-smush-resume-bulk-smush"> <i class="sui-icon-play" aria-hidden="true"></i> <?php esc_html_e( 'Resume', 'wp-smushit' ); ?> </a> </div> </div> <?php $this->view( 'stop-bulk-smush', array(), 'modals' );