-
Notifications
You must be signed in to change notification settings - Fork 14
/
wp-php-console.php
308 lines (240 loc) · 7.27 KB
/
wp-php-console.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
<?php
/**
* Plugin Name: WP PHP Console
* Plugin URI: https://github.com/unfulvio/wp-php-console/
* Description: An implementation of PHP Console for WordPress. Easily debug and trace PHP errors and warnings from your Chrome dev tools console using a Google Chrome extension.
*
* Version: 1.6.0
*
* Author: Fulvio Notarstefano
* Author URI: https://github.com/unfulvio/
*
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
*
* Text Domain: wp-php-console
* Domain Path: /languages
*
* WP PHP Console
* Copyright (c) 2014-2020 Fulvio Notarstefano <fulvio.notarstefano@gmail.com>
* and contributors https://github.com/unfulvio/wp-php-console/graphs/contributors
*
* PHP Console server library
* Copyright (c) 2011-2020 by Barbushin Sergey <barbushin@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 3 or, at
* your discretion, any later version, as published by the Free
* Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* A copy of the license is also available through the world-wide-web
* at this URL: http://www.gnu.org/licenses/gpl-3.0.html
*/
defined( 'ABSPATH' ) or exit;
/**
* WP PHP Console loader.
*
* @since 1.5.4
*/
class WP_PHP_Console_Loader {
/** minimum PHP version required by this plugin */
const MINIMUM_PHP_VERSION = '5.6.0';
/** minimum WordPress version required by this plugin */
const MINIMUM_WP_VERSION = '3.6.0';
/** the plugin name, for displaying notices */
const PLUGIN_NAME = 'WP PHP Console';
/** @var \WP_PHP_Console_Loader single instance of this class */
protected static $instance;
/** @var array the admin notices to add */
protected $notices = array();
/**
* Loads WP PHP Console after performing compatibility checks.
*
* @since 1.5.4
*/
protected function __construct() {
register_activation_hook( __FILE__, array( $this, 'activation_check' ) );
add_action( 'admin_init', array( $this, 'check_environment' ) );
add_action( 'admin_init', array( $this, 'add_plugin_notices' ) );
add_action( 'admin_notices', array( $this, 'admin_notices' ), 15 );
// if the environment check fails, initialize the plugin
if ( $this->is_environment_compatible() && $this->is_wp_compatible() ) {
$this->init_plugin();
}
}
/**
* Cloning instances is forbidden due to singleton pattern.
*
* @since 1.5.4
*/
public function __clone() {
_doing_it_wrong( __FUNCTION__, sprintf( 'You cannot clone instances of %s.', get_class( $this ) ), '1.5.4' );
}
/**
* Unserializing instances is forbidden due to singleton pattern.
*
* @since 1.5.4
*/
public function __wakeup() {
_doing_it_wrong( __FUNCTION__, sprintf( 'You cannot unserialize instances of %s.', get_class( $this ) ), '1.5.4' );
}
/**
* Initializes the plugin.
*
* @internal
*
* @since 1.5.4
*/
private function init_plugin() {
// autoload plugin and vendor files
$loader = require_once plugin_dir_path( __FILE__ ) . 'vendor/autoload.php';
// register plugin namespace with autoloader
$loader->addPsr4( 'WP_PHP_Console\\', __DIR__ . '/src' );
require_once plugin_dir_path( __FILE__ ) . 'src/Functions.php';
wp_php_console();
}
/**
* Checks the server environment and other factors and deactivates plugins as necessary.
*
* Based on http://wptavern.com/how-to-prevent-wordpress-plugins-from-activating-on-sites-with-incompatible-hosting-environments
*
* @internal
*
* @since 1.5.4
*/
public function activation_check() {
if ( ! $this->is_environment_compatible() ) {
$this->deactivate_plugin();
wp_die( self::PLUGIN_NAME . ' could not be activated. ' . $this->get_environment_message() );
}
}
/**
* Checks the environment on loading WordPress, just in case the environment changes after activation.
*
* @internal
*
* @since 1.5.4
*/
public function check_environment() {
if ( ! $this->is_environment_compatible() && is_plugin_active( plugin_basename( __FILE__ ) ) ) {
$this->deactivate_plugin();
$this->add_admin_notice( 'bad_environment', 'error', self::PLUGIN_NAME . ' has been deactivated. ' . $this->get_environment_message() );
}
}
/**
* Adds notices for out-of-date WordPress and/or WooCommerce versions.
*
* @internal
*
* @since 1.5.4
*/
public function add_plugin_notices() {
if ( ! $this->is_wp_compatible() ) {
$this->add_admin_notice( 'update_wordpress', 'error', sprintf(
'%s requires WordPress version %s or higher. Please %supdate WordPress »%s',
'<strong>' . self::PLUGIN_NAME . '</strong>',
self::MINIMUM_WP_VERSION,
'<a href="' . esc_url( admin_url( 'update-core.php' ) ) . '">', '</a>'
) );
}
}
/**
* Determines if the plugin is WordPress compatible.
*
* @since 1.5.4
*
* @return bool
*/
private function is_wp_compatible() {
global $wp_version;
return version_compare( $wp_version, self::MINIMUM_WP_VERSION, '>=' );
}
/**
* Deactivates the plugin.
*
* @since 1.5.4
*/
private function deactivate_plugin() {
deactivate_plugins( plugin_basename( __FILE__ ) );
if ( isset( $_GET['activate'] ) ) {
unset( $_GET['activate'] );
}
}
/**
* Adds an admin notice to be displayed.
*
* @since 1.5.4
*
* @param string $slug notice ID
* @param string $class CSS class
* @param string $message message content
*/
private function add_admin_notice( $slug, $class, $message ) {
$this->notices[ $slug ] = array(
'class' => $class,
'message' => $message
);
}
/**
* Displays admin notices.
*
* @internal
*
* @since 1.5.4
*/
public function admin_notices() {
foreach ( (array) $this->notices as $notice_key => $notice ) :
?>
<div class="<?php echo esc_attr( $notice['class'] ); ?>">
<p><?php echo wp_kses( $notice['message'], array( 'a' => array( 'href' => array() ) ) ); ?></p>
</div>
<?php
endforeach;
}
/**
* Determines if the server environment is compatible with this plugin.
*
* @since 1.5.4
*
* @return bool
*/
private function is_environment_compatible() {
return version_compare( PHP_VERSION, self::MINIMUM_PHP_VERSION, '>=' );
}
/**
* Returns the message for display when the environment is incompatible with this plugin.
*
* @since 1.5.4
*
* @return string
*/
private function get_environment_message() {
return sprintf( 'The minimum PHP version required for this plugin is %1$s. You are running %2$s.', self::MINIMUM_PHP_VERSION, PHP_VERSION );
}
/**
* Returns the main \WP_PHP_Console_Loader instance.
*
* Ensures only one instance can be loaded at any given time.
*
* @since 1.5.4
*
* @return \WP_PHP_Console_Loader
*/
public static function instance() {
if ( null === self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}
}
// initialize the plugin loader
WP_PHP_Console_Loader::instance();