forked from BoldGrid/w3-total-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExtension_CloudFlare_Page.php
140 lines (109 loc) · 3.42 KB
/
Extension_CloudFlare_Page.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
namespace W3TC;
class Extension_CloudFlare_Page {
static public function admin_print_scripts_w3tc_extensions() {
if ( ( isset( $_REQUEST['extension'] ) &&
Util_Request::get_string( 'extension' ) == 'cloudflare' ) ||
( isset( $_REQUEST['page'] ) &&
Util_Request::get_string( 'page' ) == 'w3tc_cdnfsd' ) ) {
wp_enqueue_script( 'w3tc_extension_cloudflare',
plugins_url( 'Extension_CloudFlare_Page_View.js', W3TC_FILE ),
array( 'jquery' ), '1.0' );
}
}
static public function w3tc_settings_box_cdnfsd() {
include W3TC_DIR . '/Extension_CloudFlare_Cdn_Page_View.php';
}
static public function w3tc_extension_page_cloudflare() {
$c = Dispatcher::config();
$api = Extension_CloudFlare_SettingsForUi::api();
$email = $c->get_string( array( 'cloudflare', 'email' ) );
$key = $c->get_string( array( 'cloudflare', 'key' ) );
$zone_id = $c->get_string( array( 'cloudflare', 'zone_id' ) );
if ( empty( $email ) || empty( $key ) || empty( $zone_id ) ) {
$state = 'not_configured';
} else {
$settings = array();
try {
$settings =
Extension_CloudFlare_SettingsForUi::settings_get( $api );
$state = 'available';
} catch ( \Exception $ex ) {
$state = 'not_available';
$error_message = $ex->getMessage();
}
}
$config = $c;
include W3TC_DIR . '/Extension_CloudFlare_Page_View.php';
}
static private function cloudflare_checkbox( $settings, $data ) {
if ( !isset( $settings[$data['key']] ) )
return;
$value = ( $settings[$data['key']]['value'] == 'on' );
$disabled = !$settings[$data['key']]['editable'];
Util_Ui::table_tr( array(
'id' => $data['key'],
'label' => $data['label'],
'checkbox' => array(
'name' => 'cloudflare_api_' . $data['key'],
'value' => $value,
'disabled' => $disabled,
'label' => 'Enable'
),
'description' => $data['description']
) );
}
static private function cloudflare_selectbox( $settings, $data ) {
if ( !isset( $settings[$data['key']] ) )
return;
$value = $settings[$data['key']]['value'];
$disabled = !$settings[$data['key']]['editable'];
Util_Ui::table_tr( array(
'id' => $data['key'],
'label' => $data['label'],
'selectbox' => array(
'name' => 'cloudflare_api_' . $data['key'],
'value' => $value,
'disabled' => $disabled,
'values' => $data['values']
),
'description' => $data['description']
) );
}
static private function cloudflare_textbox( $settings, $data ) {
if ( !isset( $settings[$data['key']] ) )
return;
$value = $settings[$data['key']]['value'];
$disabled = !$settings[$data['key']]['editable'];
Util_Ui::table_tr( array(
'id' => $data['key'],
'label' => $data['label'],
'textbox' => array(
'name' => 'cloudflare_api_' . $data['key'],
'value' => $value,
'disabled' => $disabled
),
'description' => $data['description']
) );
}
static private function cloudflare_button_save( $id = '' ) {
$b1_id = 'w3tc_cloudflare_save_' . $id;
echo '<p class="submit">';
echo wp_kses(
Util_Ui::nonce_field( 'w3tc' ),
array(
'input' => array(
'type' => array(),
'name' => array(),
'value' => array(),
),
)
);
echo '<input type="submit" id="' . esc_attr( $b1_id ) .
'" name="w3tc_cloudflare_save_settings" ' .
' class="w3tc-button-save button-primary" ' .
' value="' . esc_attr( __( 'Save CloudFlare settings', 'w3-total-cache' ) ) .
'" />';
echo '</p>';
}
}