@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | |
5 | 5 | use PhpConsole; |
6 | 6 | |
7 | -defined( 'ABSPATH' ) or exit; |
|
7 | +defined('ABSPATH') or exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * WP PHP Console main class. |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | public function __construct() { |
37 | 37 | |
38 | 38 | // handle translations |
39 | - add_action( 'plugins_loaded', [ $this, 'set_locale' ] ); |
|
39 | + add_action('plugins_loaded', [$this, 'set_locale']); |
|
40 | 40 | |
41 | 41 | // set options |
42 | 42 | $this->options = $this->get_options(); |
@@ -45,14 +45,14 @@ discard block |
||
45 | 45 | $this->set_admin(); |
46 | 46 | |
47 | 47 | // bail out if PHP Console can't be found |
48 | - if ( ! class_exists( 'PhpConsole\Connector' ) ) { |
|
48 | + if ( ! class_exists('PhpConsole\Connector')) { |
|
49 | 49 | return; |
50 | 50 | } |
51 | 51 | |
52 | 52 | // connect to PHP Console |
53 | - add_action( 'init', [ $this, 'connect' ], -1000 ); |
|
53 | + add_action('init', [$this, 'connect'], -1000); |
|
54 | 54 | // delay further PHP Console initialisation to have more context during Remote PHP execution |
55 | - add_action( 'wp_loaded', [ $this, 'init' ], -1000 ); |
|
55 | + add_action('wp_loaded', [$this, 'init'], -1000); |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | load_plugin_textdomain( |
67 | 67 | 'wp-php-console', |
68 | 68 | false, |
69 | - dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/' |
|
69 | + dirname(dirname(plugin_basename(__FILE__))).'/languages/' |
|
70 | 70 | ); |
71 | 71 | } |
72 | 72 | |
@@ -78,20 +78,20 @@ discard block |
||
78 | 78 | */ |
79 | 79 | private function set_admin() { |
80 | 80 | |
81 | - if ( ! defined( 'DOING_AJAX' ) && is_admin() ) { |
|
81 | + if ( ! defined('DOING_AJAX') && is_admin()) { |
|
82 | 82 | |
83 | 83 | // add a settings link to the plugins admin screen |
84 | - $plugin_name = str_replace( 'includes/class-', '', plugin_basename( __FILE__ ) ); |
|
85 | - add_filter( "plugin_action_links_{$plugin_name}", static function( $actions ) { |
|
86 | - return array_merge( [ |
|
87 | - '<a href="' . esc_url( admin_url( 'options-general.php?page=wp-php-console' ) ) . '">' . __( 'Settings', 'wp-php-console' ) . '</a>', |
|
88 | - ], $actions ); |
|
84 | + $plugin_name = str_replace('includes/class-', '', plugin_basename(__FILE__)); |
|
85 | + add_filter("plugin_action_links_{$plugin_name}", static function($actions) { |
|
86 | + return array_merge([ |
|
87 | + '<a href="'.esc_url(admin_url('options-general.php?page=wp-php-console')).'">'.__('Settings', 'wp-php-console').'</a>', |
|
88 | + ], $actions); |
|
89 | 89 | } ); |
90 | 90 | |
91 | 91 | // init settings |
92 | - require_once __DIR__ . '/class-wp-php-console-settings.php'; |
|
92 | + require_once __DIR__.'/class-wp-php-console-settings.php'; |
|
93 | 93 | |
94 | - new Settings( $this->options ); |
|
94 | + new Settings($this->options); |
|
95 | 95 | } |
96 | 96 | } |
97 | 97 | |
@@ -107,14 +107,14 @@ discard block |
||
107 | 107 | */ |
108 | 108 | public function connect() { |
109 | 109 | |
110 | - if ( ! @session_id() ) { |
|
110 | + if ( ! @session_id()) { |
|
111 | 111 | @session_start(); |
112 | 112 | } |
113 | 113 | |
114 | - if ( ! $this->connector instanceof PhpConsole\Connector ) { |
|
114 | + if ( ! $this->connector instanceof PhpConsole\Connector) { |
|
115 | 115 | try { |
116 | 116 | $this->connector = PhpConsole\Connector::getInstance(); |
117 | - } catch ( \Exception $e ) { |
|
117 | + } catch (\Exception $e) { |
|
118 | 118 | return; |
119 | 119 | } |
120 | 120 | } |
@@ -133,16 +133,16 @@ discard block |
||
133 | 133 | */ |
134 | 134 | protected function get_options() { |
135 | 135 | |
136 | - $options = get_option( 'wp_php_console', [] ); |
|
136 | + $options = get_option('wp_php_console', []); |
|
137 | 137 | |
138 | - return wp_parse_args( $options, [ |
|
138 | + return wp_parse_args($options, [ |
|
139 | 139 | 'ip' => '', |
140 | 140 | 'password' => '', |
141 | 141 | 'register' => false, |
142 | 142 | 'short' => false, |
143 | 143 | 'ssl' => false, |
144 | 144 | 'stack' => false, |
145 | - ] ); |
|
145 | + ]); |
|
146 | 146 | } |
147 | 147 | |
148 | 148 | |
@@ -154,31 +154,31 @@ discard block |
||
154 | 154 | private function apply_options() { |
155 | 155 | |
156 | 156 | // bail out if not connected yet to PHP Console |
157 | - if ( ! $this->connector instanceof PhpConsole\Connector ) { |
|
157 | + if ( ! $this->connector instanceof PhpConsole\Connector) { |
|
158 | 158 | return; |
159 | 159 | } |
160 | 160 | |
161 | 161 | // apply 'register' option to PHP Console... |
162 | - if ( true === $this->options['register'] && ! class_exists( 'PC', false ) ) { |
|
162 | + if (true === $this->options['register'] && ! class_exists('PC', false)) { |
|
163 | 163 | // ...only if PC not registered yet |
164 | 164 | try { |
165 | 165 | PhpConsole\Helper::register(); |
166 | - } catch( \Exception $e ) { |
|
167 | - $this->print_notice_exception( $e ); |
|
166 | + } catch (\Exception $e) { |
|
167 | + $this->print_notice_exception($e); |
|
168 | 168 | } |
169 | 169 | } |
170 | 170 | |
171 | 171 | // apply 'stack' option to PHP Console |
172 | - if ( true === $this->options['stack'] ) { |
|
172 | + if (true === $this->options['stack']) { |
|
173 | 173 | $this->connector->getDebugDispatcher()->detectTraceAndSource = true; |
174 | 174 | } |
175 | 175 | |
176 | 176 | // apply 'short' option to PHP Console |
177 | - if ( true === $this->options['short'] ) { |
|
177 | + if (true === $this->options['short']) { |
|
178 | 178 | try { |
179 | - $this->connector->setSourcesBasePath( $_SERVER['DOCUMENT_ROOT'] ); |
|
180 | - } catch ( \Exception $e ) { |
|
181 | - $this->print_notice_exception( $e ); |
|
179 | + $this->connector->setSourcesBasePath($_SERVER['DOCUMENT_ROOT']); |
|
180 | + } catch (\Exception $e) { |
|
181 | + $this->print_notice_exception($e); |
|
182 | 182 | } |
183 | 183 | } |
184 | 184 | } |
@@ -194,89 +194,89 @@ discard block |
||
194 | 194 | public function init() { |
195 | 195 | |
196 | 196 | // get PHP Console extension password |
197 | - $password = trim( $this->options['password'] ); |
|
197 | + $password = trim($this->options['password']); |
|
198 | 198 | |
199 | - if ( empty( $password ) ) { |
|
199 | + if (empty($password)) { |
|
200 | 200 | |
201 | 201 | // display admin notice and abort if no password has been set |
202 | - add_action( 'admin_notices', [ $this, 'password_notice' ] ); |
|
202 | + add_action('admin_notices', [$this, 'password_notice']); |
|
203 | 203 | return; |
204 | 204 | } |
205 | 205 | |
206 | 206 | // selectively remove slashes added by WordPress as expected by PHP Console |
207 | - if ( array_key_exists( PhpConsole\Connector::POST_VAR_NAME, $_POST ) ) { |
|
208 | - $_POST[ PhpConsole\Connector::POST_VAR_NAME ] = stripslashes_deep( $_POST[ PhpConsole\Connector::POST_VAR_NAME ] ); |
|
207 | + if (array_key_exists(PhpConsole\Connector::POST_VAR_NAME, $_POST)) { |
|
208 | + $_POST[PhpConsole\Connector::POST_VAR_NAME] = stripslashes_deep($_POST[PhpConsole\Connector::POST_VAR_NAME]); |
|
209 | 209 | } |
210 | 210 | |
211 | 211 | // get PHP Console instance if wasn't set yet |
212 | - if ( ! $this->connector instanceof PhpConsole\Connector ) { |
|
212 | + if ( ! $this->connector instanceof PhpConsole\Connector) { |
|
213 | 213 | |
214 | 214 | try { |
215 | 215 | $this->connector = PhpConsole\Connector::getInstance(); |
216 | - } catch ( \Exception $e ) { |
|
216 | + } catch (\Exception $e) { |
|
217 | 217 | return; |
218 | 218 | } |
219 | 219 | } |
220 | 220 | |
221 | 221 | // set PHP Console password |
222 | 222 | try { |
223 | - $this->connector->setPassword( $password ); |
|
224 | - } catch ( \Exception $e ) { |
|
225 | - $this->print_notice_exception( $e ); |
|
223 | + $this->connector->setPassword($password); |
|
224 | + } catch (\Exception $e) { |
|
225 | + $this->print_notice_exception($e); |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | // get PHP Console handler instance |
229 | 229 | $handler = PhpConsole\Handler::getInstance(); |
230 | 230 | |
231 | - if ( true !== PhpConsole\Handler::getInstance()->isStarted() ) { |
|
231 | + if (true !== PhpConsole\Handler::getInstance()->isStarted()) { |
|
232 | 232 | try { |
233 | 233 | $handler->start(); |
234 | - } catch( \Exception $e ) { |
|
235 | - $this->print_notice_exception( $e ); |
|
234 | + } catch (\Exception $e) { |
|
235 | + $this->print_notice_exception($e); |
|
236 | 236 | return; |
237 | 237 | } |
238 | 238 | } |
239 | 239 | |
240 | 240 | // enable SSL-only mode |
241 | - if ( true === $this->options['ssl'] ) { |
|
241 | + if (true === $this->options['ssl']) { |
|
242 | 242 | $this->connector->enableSslOnlyMode(); |
243 | 243 | } |
244 | 244 | |
245 | 245 | // restrict IP addresses |
246 | - $allowedIpMasks = ! empty( $this->options['ip'] ) ? explode( ',', $this->options['ip'] ) : ''; |
|
246 | + $allowedIpMasks = ! empty($this->options['ip']) ? explode(',', $this->options['ip']) : ''; |
|
247 | 247 | |
248 | - if ( is_array( $allowedIpMasks ) && count( $allowedIpMasks ) > 0 ) { |
|
249 | - $this->connector->setAllowedIpMasks( $allowedIpMasks ); |
|
248 | + if (is_array($allowedIpMasks) && count($allowedIpMasks) > 0) { |
|
249 | + $this->connector->setAllowedIpMasks($allowedIpMasks); |
|
250 | 250 | } |
251 | 251 | |
252 | 252 | $evalProvider = $this->connector->getEvalDispatcher()->getEvalProvider(); |
253 | 253 | |
254 | 254 | try { |
255 | - $evalProvider->addSharedVar( 'uri', $_SERVER['REQUEST_URI'] ); |
|
256 | - } catch ( \Exception $e ) { |
|
257 | - $this->print_notice_exception( $e ); |
|
255 | + $evalProvider->addSharedVar('uri', $_SERVER['REQUEST_URI']); |
|
256 | + } catch (\Exception $e) { |
|
257 | + $this->print_notice_exception($e); |
|
258 | 258 | } |
259 | 259 | |
260 | 260 | try { |
261 | - $evalProvider->addSharedVarReference( 'post', $_POST ); |
|
262 | - } catch ( \Exception $e ) { |
|
263 | - $this->print_notice_exception( $e ); |
|
261 | + $evalProvider->addSharedVarReference('post', $_POST); |
|
262 | + } catch (\Exception $e) { |
|
263 | + $this->print_notice_exception($e); |
|
264 | 264 | } |
265 | 265 | |
266 | - $openBaseDirs = [ ABSPATH, get_template_directory() ]; |
|
266 | + $openBaseDirs = [ABSPATH, get_template_directory()]; |
|
267 | 267 | |
268 | 268 | try { |
269 | - $evalProvider->addSharedVarReference( 'dirs', $openBaseDirs ); |
|
270 | - } catch ( \Exception $e ) { |
|
271 | - $this->print_notice_exception( $e ); |
|
269 | + $evalProvider->addSharedVarReference('dirs', $openBaseDirs); |
|
270 | + } catch (\Exception $e) { |
|
271 | + $this->print_notice_exception($e); |
|
272 | 272 | } |
273 | 273 | |
274 | - $evalProvider->setOpenBaseDirs( $openBaseDirs ); |
|
274 | + $evalProvider->setOpenBaseDirs($openBaseDirs); |
|
275 | 275 | |
276 | 276 | try { |
277 | 277 | $this->connector->startEvalRequestsListener(); |
278 | - } catch ( \Exception $e ) { |
|
279 | - $this->print_notice_exception( $e ); |
|
278 | + } catch (\Exception $e) { |
|
279 | + $this->print_notice_exception($e); |
|
280 | 280 | } |
281 | 281 | } |
282 | 282 | |
@@ -288,13 +288,13 @@ discard block |
||
288 | 288 | * |
289 | 289 | * @param \Exception $e Exception object |
290 | 290 | */ |
291 | - public function print_notice_exception( \Exception $e ) { |
|
291 | + public function print_notice_exception(\Exception $e) { |
|
292 | 292 | |
293 | - add_action( 'admin_notices', static function() use ( $e ) { |
|
293 | + add_action('admin_notices', static function() use ($e) { |
|
294 | 294 | |
295 | 295 | ?> |
296 | 296 | <div class="error"> |
297 | - <p><?php printf( '%1$s: %2$s', self::NAME, $e->getMessage() ); ?></p> |
|
297 | + <p><?php printf('%1$s: %2$s', self::NAME, $e->getMessage()); ?></p> |
|
298 | 298 | </div> |
299 | 299 | <?php |
300 | 300 | |
@@ -318,9 +318,9 @@ discard block |
||
318 | 318 | <div class="update-nag"> |
319 | 319 | <p><?php printf( |
320 | 320 | /* translators: Placeholders: %1$s - WP Php Console name, %2$s - opening HTML <a> link tag; %3$s closing HTML </a> link tag */ |
321 | - __( '%1$s: Please remember to %2$sset a password%3$s if you want to enable the terminal.', 'wp-php-console' ), |
|
322 | - '<strong>' . self::NAME . '</strong>', |
|
323 | - '<a href="' . esc_url( admin_url( 'options-general.php?page=wp-php-console' ) ) .'">', |
|
321 | + __('%1$s: Please remember to %2$sset a password%3$s if you want to enable the terminal.', 'wp-php-console'), |
|
322 | + '<strong>'.self::NAME.'</strong>', |
|
323 | + '<a href="'.esc_url(admin_url('options-general.php?page=wp-php-console')).'">', |
|
324 | 324 | '</a>' |
325 | 325 | ); ?></p> |
326 | 326 | </div> |