uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
.
/
.
/
batcwwjx
/
www
/
wp-content
/
plugins
/
wp-smushit
/
app
/
class-abstract-summary-page.php
/
/
<?php /** * Abstract class for pages with a common top summary meta box. * * @since 3.8.6 * @package Smush\App */ namespace Smush\App; use Smush\Core\Array_Utils; use Smush\Core\CDN\CDN_Helper; use Smush\Core\Resize\Resize_Optimization; use Smush\Core\Settings; use Smush\Core\Stats\Global_Stats; use WP_Smush; if ( ! defined( 'WPINC' ) ) { die; } /** * Class Abstract_Summary_Page */ abstract class Abstract_Summary_Page extends Abstract_Page { /** * Function triggered when the page is loaded before render any content. */ public function on_load() { add_action( 'stats_ui_after_resize_savings', array( $this, 'add_preload_images_status' ), 15 ); add_action( 'stats_ui_after_resize_savings', array( $this, 'add_lossy_level' ), 25 ); add_action( 'stats_ui_after_resize_savings', array( $this, 'cdn_stats_ui' ), 20 ); if ( Abstract_Page::should_render( 'directory' ) ) { add_action( 'stats_ui_after_resize_savings', array( $this, 'directory_stats_ui' ), 10 ); } } /** * Register meta boxes. */ public function register_meta_boxes() { if ( ! is_network_admin() ) { $this->add_meta_box( 'summary', null, array( $this, 'dashboard_summary_meta_box' ), null, null, 'main', array( 'box_class' => 'sui-box sui-summary sui-summary-smush-metabox sui-summary-smush ' . $this->get_whitelabel_class(), 'box_content_class' => false, ) ); // If not a pro user. if ( ! WP_Smush::is_pro() ) { /** * Allows to hook in additional containers after stats box for free version * Pro Version has a full width settings box, so we don't want to do it there. */ do_action( 'wp_smush_after_stats_box' ); } } } /** * Return rebranded class. * * @since 3.8.8 * * @return string */ private function get_whitelabel_class() { if ( ! apply_filters( 'wpmudev_branding_hide_branding', false ) ) { return ''; } return apply_filters( 'wpmudev_branding_hero_image', '' ) ? 'sui-rebranded' : 'sui-unbranded'; } /** * Summary meta box. */ public function dashboard_summary_meta_box() { $array_utils = new Array_Utils(); $core = WP_Smush::get_instance()->core(); $global_stats = $core->get_global_stats(); $this->view( 'summary/meta-box', array( 'human_bytes' => $array_utils->get_array_value( $global_stats, 'human_bytes' ), 'remaining' => $array_utils->get_array_value( $global_stats, 'remaining_count' ), 'resize_count' => $array_utils->get_array_value( $global_stats, 'count_resize' ), 'resize_enabled' => (bool) $this->settings->get( 'resize' ), 'resize_savings' => $array_utils->get_array_value( $global_stats, 'savings_resize_human' ), 'stats_percent' => $array_utils->get_array_value( $global_stats, 'savings_percent' ), 'total_optimized' => $array_utils->get_array_value( $global_stats, 'count_images' ), 'percent_grade' => $array_utils->get_array_value( $global_stats, 'percent_grade' ), 'percent_metric' => $array_utils->get_array_value( $global_stats, 'percent_metric' ), 'percent_optimized' => $array_utils->get_array_value( $global_stats, 'percent_optimized' ), ) ); } public function add_preload_images_status() { $is_preload_images_active = $this->settings->is_lcp_preload_enabled(); $utm_link = $this->get_utm_link( array( 'utm_campaign' => 'smush_preload-critical-images_summary', ) ); ?> <li class="smush-preload-images-status"> <span class="sui-list-label"> <?php esc_html_e( 'Preload Critical Images', 'wp-smushit' ); ?> </span> <span class="sui-list-detail"> <?php if ( ! WP_Smush::is_pro() ) : ?> <a href="<?php echo esc_url( $utm_link ); ?>" target="_blank" class="smush-upgrade-text"> <?php esc_html_e( 'Upgrade', 'wp-smushit' ); ?> </a> <span class="sui-tooltip sui-tooltip-constrained sui-tooltip-top-right" style="--tooltip-width: 360px;" data-tooltip="<?php esc_attr_e( "Preload helps to improve the Largest Contentful Paint (LCP) metric by optimizing images that often form the main viewport content. Since LCP measures the rendering time of the largest visible element, Smush helps to achieve Google's recommended 2.5-second benchmark for good user experience.", 'wp-smushit' ); ?>"> <span class="sui-tag sui-tag-sm sui-tag-purple"><?php esc_html_e( 'Pro', 'wp-smushit' ); ?></span> </span> <?php elseif ( $is_preload_images_active ): ?> <span class="wp-smush-preload-images-status sui-tag sui-tag-green"> <?php esc_html_e( 'Active', 'wp-smushit' ); ?> </span> <?php else: ?> <a href="<?php echo esc_url( $this->get_url( 'smush-lazy-preload&view=preload' ) ); ?>"> <span class="wp-smush-preload-images-status sui-tag" style="cursor: pointer;"> <?php esc_html_e( 'Inactive', 'wp-smushit' ); ?> </span> </a> <?php endif; ?> </span> </li> <?php } /** * Add CDN stats to stats meta box. * * @since 2.8.6 */ public function cdn_stats_ui() { $status = CDN_Helper::get_instance()->get_cdn_status_string(); if ( 'disabled' === $status ) { return; } $overcap_message = __( "You've gone through your CDN bandwidth limit, so we’ve stopped serving your images via the CDN. Contact your administrator to upgrade your Smush CDN plan to reactivate this service", 'wp-smushit' ); $upgrade_message = __( "You're almost through your CDN bandwidth limit. Please contact your administrator to upgrade your Smush CDN plan to ensure you don't lose this service", 'wp-smushit' ); $activating_message = __( 'Your media is currently being served from the WPMU DEV CDN. Bulk and Directory smush features are treated separately and will continue to run independently.', 'wp-smushit' ); ?> <li class="smush-cdn-stats"> <span class="sui-list-label"><?php esc_html_e( 'CDN', 'wp-smushit' ); ?></span> <span class="wp-smush-stats sui-list-detail"> <i class="sui-icon-loader sui-loading sui-hidden" aria-hidden="true" title="<?php esc_attr_e( 'Updating Stats', 'wp-smushit' ); ?>"></i> <?php if ( 'overcap' === $status ) : ?> <span class="sui-tooltip sui-tooltip-top-right sui-tooltip-constrained" data-tooltip="<?php echo esc_attr( $this->whitelabel->whitelabel_string( $overcap_message ) ); ?>"> <i class="sui-icon-warning-alert sui-error sui-md" aria-hidden="true"></i> </span> <span><?php esc_html_e( 'Overcap', 'wp-smushit' ); ?></span> <?php elseif ( 'upgrade' === $status ) : ?> <span class="sui-tooltip sui-tooltip-top-right sui-tooltip-constrained" data-tooltip="<?php echo esc_attr( $this->whitelabel->whitelabel_string( $upgrade_message ) ); ?>"> <i class="sui-icon-warning-alert sui-warning sui-md" aria-hidden="true"></i> </span> <span><?php esc_html_e( 'Needs upgrade', 'wp-smushit' ); ?></span> <?php elseif ( 'activating' === $status ) : ?> <i class="sui-icon-check-tick sui-info sui-md" aria-hidden="true"></i> <span><?php esc_html_e( 'Activating', 'wp-smushit' ); ?></span> <?php else : ?> <span class="sui-tooltip sui-tooltip-top-right sui-tooltip-constrained" data-tooltip="<?php echo esc_attr( $this->whitelabel->whitelabel_string( $activating_message ) ); ?>"> <i class="sui-icon-check-tick sui-success sui-md" aria-hidden="true"></i> </span> <span><?php esc_html_e( 'Active', 'wp-smushit' ); ?></span> <?php endif; ?> </span> </li> <?php } /** * Set directory smush stats to stats box. * * @return void */ public function directory_stats_ui() { $dir_smush_stats = get_option( 'dir_smush_stats' ); $human = 0; if ( ! empty( $dir_smush_stats ) && ! empty( $dir_smush_stats['dir_smush'] ) ) { $human = ! empty( $dir_smush_stats['dir_smush']['bytes'] ) && $dir_smush_stats['dir_smush']['bytes'] > 0 ? $dir_smush_stats['dir_smush']['bytes'] : 0; } ?> <li class="smush-dir-savings"> <span class="sui-list-label"><?php esc_html_e( 'Directory Smush Savings', 'wp-smushit' ); ?> <?php if ( $human <= 0 ) { ?> <p class="wp-smush-stats-label-message sui-hidden-sm sui-hidden-md sui-hidden-lg"> <?php esc_html_e( "Smush images that aren't located in your uploads folder.", 'wp-smushit' ); ?> <a href="<?php echo esc_url( $this->get_url( 'smush-bulk#directory_smush-settings-row' ) ); ?>" class="wp-smush-dir-link" id="<?php echo 'smush-bulk' === $this->get_slug() ? 'smush-directory-open-modal' : ''; ?>" title="<?php esc_attr_e( "Select a directory you'd like to Smush.", 'wp-smushit' ); ?>"> <?php esc_html_e( 'Choose directory', 'wp-smushit' ); ?> </a> </p> <?php } ?> </span> <span class="wp-smush-stats sui-list-detail"> <i class="sui-icon-loader sui-loading" aria-hidden="true" title="<?php esc_attr_e( 'Updating Stats', 'wp-smushit' ); ?>"></i> <span class="wp-smush-stats-human"></span> <span class="wp-smush-stats-sep sui-hidden">/</span> <span class="wp-smush-stats-percent"></span> <a href="<?php echo esc_url( $this->get_url( 'smush-bulk#directory_smush-settings-row' ) ); ?>" class="wp-smush-dir-link sui-hidden-xs sui-hidden" id="<?php echo 'smush-bulk' === $this->get_slug() ? 'smush-directory-open-modal' : ''; ?>" title="<?php esc_attr_e( "Select a directory you'd like to Smush.", 'wp-smushit' ); ?>"> <?php esc_html_e( 'Choose directory', 'wp-smushit' ); ?> </a> </span> </li> <?php } public function add_lossy_level() { return $this->view( 'summary/lossy-level' ); } }
/home/././batcwwjx/www/wp-content/plugins/wp-smushit/app/class-abstract-summary-page.php