57 lines
1.0 KiB
PHP
57 lines
1.0 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* File: Generic_WidgetSettings.php
|
||
|
*
|
||
|
* @package W3TC
|
||
|
*
|
||
|
* @since X.X.X
|
||
|
*/
|
||
|
|
||
|
namespace W3TC;
|
||
|
|
||
|
/**
|
||
|
* Class Generic_WidgetSettings
|
||
|
*/
|
||
|
class Generic_WidgetSettings {
|
||
|
/**
|
||
|
* Dashboard setup action
|
||
|
*
|
||
|
* @since X.X.X
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public static function admin_init_w3tc_dashboard() {
|
||
|
$o = new Generic_WidgetSettings();
|
||
|
add_action( 'w3tc_widget_setup', array( $o, 'wp_dashboard_setup' ), 200 );
|
||
|
add_action( 'w3tc_network_dashboard_setup', array( $o, 'wp_dashboard_setup' ), 200 );
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* W3TC dashboard Premium Services widget.
|
||
|
*
|
||
|
* @since X.X.X
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function wp_dashboard_setup() {
|
||
|
Util_Widget::add(
|
||
|
'w3tc_settings',
|
||
|
'<div class="w3tc-widget-w3tc-logo"></div><div class="w3tc-widget-text">' . __( 'General Settings', 'w3-total-cache' ) . '</div>',
|
||
|
array( $this, 'widget_form' ),
|
||
|
null,
|
||
|
'normal'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Premium Services widget content.
|
||
|
*
|
||
|
* @since X.X.X
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function widget_form() {
|
||
|
include W3TC_DIR . '/Generic_WidgetSettings_View.php';
|
||
|
}
|
||
|
}
|