CMS Project Sync

This commit is contained in:
2026-04-15 15:59:53 -04:00
parent 015ea75186
commit a747e2a1d9
11220 changed files with 2590467 additions and 0 deletions
@@ -0,0 +1,9 @@
<p>
<?php
$cdn_resize_message = __(
'Multiply the speed and savings! Upload huge images and the Smush CDN will perfectly add the missing image sizes, safely convert to a Next-Gen format (WebP or AVIF), and deliver them directly to your visitors from our blazing-fast multi-location global servers.',
'wp-smushit'
);
echo esc_html( $this->whitelabel->whitelabel_string( $cdn_resize_message ) );
?>
</p>
@@ -0,0 +1,45 @@
<?php
/**
* Upsell CDN meta box.
*
* @since 3.0
* @package WP_Smush
*/
use Smush\Core\Helper;
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<div class="sui-block-content-center sui-message sui-no-padding">
<img src="<?php echo esc_url( WP_SMUSH_URL . 'app/assets/images/graphic-smush-cdn-free-tier.png' ); ?>"
srcset="<?php echo esc_url( WP_SMUSH_URL . 'app/assets/images/graphic-smush-cdn-free-tier@2x.png' ); ?> 2x"
alt="<?php esc_html_e( 'Graphic CDN', 'wp-smushit' ); ?>">
<div class="sui-message-content">
<?php $this->view( 'cdn/header-description' ); ?>
<ol class="sui-upsell-list">
<li>
<span class="sui-icon-check sui-sm" aria-hidden="true"></span>
<?php esc_html_e( "Fix the 'Properly Size Images' audit on Google PageSpeed", 'wp-smushit' ); ?>
</li>
<li>
<span class="sui-icon-check sui-sm" aria-hidden="true"></span>
<?php esc_html_e( 'Automatic Next-Gen conversion (WebP and AVIF) via CDN', 'wp-smushit' ); ?>
</li>
<li>
<span class="sui-icon-check sui-sm" aria-hidden="true"></span>
<?php
echo esc_html( $this->whitelabel->whitelabel_string( __( 'Up to 50 GB Smush CDN included', 'wp-smushit' ) ) );
?>
</li>
</ol>
<a href="<?php echo esc_url( Helper::get_url( 'smush_cdn_upgrade_button' ) ); ?>" class="sui-button sui-button-purple sui-margin-top" target="_blank">
<?php esc_html_e( 'UNLOCK NOW WITH PRO', 'wp-smushit' ); ?>
</a>
</div>
</div>