| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/httpd/html/baberankings.com/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php
/**
* File: Cdn_BunnyCdn_Widget.php
*
* @since 2.6.0
* @package W3TC
*/
namespace W3TC;
/**
* Class: Cdn_BunnyCdn_Widget
*
* @since 2.6.0
*/
class Cdn_BunnyCdn_Widget {
/**
* Initializes the W3TC BunnyCDN widget in the admin dashboard.
*
* This method adds the necessary actions to initialize the BunnyCDN widget on the W3TC dashboard. It creates an instance
* of the widget class, registers the required styles, and hooks the widget form display to the proper location on the admin page.
*
* @since 2.6.0
*
* @return void
*/
public static function admin_init_w3tc_dashboard() {
$w3tc_o = new Cdn_BunnyCdn_Widget();
add_action( 'admin_print_styles', array( $w3tc_o, 'admin_print_styles' ) );
Util_Widget::add2(
'w3tc_bunnycdn',
400,
'<div class="w3tc-widget-bunnycdn-logo"></div>',
array( $w3tc_o, 'widget_form' ),
Util_Ui::admin_url( 'admin.php?page=w3tc_cdn' ),
'normal'
);
}
/**
* Displays the widget form for BunnyCDN configuration.
*
* This method checks whether the user is authorized to view the BunnyCDN widget. If authorized, it includes a view that
* shows the authorized settings. If the user is not authorized, a view indicating that they are unauthorized will be shown.
*
* @since 2.6.0
*
* @return void
*/
public function widget_form() {
$w3tc_c = Dispatcher::config();
$w3tc_authorized = $w3tc_c->get_string( 'cdn.engine' ) === 'bunnycdn' &&
( ! empty( $w3tc_c->get_integer( 'cdn.bunnycdn.pull_zone_id' ) ) || ! empty( $w3tc_c->get_integer( 'cdnfsd.bunnycdn.pull_zone_id' ) ) );
if ( $w3tc_authorized ) {
include __DIR__ . DIRECTORY_SEPARATOR . 'Cdn_BunnyCdn_Widget_View_Authorized.php';
} else {
include __DIR__ . DIRECTORY_SEPARATOR . 'Cdn_BunnyCdn_Widget_View_Unauthorized.php';
}
}
/**
* Enqueues the styles for the BunnyCDN widget in the admin area.
*
* This method enqueues the required CSS files for the BunnyCDN widget in the WordPress admin area. It ensures that the
* widget's styles are applied correctly on the dashboard page.
*
* @since 2.6.0
*
* @return void
*/
public function admin_print_styles() {
wp_enqueue_style( 'w3tc-widget' );
wp_enqueue_style(
'w3tc-bunnycdn-widget',
plugins_url( 'Cdn_BunnyCdn_Widget_View.css', W3TC_FILE ),
array(),
W3TC_VERSION
);
}
}