
|
Server : Apache System : Linux 182.49.167.72.host.secureserver.net 4.18.0-553.92.1.el8_10.x86_64 #1 SMP Wed Jan 14 06:31:58 EST 2026 x86_64 User : kikai ( 1014) PHP Version : 8.3.30 Disable Function : NONE Directory : /home/kikai/www/wp-content/plugins/hummingbird-performance/admin/pages/react/ |
Upload File : |
<?php
/**
* React based Gzip page.
*
* @since 2.2.0
* @package Hummingbird\Admin\Pages\React
*/
namespace Hummingbird\Admin\Pages\React;
use Hummingbird\Admin\Page;
use Hummingbird\Core\Module_Server;
use Hummingbird\Core\Settings;
use Hummingbird\Core\Utils;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Class Gzip extends Page.
*/
class Gzip extends Page {
/**
* Render the page.
*/
public function render() {
$settings = Settings::get_settings( 'settings' );
?>
<div class="sui-wrap<?php echo $settings['accessible_colors'] ? ' sui-color-accessible ' : ' '; ?>wrap-wp-hummingbird wrap-wp-hummingbird-page <?php echo 'wrap-' . esc_attr( $this->slug ); ?>">
<?php $this->render_header(); ?>
<div class="row" id="<?php echo 'wrap-' . esc_attr( $this->slug ); ?>"></div>
<?php $this->render_footer(); ?>
<?php $this->render_modals(); ?>
</div><!-- end container -->
<?php
}
/**
* Enqueue scripts.
*
* @param string $hook Hook from where the call is made.
*/
public function enqueue_scripts( $hook ) {
parent::enqueue_scripts( $hook );
wp_enqueue_style(
'wphb-sui',
WPHB_DIR_URL . 'admin/assets/css/wphb-react-gzip.min.css',
array(),
WPHB_VERSION
);
wp_enqueue_script(
'wphb-react-gzip',
WPHB_DIR_URL . 'admin/assets/js/wphb-react-gzip.min.js',
array( 'wp-i18n', 'lodash', 'wphb-react-lib' ),
WPHB_VERSION,
true
);
wp_localize_script(
'wphb-react-gzip',
'wphb',
array_merge_recursive(
array(
'isMember' => Utils::is_member(),
'links' => array(
'modules' => array(
'gzip' => Utils::get_admin_menu_url( 'gzip' ),
),
'support' => array(
'chat' => Utils::get_link( 'chat' ),
'forum' => Utils::get_link( 'support' ),
),
),
'nonces' => array(
'HBFetchNonce' => wp_create_nonce( 'wphb-fetch' ),
),
'module' => array(
'is_wpmu_hosting' => isset( $_SERVER['WPMUDEV_HOSTED'] ),
'is_white_labeled' => apply_filters( 'wpmudev_branding_hide_branding', false ),
'compression_type' => get_option( 'wphb_compression_type' ),
'cdn' => Utils::get_module( 'minify' )->is_active() && Utils::get_module( 'minify' )->get_cdn_status(),
'htaccess_error' => isset( $_GET['htaccess-error'] ), // Input data ok.
'htaccess_writable' => Module_Server::is_htaccess_writable(),
'htaccess_written' => Module_Server::is_htaccess_written( 'gzip' ),
'servers_array' => Module_Server::get_servers(),
'server_name' => Module_Server::get_server_type(),
'snippets' => array(
'apache' => Module_Server::get_code_snippet( 'gzip', 'apache' ),
'iis' => Module_Server::get_code_snippet( 'gzip', 'iis' ),
'nginx' => Module_Server::get_code_snippet( 'gzip', 'nginx' ),
),
),
),
Utils::get_tracking_data()
)
);
wp_add_inline_script(
'wphb-react-gzip',
'wp.i18n.setLocaleData( ' . wp_json_encode( Utils::get_locale_data() ) . ', "wphb" );',
'before'
);
}
}