@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | |
11 | 11 | use PhpConsole; |
12 | 12 | |
13 | -defined( 'ABSPATH' ) or exit; |
|
13 | +defined('ABSPATH') or exit; |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * WP PHP Console main class. |
@@ -64,34 +64,34 @@ discard block |
||
64 | 64 | public function __construct() { |
65 | 65 | |
66 | 66 | // Translations. |
67 | - add_action( 'plugins_loaded', array( $this, 'set_locale' ) ); |
|
67 | + add_action('plugins_loaded', array($this, 'set_locale')); |
|
68 | 68 | |
69 | 69 | // Set options. |
70 | 70 | $this->options = $this->get_options(); |
71 | 71 | |
72 | 72 | // Load admin. |
73 | - if ( ! defined( 'DOING_AJAX' ) && is_admin() ) { |
|
74 | - require_once __DIR__ . '/class-wp-php-console-settings.php'; |
|
75 | - new Settings( $this->options ); |
|
73 | + if ( ! defined('DOING_AJAX') && is_admin()) { |
|
74 | + require_once __DIR__.'/class-wp-php-console-settings.php'; |
|
75 | + new Settings($this->options); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | // Bail out if PHP Console can't be found. |
79 | - if ( ! class_exists( 'PhpConsole\Connector' ) ) { |
|
79 | + if ( ! class_exists('PhpConsole\Connector')) { |
|
80 | 80 | return; |
81 | 81 | } |
82 | 82 | |
83 | 83 | // Connect to PHP Console. |
84 | - add_action( 'init', function() { |
|
84 | + add_action('init', function() { |
|
85 | 85 | |
86 | 86 | $this->connect(); |
87 | 87 | |
88 | 88 | // Apply PHP Console options. |
89 | 89 | $this->apply_options(); |
90 | 90 | |
91 | - }, -100 ); |
|
91 | + }, -100); |
|
92 | 92 | |
93 | 93 | // Delay further PHP Console initialisation to have more context during Remote PHP execution. |
94 | - add_action( 'wp_loaded', array( $this, 'init' ), -100 ); |
|
94 | + add_action('wp_loaded', array($this, 'init'), -100); |
|
95 | 95 | |
96 | 96 | } |
97 | 97 | |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | load_plugin_textdomain( |
107 | 107 | 'wp-php-console', |
108 | 108 | false, |
109 | - dirname( plugin_basename( __FILE__ ) ) . '/languages/' |
|
109 | + dirname(plugin_basename(__FILE__)).'/languages/' |
|
110 | 110 | ); |
111 | 111 | |
112 | 112 | } |
@@ -124,15 +124,15 @@ discard block |
||
124 | 124 | // But there is some problem with frameworks like WordPress that override PHP session handler. |
125 | 125 | // PHP Console has alternative storage drivers for this - we will write to a temporary file: |
126 | 126 | |
127 | - $phpcdir = __DIR__ . '/tmp'; |
|
128 | - $make_dir = wp_mkdir_p( $phpcdir ); |
|
127 | + $phpcdir = __DIR__.'/tmp'; |
|
128 | + $make_dir = wp_mkdir_p($phpcdir); |
|
129 | 129 | |
130 | - if ( true === $make_dir ) { |
|
130 | + if (true === $make_dir) { |
|
131 | 131 | |
132 | 132 | try { |
133 | - $storage = new PhpConsole\Storage\File( $phpcdir . '/' . md5( __FILE__ ) . '_pc.data' ); |
|
134 | - PhpConsole\Connector::setPostponeStorage( $storage ); |
|
135 | - } catch( \Exception $e ) { |
|
133 | + $storage = new PhpConsole\Storage\File($phpcdir.'/'.md5(__FILE__).'_pc.data'); |
|
134 | + PhpConsole\Connector::setPostponeStorage($storage); |
|
135 | + } catch (\Exception $e) { |
|
136 | 136 | // PHP Console will complain about this: "Path <...> is under DOCUMENT_ROOT. It's insecure!" |
137 | 137 | // but there's nothing we can do at the moment as there doesn't seem to be another solution in WP |
138 | 138 | // nevertheless PHP Console tool is not meant to be used in production so this shouldn't be a concern |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | |
144 | 144 | // Perform PHP Console initialisation required asap |
145 | 145 | // for other code to be able to output to the JavaScript console. |
146 | - if ( ! $this->connector instanceof PhpConsole\Connector ) { |
|
146 | + if ( ! $this->connector instanceof PhpConsole\Connector) { |
|
147 | 147 | $this->connector = PhpConsole\Connector::getInstance(); |
148 | 148 | } |
149 | 149 | |
@@ -158,16 +158,16 @@ discard block |
||
158 | 158 | */ |
159 | 159 | protected function get_options() { |
160 | 160 | |
161 | - $options = get_option( 'wp_php_console', array() ); |
|
161 | + $options = get_option('wp_php_console', array()); |
|
162 | 162 | |
163 | - return wp_parse_args( $options, array( |
|
163 | + return wp_parse_args($options, array( |
|
164 | 164 | 'ip' => '', |
165 | 165 | 'password' => '', |
166 | 166 | 'register' => false, |
167 | 167 | 'short' => false, |
168 | 168 | 'ssl' => false, |
169 | 169 | 'stack' => false, |
170 | - ) ); |
|
170 | + )); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | |
@@ -179,31 +179,31 @@ discard block |
||
179 | 179 | private function apply_options() { |
180 | 180 | |
181 | 181 | // Bail out if not connected yet to PHP Console. |
182 | - if ( ! $this->connector instanceof PhpConsole\Connector ) { |
|
182 | + if ( ! $this->connector instanceof PhpConsole\Connector) { |
|
183 | 183 | return; |
184 | 184 | } |
185 | 185 | |
186 | 186 | // Apply 'register' option to PHP Console... |
187 | - if ( true === $this->options['register'] && ! class_exists( 'PC', false ) ) { |
|
187 | + if (true === $this->options['register'] && ! class_exists('PC', false)) { |
|
188 | 188 | // ...only if PC not registered yet. |
189 | 189 | try { |
190 | 190 | PhpConsole\Helper::register(); |
191 | - } catch( \Exception $e ) { |
|
192 | - $this->print_notice_exception( $e ); |
|
191 | + } catch (\Exception $e) { |
|
192 | + $this->print_notice_exception($e); |
|
193 | 193 | } |
194 | 194 | } |
195 | 195 | |
196 | 196 | // Apply 'stack' option to PHP Console. |
197 | - if ( true === $this->options['stack'] ) { |
|
197 | + if (true === $this->options['stack']) { |
|
198 | 198 | $this->connector->getDebugDispatcher()->detectTraceAndSource = true; |
199 | 199 | } |
200 | 200 | |
201 | 201 | // Apply 'short' option to PHP Console. |
202 | - if ( true === $this->options['short'] ) { |
|
202 | + if (true === $this->options['short']) { |
|
203 | 203 | try { |
204 | - $this->connector->setSourcesBasePath( $_SERVER['DOCUMENT_ROOT'] ); |
|
205 | - } catch ( \Exception $e ) { |
|
206 | - $this->print_notice_exception( $e ); |
|
204 | + $this->connector->setSourcesBasePath($_SERVER['DOCUMENT_ROOT']); |
|
205 | + } catch (\Exception $e) { |
|
206 | + $this->print_notice_exception($e); |
|
207 | 207 | } |
208 | 208 | } |
209 | 209 | |
@@ -220,80 +220,80 @@ discard block |
||
220 | 220 | // Get PHP Console extension password. |
221 | 221 | $password = $this->options['password']; |
222 | 222 | |
223 | - if ( ! $password ) { |
|
223 | + if ( ! $password) { |
|
224 | 224 | // Display admin notice and abort if no password has been set. |
225 | - add_action( 'admin_notices', array( $this, 'password_notice' ) ); |
|
225 | + add_action('admin_notices', array($this, 'password_notice')); |
|
226 | 226 | return; |
227 | 227 | } |
228 | 228 | |
229 | 229 | // Selectively remove slashes added by WordPress as expected by PhpConsole. |
230 | - if ( array_key_exists( PhpConsole\Connector::POST_VAR_NAME, $_POST ) ) { |
|
231 | - $_POST[ PhpConsole\Connector::POST_VAR_NAME ] = stripslashes_deep( $_POST[ PhpConsole\Connector::POST_VAR_NAME ] ); |
|
230 | + if (array_key_exists(PhpConsole\Connector::POST_VAR_NAME, $_POST)) { |
|
231 | + $_POST[PhpConsole\Connector::POST_VAR_NAME] = stripslashes_deep($_POST[PhpConsole\Connector::POST_VAR_NAME]); |
|
232 | 232 | } |
233 | 233 | |
234 | 234 | // Get PHP Console instance if wasn't set yet. |
235 | - if ( ! $this->connector instanceof PhpConsole\Connector ) { |
|
235 | + if ( ! $this->connector instanceof PhpConsole\Connector) { |
|
236 | 236 | $this->connector = PhpConsole\Connector::getInstance(); |
237 | 237 | } |
238 | 238 | |
239 | 239 | // Set PHP Console password. |
240 | 240 | try { |
241 | - $this->connector->setPassword( $password ); |
|
242 | - } catch ( \Exception $e ) { |
|
243 | - $this->print_notice_exception( $e ); |
|
241 | + $this->connector->setPassword($password); |
|
242 | + } catch (\Exception $e) { |
|
243 | + $this->print_notice_exception($e); |
|
244 | 244 | } |
245 | 245 | |
246 | 246 | // Get PHP Console handler instance. |
247 | 247 | $handler = PhpConsole\Handler::getInstance(); |
248 | 248 | |
249 | - if ( true !== PhpConsole\Handler::getInstance()->isStarted() ) { |
|
249 | + if (true !== PhpConsole\Handler::getInstance()->isStarted()) { |
|
250 | 250 | try { |
251 | 251 | $handler->start(); |
252 | - } catch( \Exception $e ) { |
|
253 | - $this->print_notice_exception( $e ); |
|
252 | + } catch (\Exception $e) { |
|
253 | + $this->print_notice_exception($e); |
|
254 | 254 | } |
255 | 255 | } |
256 | 256 | |
257 | 257 | // Enable SSL-only mode. |
258 | - if ( true === $this->options['ssl'] ) { |
|
258 | + if (true === $this->options['ssl']) { |
|
259 | 259 | $this->connector->enableSslOnlyMode(); |
260 | 260 | } |
261 | 261 | |
262 | 262 | // Restrict IP addresses. |
263 | - $allowedIpMasks = ! empty( $this->options['ip'] ) ? explode( ',', $this->options['ip'] ) : ''; |
|
263 | + $allowedIpMasks = ! empty($this->options['ip']) ? explode(',', $this->options['ip']) : ''; |
|
264 | 264 | |
265 | - if ( is_array( $allowedIpMasks ) && count( $allowedIpMasks ) > 0 ) { |
|
266 | - $this->connector->setAllowedIpMasks( $allowedIpMasks ); |
|
265 | + if (is_array($allowedIpMasks) && count($allowedIpMasks) > 0) { |
|
266 | + $this->connector->setAllowedIpMasks($allowedIpMasks); |
|
267 | 267 | } |
268 | 268 | |
269 | 269 | $evalProvider = $this->connector->getEvalDispatcher()->getEvalProvider(); |
270 | 270 | |
271 | 271 | try { |
272 | - $evalProvider->addSharedVar( 'uri', $_SERVER['REQUEST_URI'] ); |
|
273 | - } catch ( \Exception $e ) { |
|
274 | - $this->print_notice_exception( $e ); |
|
272 | + $evalProvider->addSharedVar('uri', $_SERVER['REQUEST_URI']); |
|
273 | + } catch (\Exception $e) { |
|
274 | + $this->print_notice_exception($e); |
|
275 | 275 | } |
276 | 276 | |
277 | 277 | try { |
278 | - $evalProvider->addSharedVarReference( 'post', $_POST ); |
|
279 | - } catch ( \Exception $e ) { |
|
280 | - $this->print_notice_exception( $e ); |
|
278 | + $evalProvider->addSharedVarReference('post', $_POST); |
|
279 | + } catch (\Exception $e) { |
|
280 | + $this->print_notice_exception($e); |
|
281 | 281 | } |
282 | 282 | |
283 | - $openBaseDirs = array( ABSPATH, get_template_directory() ); |
|
283 | + $openBaseDirs = array(ABSPATH, get_template_directory()); |
|
284 | 284 | |
285 | 285 | try { |
286 | - $evalProvider->addSharedVarReference( 'dirs', $openBaseDirs ); |
|
287 | - } catch ( \Exception $e ) { |
|
288 | - $this->print_notice_exception( $e ); |
|
286 | + $evalProvider->addSharedVarReference('dirs', $openBaseDirs); |
|
287 | + } catch (\Exception $e) { |
|
288 | + $this->print_notice_exception($e); |
|
289 | 289 | } |
290 | 290 | |
291 | - $evalProvider->setOpenBaseDirs( $openBaseDirs ); |
|
291 | + $evalProvider->setOpenBaseDirs($openBaseDirs); |
|
292 | 292 | |
293 | 293 | try { |
294 | 294 | $this->connector->startEvalRequestsListener(); |
295 | - } catch ( \Exception $e ) { |
|
296 | - $this->print_notice_exception( $e ); |
|
295 | + } catch (\Exception $e) { |
|
296 | + $this->print_notice_exception($e); |
|
297 | 297 | } |
298 | 298 | |
299 | 299 | } |
@@ -305,13 +305,13 @@ discard block |
||
305 | 305 | * @since 1.4.0 |
306 | 306 | * @param \Exception $e Exception object |
307 | 307 | */ |
308 | - public function print_notice_exception( \Exception $e ) { |
|
308 | + public function print_notice_exception(\Exception $e) { |
|
309 | 309 | |
310 | - add_action( 'admin_notices', function() use ( $e ) { |
|
310 | + add_action('admin_notices', function() use ($e) { |
|
311 | 311 | |
312 | 312 | ?> |
313 | 313 | <div class="error"> |
314 | - <p><?php printf( '%1$s: %2$s', self::NAME, $e->getMessage() ); ?></p> |
|
314 | + <p><?php printf('%1$s: %2$s', self::NAME, $e->getMessage()); ?></p> |
|
315 | 315 | </div> |
316 | 316 | <?php |
317 | 317 | |
@@ -332,9 +332,9 @@ discard block |
||
332 | 332 | <div class="update-nag"> |
333 | 333 | <p><?php |
334 | 334 | /* translators: Placeholders: %1$s - WP Php Console name, %2$s - opening HTML <a> link tag; %3$s closing HTML </a> link tag */ |
335 | - printf( __( '%1$s: Please remember to %2$sset a password%3$s if you want to enable the terminal.', 'wp-php-console' ), |
|
336 | - '<strong>' . self::NAME . '</strong>', |
|
337 | - '<a href="' . esc_url( admin_url( 'options-general.php?page=wp-php-console' ) ) .'">', |
|
335 | + printf(__('%1$s: Please remember to %2$sset a password%3$s if you want to enable the terminal.', 'wp-php-console'), |
|
336 | + '<strong>'.self::NAME.'</strong>', |
|
337 | + '<a href="'.esc_url(admin_url('options-general.php?page=wp-php-console')).'">', |
|
338 | 338 | '</a>' |
339 | 339 | ); ?> |
340 | 340 | </p> |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | */ |
9 | 9 | namespace WP_PHP_Console; |
10 | 10 | |
11 | -defined( 'ABSPATH' ) or exit; |
|
11 | +defined('ABSPATH') or exit; |
|
12 | 12 | |
13 | 13 | /** |
14 | 14 | * WP PHP Console settings class. |
@@ -53,13 +53,13 @@ discard block |
||
53 | 53 | * @since 1.5.0 |
54 | 54 | * @param array $options Plugin settings options. |
55 | 55 | */ |
56 | - public function __construct( array $options ) { |
|
56 | + public function __construct(array $options) { |
|
57 | 57 | |
58 | - $this->page = sanitize_title( strtolower( Plugin::NAME ) ); |
|
59 | - $this->option = str_replace( '-', '_', $this->page ); |
|
58 | + $this->page = sanitize_title(strtolower(Plugin::NAME)); |
|
59 | + $this->option = str_replace('-', '_', $this->page); |
|
60 | 60 | $this->options = $options; |
61 | 61 | |
62 | - add_action( 'admin_menu', array( $this, 'register_settings_page' ) ); |
|
62 | + add_action('admin_menu', array($this, 'register_settings_page')); |
|
63 | 63 | |
64 | 64 | } |
65 | 65 | |
@@ -72,14 +72,14 @@ discard block |
||
72 | 72 | public function register_settings_page() { |
73 | 73 | |
74 | 74 | add_options_page( |
75 | - __( 'WP PHP Console', 'wp-php-console' ), |
|
76 | - __( 'WP PHP Console', 'wp-php-console' ), |
|
75 | + __('WP PHP Console', 'wp-php-console'), |
|
76 | + __('WP PHP Console', 'wp-php-console'), |
|
77 | 77 | 'manage_options', |
78 | 78 | $this->page, |
79 | - array( $this, 'settings_page' ) |
|
79 | + array($this, 'settings_page') |
|
80 | 80 | ); |
81 | 81 | |
82 | - add_action( 'admin_init', array( $this, 'register_settings' ) ); |
|
82 | + add_action('admin_init', array($this, 'register_settings')); |
|
83 | 83 | |
84 | 84 | } |
85 | 85 | |
@@ -94,46 +94,46 @@ discard block |
||
94 | 94 | register_setting( |
95 | 95 | $this->option, |
96 | 96 | $this->option, |
97 | - array( $this, 'sanitize_field' ) |
|
97 | + array($this, 'sanitize_field') |
|
98 | 98 | ); |
99 | 99 | |
100 | 100 | add_settings_section( |
101 | 101 | $this->option, |
102 | - __( 'Settings', 'wp-php-console' ), |
|
103 | - array( $this, 'settings_info' ), |
|
102 | + __('Settings', 'wp-php-console'), |
|
103 | + array($this, 'settings_info'), |
|
104 | 104 | $this->page |
105 | 105 | ); |
106 | 106 | |
107 | 107 | $settings_fields = array( |
108 | 108 | 'password' => array( |
109 | - 'label' => esc_html__( 'Password', 'wp-php-console' ), |
|
110 | - 'callback' => array( $this, 'password_field' ), |
|
109 | + 'label' => esc_html__('Password', 'wp-php-console'), |
|
110 | + 'callback' => array($this, 'password_field'), |
|
111 | 111 | ), |
112 | 112 | 'ssl' => array( |
113 | - 'label' => esc_html__( 'Allow only on SSL', 'wp-php-console' ), |
|
114 | - 'callback' => array( $this, 'ssl_field' ), |
|
113 | + 'label' => esc_html__('Allow only on SSL', 'wp-php-console'), |
|
114 | + 'callback' => array($this, 'ssl_field'), |
|
115 | 115 | ), |
116 | 116 | 'ip' => array( |
117 | - 'label' => esc_html__( 'Allowed IP Masks', 'wp-php-console' ), |
|
118 | - 'callback' => array( $this, 'ip_field' ), |
|
117 | + 'label' => esc_html__('Allowed IP Masks', 'wp-php-console'), |
|
118 | + 'callback' => array($this, 'ip_field'), |
|
119 | 119 | ), |
120 | 120 | 'register' => array( |
121 | - 'label' => esc_html__( 'Register PC Class', 'wp-php-console' ), |
|
122 | - 'callback' => array( $this, 'register_field' ), |
|
121 | + 'label' => esc_html__('Register PC Class', 'wp-php-console'), |
|
122 | + 'callback' => array($this, 'register_field'), |
|
123 | 123 | ), |
124 | 124 | 'stack' => array( |
125 | - 'label' => esc_html__( 'Show Call Stack', 'wp-php-console' ), |
|
126 | - 'callback' => array( $this, 'stack_field' ), |
|
125 | + 'label' => esc_html__('Show Call Stack', 'wp-php-console'), |
|
126 | + 'callback' => array($this, 'stack_field'), |
|
127 | 127 | ), |
128 | 128 | 'short' => array( |
129 | - 'label' => esc_html__( 'Short Path Names', 'wp-php-console' ), |
|
130 | - 'callback' => array( $this, 'short_field' ), |
|
129 | + 'label' => esc_html__('Short Path Names', 'wp-php-console'), |
|
130 | + 'callback' => array($this, 'short_field'), |
|
131 | 131 | ), |
132 | 132 | ); |
133 | 133 | |
134 | - foreach ( $settings_fields as $key => $field ) { |
|
134 | + foreach ($settings_fields as $key => $field) { |
|
135 | 135 | add_settings_field( |
136 | - $this->page . '['. $key . ']', |
|
136 | + $this->page.'['.$key.']', |
|
137 | 137 | $field['label'], |
138 | 138 | $field['callback'], |
139 | 139 | $this->page, |
@@ -155,31 +155,31 @@ discard block |
||
155 | 155 | ?> |
156 | 156 | <p><?php |
157 | 157 | /* translators: %s refers to 'PHP Console' Chrome extension, will print download link for the Chrome extension */ |
158 | - printf( _x( 'This plugin allows you to use %s within your WordPress installation for testing, debugging and development purposes.', 'PHP Console, the PHP Library', 'wp-php-console' ), |
|
158 | + printf(_x('This plugin allows you to use %s within your WordPress installation for testing, debugging and development purposes.', 'PHP Console, the PHP Library', 'wp-php-console'), |
|
159 | 159 | '<a href="https://github.com/barbushin/php-console" target="_blank">PHP Console</a>' |
160 | 160 | ); ?><br> |
161 | - <?php esc_html_e( 'Usage instructions:', 'wp-php-console' ); ?> |
|
161 | + <?php esc_html_e('Usage instructions:', 'wp-php-console'); ?> |
|
162 | 162 | </p> |
163 | 163 | <ol> |
164 | 164 | <?php |
165 | 165 | |
166 | 166 | $instructions = array( |
167 | 167 | /* translators: Install PHP Console extension for Google Chrome download link */ |
168 | - sprintf( _x( 'Make sure you have downloaded and installed %s.', 'PHP Console, the Chrome Extension', 'wp-php-console' ), |
|
168 | + sprintf(_x('Make sure you have downloaded and installed %s.', 'PHP Console, the Chrome Extension', 'wp-php-console'), |
|
169 | 169 | '<a target="_blank" href="https://chrome.google.com/webstore/detail/php-console/nfhmhhlpfleoednkpnnnkolmclajemef">PHP Console extension for Google Chrome</a>' |
170 | 170 | ), |
171 | - esc_html__( 'Set a password for the eval terminal in the options below and hit "Save Changes".', 'wp-php-console' ), |
|
172 | - esc_html__( 'Reload any page of your installation and click on the key icon in your Chrome browser address bar, enter your password and access the terminal.', 'wp-php-console' ), |
|
173 | - esc_html__( 'From the eval terminal you can execute any PHP or WordPress specific function, including functions from your plugins and active theme.', 'wp-php-console' ), |
|
171 | + esc_html__('Set a password for the eval terminal in the options below and hit "Save Changes".', 'wp-php-console'), |
|
172 | + esc_html__('Reload any page of your installation and click on the key icon in your Chrome browser address bar, enter your password and access the terminal.', 'wp-php-console'), |
|
173 | + esc_html__('From the eval terminal you can execute any PHP or WordPress specific function, including functions from your plugins and active theme.', 'wp-php-console'), |
|
174 | 174 | /* translators: %1$s - PHP code snippet example, %2$s - Chrome javascript console shortcut */ |
175 | - sprintf( __( 'In your PHP code, you can call PHP Console debug statements like %1$s to display PHP variables in the browser\'s JavaScript-console (e.g. %2$s) and optionally filter selected tags through the browser\'s Remote PHP Eval Terminal screen\'s "Ignore Debug options".', 'wp-php-console' ), |
|
175 | + sprintf(__('In your PHP code, you can call PHP Console debug statements like %1$s to display PHP variables in the browser\'s JavaScript-console (e.g. %2$s) and optionally filter selected tags through the browser\'s Remote PHP Eval Terminal screen\'s "Ignore Debug options".', 'wp-php-console'), |
|
176 | 176 | '<code>debug($var, $tag)</code>', |
177 | 177 | '<code>CTRL+SHIFT+J</code>' |
178 | 178 | ), |
179 | 179 | ); |
180 | 180 | |
181 | - foreach ( $instructions as $list_item ) { |
|
182 | - echo '<li>' . $list_item . '</li>'; |
|
181 | + foreach ($instructions as $list_item) { |
|
182 | + echo '<li>'.$list_item.'</li>'; |
|
183 | 183 | } |
184 | 184 | |
185 | 185 | ?> |
@@ -198,9 +198,9 @@ discard block |
||
198 | 198 | public function password_field() { |
199 | 199 | |
200 | 200 | ?> |
201 | - <input type="password" id="wp-php-console-password" name="wp_php_console[password]" value="<?php echo esc_attr( $this->options['password'] ); ?>"> |
|
202 | - <label for="wp-php-console-password"><?php esc_html_e( 'Required', 'wp-php-console' ); ?></label><br> |
|
203 | - <p class="description"><?php esc_html_e( 'The password for the eval terminal. If empty, the plugin will not work.', 'wp-php-console' ); ?></p> |
|
201 | + <input type="password" id="wp-php-console-password" name="wp_php_console[password]" value="<?php echo esc_attr($this->options['password']); ?>"> |
|
202 | + <label for="wp-php-console-password"><?php esc_html_e('Required', 'wp-php-console'); ?></label><br> |
|
203 | + <p class="description"><?php esc_html_e('The password for the eval terminal. If empty, the plugin will not work.', 'wp-php-console'); ?></p> |
|
204 | 204 | <?php |
205 | 205 | |
206 | 206 | } |
@@ -214,9 +214,9 @@ discard block |
||
214 | 214 | public function ssl_field() { |
215 | 215 | |
216 | 216 | ?> |
217 | - <input type="checkbox" id="wp-php-console-ssl" name="wp_php_console[ssl]" value="1" <?php checked( (bool) $this->options['ssl'] ); ?> /> |
|
218 | - <label for="wp-php-console-ssl"><?php esc_html_e( 'Yes', 'wp-php-console' ); ?></label><br> |
|
219 | - <p class="description"><?php esc_html_e( 'Tick this option if you want the eval terminal to work only on a SSL connection.', 'wp-php-console' ); ?></p> |
|
217 | + <input type="checkbox" id="wp-php-console-ssl" name="wp_php_console[ssl]" value="1" <?php checked((bool) $this->options['ssl']); ?> /> |
|
218 | + <label for="wp-php-console-ssl"><?php esc_html_e('Yes', 'wp-php-console'); ?></label><br> |
|
219 | + <p class="description"><?php esc_html_e('Tick this option if you want the eval terminal to work only on a SSL connection.', 'wp-php-console'); ?></p> |
|
220 | 220 | <?php |
221 | 221 | |
222 | 222 | } |
@@ -230,19 +230,19 @@ discard block |
||
230 | 230 | public function ip_field() { |
231 | 231 | |
232 | 232 | ?> |
233 | - <input type="text" class="regular-text" id="wp-php-console-ip" name="wp_php_console[ip]" value="<?php echo esc_attr( $this->options['ip'] ); ?>" /> |
|
234 | - <label for="wp-php-console-ip"><?php esc_html_e( 'IP addresses (optional)', 'wp-php-console' ); ?></label><br> |
|
235 | - <p class="description"><?php esc_html_e( 'You may specify any of the following, to give access to specific IPs to the eval terminal:', 'wp-php-console' ); ?><br> |
|
233 | + <input type="text" class="regular-text" id="wp-php-console-ip" name="wp_php_console[ip]" value="<?php echo esc_attr($this->options['ip']); ?>" /> |
|
234 | + <label for="wp-php-console-ip"><?php esc_html_e('IP addresses (optional)', 'wp-php-console'); ?></label><br> |
|
235 | + <p class="description"><?php esc_html_e('You may specify any of the following, to give access to specific IPs to the eval terminal:', 'wp-php-console'); ?><br> |
|
236 | 236 | <ol> |
237 | 237 | <li><small><?php |
238 | 238 | /* translators: Placeholders: %1$s - a single IP address, %2$s link to Varying Vagrant Vagrants repo */ |
239 | - printf( __( 'An IP address (for example %1$s, %2$s default IP address).', 'wp-php-console' ), |
|
239 | + printf(__('An IP address (for example %1$s, %2$s default IP address).', 'wp-php-console'), |
|
240 | 240 | '<code>192.168.50.4</code>', |
241 | 241 | '<a href="https://github.com/Varying-Vagrant-Vagrants/VVV">Varying Vagrant Vagrants</a>' |
242 | 242 | ); ?></small></li> |
243 | 243 | <li><small><?php |
244 | 244 | /* translators: Placeholders: %1$s a range of IP addresses, %2$s - comma separated IP addresses */ |
245 | - printf( __( 'A range of addresses (%1$s) or multiple addresses, comma separated (%2$s).', 'wp-php-console' ), |
|
245 | + printf(__('A range of addresses (%1$s) or multiple addresses, comma separated (%2$s).', 'wp-php-console'), |
|
246 | 246 | '<code>192.168.*.*</code>', |
247 | 247 | '<code>192.168.10.25,192.168.10.28</code>' |
248 | 248 | ); ?></small></li> |
@@ -261,13 +261,13 @@ discard block |
||
261 | 261 | public function register_field() { |
262 | 262 | |
263 | 263 | ?> |
264 | - <input type="checkbox" id="wp-php-console-register" name="wp_php_console[register]" value="1" <?php checked( (bool) $this->options['register'] ); ?> /> |
|
265 | - <label for="wp-php-console-register"><?php esc_html_e( 'Yes', 'wp-php-console' ); ?></label><br> |
|
264 | + <input type="checkbox" id="wp-php-console-register" name="wp_php_console[register]" value="1" <?php checked((bool) $this->options['register']); ?> /> |
|
265 | + <label for="wp-php-console-register"><?php esc_html_e('Yes', 'wp-php-console'); ?></label><br> |
|
266 | 266 | <p class="description"><?php |
267 | - esc_html_e( 'Tick to register PC class in the global namespace.', 'wp-php-console' ); |
|
267 | + esc_html_e('Tick to register PC class in the global namespace.', 'wp-php-console'); |
|
268 | 268 | echo '<br>'; |
269 | 269 | /* translators: Placeholders: PHP code snippets examples */ |
270 | - printf( __( 'Allows to write %1$s or %2$s instructions in PHP to inspect %3$s in the JavaScript console.', 'wp-php-console' ), |
|
270 | + printf(__('Allows to write %1$s or %2$s instructions in PHP to inspect %3$s in the JavaScript console.', 'wp-php-console'), |
|
271 | 271 | '<code>PC::debug($var, $tag)</code>', |
272 | 272 | '<code>PC::magic_tag($var)</code>', |
273 | 273 | '<code>$var</code>' |
@@ -285,9 +285,9 @@ discard block |
||
285 | 285 | public function stack_field() { |
286 | 286 | |
287 | 287 | ?> |
288 | - <input type="checkbox" id="wp-php-console-stack" name="wp_php_console[stack]" value="1" <?php checked( (bool) $this->options['stack'] ); ?> /> |
|
289 | - <label for="wp-php-console-stack"><?php esc_html_e( 'Yes', 'wp-php-console' ); ?></label><br /> |
|
290 | - <p class="description"><?php esc_html_e( 'Tick to see the full call stack when PHP Console writes to the browser JavaScript console.', 'wp-php-console' ); ?></p> |
|
288 | + <input type="checkbox" id="wp-php-console-stack" name="wp_php_console[stack]" value="1" <?php checked((bool) $this->options['stack']); ?> /> |
|
289 | + <label for="wp-php-console-stack"><?php esc_html_e('Yes', 'wp-php-console'); ?></label><br /> |
|
290 | + <p class="description"><?php esc_html_e('Tick to see the full call stack when PHP Console writes to the browser JavaScript console.', 'wp-php-console'); ?></p> |
|
291 | 291 | <?php |
292 | 292 | |
293 | 293 | } |
@@ -301,13 +301,13 @@ discard block |
||
301 | 301 | public function short_field() { |
302 | 302 | |
303 | 303 | ?> |
304 | - <input type="checkbox" id="wp-php-console-short" name="wp_php_console[short]" value="1" <?php checked( (bool) $this->options['short'] ); ?> /> |
|
305 | - <label for="wp-php-console-short"><?php esc_html_e( 'Yes', 'wp-php-console' ); ?></label><br> |
|
304 | + <input type="checkbox" id="wp-php-console-short" name="wp_php_console[short]" value="1" <?php checked((bool) $this->options['short']); ?> /> |
|
305 | + <label for="wp-php-console-short"><?php esc_html_e('Yes', 'wp-php-console'); ?></label><br> |
|
306 | 306 | <p class="description"><?php |
307 | - esc_html_e( 'Tick to shorten the length of PHP Console error sources and traces paths in browser JavaScript console for better readability.', 'wp-php-console' ); |
|
307 | + esc_html_e('Tick to shorten the length of PHP Console error sources and traces paths in browser JavaScript console for better readability.', 'wp-php-console'); |
|
308 | 308 | echo '<br>'; |
309 | 309 | /* translators: %1$s - long server path, %2$s shortened server path */ |
310 | - printf( __( 'Paths like %1$s will be displayed as %2$s', 'wp-php-console' ), |
|
310 | + printf(__('Paths like %1$s will be displayed as %2$s', 'wp-php-console'), |
|
311 | 311 | '<code>/server/path/to/document/root/WP/wp-admin/admin.php:31</code>', |
312 | 312 | '<code>/WP/wp-admin/admin.php:31</code>' |
313 | 313 | ); ?></p> |
@@ -323,24 +323,24 @@ discard block |
||
323 | 323 | * @param array $option user input |
324 | 324 | * @return array sanitized input |
325 | 325 | */ |
326 | - public function sanitize_field( $option ) { |
|
326 | + public function sanitize_field($option) { |
|
327 | 327 | |
328 | - $input = wp_parse_args( $option, array( |
|
328 | + $input = wp_parse_args($option, array( |
|
329 | 329 | 'ip' => '', |
330 | 330 | 'password' => '', |
331 | 331 | 'register' => false, |
332 | 332 | 'short' => false, |
333 | 333 | 'ssl' => false, |
334 | 334 | 'stack' => false, |
335 | - ) ); |
|
335 | + )); |
|
336 | 336 | |
337 | 337 | $sanitized_input = array( |
338 | - 'ip' => sanitize_text_field( $input['ip'] ), |
|
339 | - 'password' => sanitize_text_field( $input['password'] ), |
|
340 | - 'register' => ! empty( $input['register'] ), |
|
341 | - 'short' => ! empty( $input['short'] ), |
|
342 | - 'ssl' => ! empty( $input['ssl'] ), |
|
343 | - 'stack' => ! empty( $input['stack'] ), |
|
338 | + 'ip' => sanitize_text_field($input['ip']), |
|
339 | + 'password' => sanitize_text_field($input['password']), |
|
340 | + 'register' => ! empty($input['register']), |
|
341 | + 'short' => ! empty($input['short']), |
|
342 | + 'ssl' => ! empty($input['ssl']), |
|
343 | + 'stack' => ! empty($input['stack']), |
|
344 | 344 | ); |
345 | 345 | |
346 | 346 | return $sanitized_input; |
@@ -356,14 +356,14 @@ discard block |
||
356 | 356 | |
357 | 357 | ?> |
358 | 358 | <div class="wrap"> |
359 | - <h2><?php esc_html_e( 'WP PHP Console', 'wp-php-console' ); ?></h2> |
|
359 | + <h2><?php esc_html_e('WP PHP Console', 'wp-php-console'); ?></h2> |
|
360 | 360 | <hr /> |
361 | 361 | <form method="post" action="options.php"> |
362 | 362 | <?php |
363 | 363 | |
364 | - settings_fields( $this->option ); |
|
364 | + settings_fields($this->option); |
|
365 | 365 | |
366 | - do_settings_sections( $this->page ); |
|
366 | + do_settings_sections($this->page); |
|
367 | 367 | |
368 | 368 | submit_button(); |
369 | 369 |