HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/delta/wp-content/plugins/wp-smushit/app/common/scan-progress-bar.php
<?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
 */

if ( ! defined( 'WPINC' ) ) {
	die;
}

?>
<div class="wp-smush-scan-progress-bar-wrapper sui-hidden">
	<div class="wp-smush-scan-progress-bar-inner">
		<div class="wp-smush-progress-status">
			<div class="wp-smush-scan-description">
				<h4><?php esc_html_e( 'Scanning Media Library', 'wp-smushit' ); ?></h4>
				<span class="wp-smush-progress-percent">0%</span>
				<p>
				<?php
					/* translators: 1: Open span tag <span> 2: Close span tag </span> */
					printf( esc_html__( 'Image re-check in progress - %1$s0 seconds%2$s remaining', 'wp-smushit' ), '<span class="wp-smush-remaining-time">', '</span>' );
				?>
				</p>
				<p class="wp-smush-scan-hold-on-notice sui-hidden">
					<?php
						/* translators: 1: <strong> 2: </strong> */
						printf( 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>
		<button type="button" class="sui-button wp-smush-cancel-scan-progress-btn">
			<?php esc_html_e( 'Cancel Scan', 'wp-smushit' ); ?>
		</button>
	</div>
	<div class="sui-progress">
		<div class="sui-progress-bar">
			<span class="wp-smush-progress-inner" style="width: 0.1%"></span>
		</div>
	</div>
</div>
<?php
	$this->view(
		'stop-scanning',
		array(),
		'modals'
	);

	$this->view(
		'retry-scan-notice',
		array(),
		'modals'
	);