HEX
Server: LiteSpeed
System: Linux php-prod-1.spaceapp.ru 5.15.0-157-generic #167-Ubuntu SMP Wed Sep 17 21:35:53 UTC 2025 x86_64
User: xnsbb3110 (1041)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/wp-smushit/app/views/cdn/next-gen-activated-notice.php
<?php
/**
 * Next-Gen Formats activated notice.
 *
 * @since 3.18.0
 * @package WP_Smush
 */

use Smush\Core\Next_Gen\Next_Gen_Manager;

if ( ! defined( 'WPINC' ) ) {
	die;
}
$next_gen_manager = Next_Gen_Manager::get_instance();

if ( $next_gen_manager->is_active() && $this->settings->has_next_gen_page() ) : ?>
<div class="sui-notice sui-notice-warning" style="text-align: left" >
	<div class="sui-notice-content">
		<div class="sui-notice-message">
			<span class="sui-notice-icon sui-icon-warning-alert sui-md" aria-hidden="true"></span>
			<p>
				<?php
				esc_html_e( 'Enabling CDN will override the Next-Gen Formats settings as CDN can directly convert images to WebP and AVIF.', 'wp-smushit' );
				?>
			</p>
		</div>
	</div>
</div>
<?php endif; ?>