-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathGeneric_WidgetBoldGrid.php
94 lines (81 loc) · 1.97 KB
/
Generic_WidgetBoldGrid.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
/**
* File: Generic_WidgetBoldGrid.php
*
* @package W3TC
*/
namespace W3TC;
/**
* Class Generic_WidgetBoldGrid
*/
class Generic_WidgetBoldGrid {
/**
* Admin init for dashboard
*
* @return void
*/
public static function admin_init_w3tc_dashboard() {
$show = apply_filters( 'w3tc_generic_boldgrid_show', self::should_show_widget() );
if ( ! $show ) {
return;
}
$o = new Generic_WidgetBoldGrid();
Util_Widget::add2(
'w3tc_boldgrid',
800,
'<div class="w3tc-widget-boldgrid-logo"></div>',
array( $o, 'widget_form' ),
self_admin_url(
'plugin-install.php?tab=plugin-information&plugin=boldgrid-backup&TB_iframe=true&width=772&height=550'
),
'normal',
__( 'View Details', 'w3-total-cache' ),
'thickbox open-plugin-details-modal'
);
add_thickbox();
wp_enqueue_script( 'plugin-install' );
wp_enqueue_script(
'w3tc-boldgrid-widget',
plugins_url( 'Generic_WidgetBoldGrid_View.js', W3TC_FILE ),
array( 'thickbox' ),
W3TC_VERSION,
false
);
}
/**
* Determine whether or not we should show the backup widget.
*
* We will only recommend the backup plugin if we detect that the user is not already
* running a popular WordPress backup plugin.
*
* @since 0.11.0
*
* @return bool
*/
private static function should_show_widget() {
$plugins = get_option( 'active_plugins' );
$backup_plugins = array(
'backup/backup.php',
'backwpup/backwpup.php',
'boldgrid-backup/boldgrid-backup.php',
'duplicator/duplicator.php',
'updraftplus/updraftplus.php',
'wpvivid-backuprestore/wpvivid-backuprestore.php',
);
foreach ( $plugins as $plugin ) {
if ( in_array( $plugin, $backup_plugins, true ) ) {
return false;
}
}
return true;
}
/**
* Widget form
*
* @return void
*/
public function widget_form() {
$install_url = wp_nonce_url( 'admin.php?page=w3tc_dashboard&w3tc_boldgrid_install', 'w3tc' );
include W3TC_DIR . '/Generic_WidgetBoldGrid_View.php';
}
}