PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 11.4.1
Jetpack – WP Security, Backup, Speed, & Growth v11.4.1
16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 All 501 releases
jetpack / class.jetpack-modules-list-table.php
class.jetpack-modules-list-table.php
475 lines 14.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
2 /**
3 * Jetpack modules list table.
4 *
5 * @package automattic/jetpack
6 */
7
8 use Automattic\Jetpack\Assets;
9
10 if ( ! class_exists( 'WP_List_Table' ) ) {
11 require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php';
12 }
13
14 /**
15 * Jetpack modules list table.
16 */
17 class Jetpack_Modules_List_Table extends WP_List_Table {
18
19 /** Constructor. */
20 public function __construct() {
21 parent::__construct();
22
23 Jetpack::init();
24
25 if ( $this->compat_fields && is_array( $this->compat_fields ) ) {
26 array_push( $this->compat_fields, 'all_items' );
27 }
28
29 /**
30 * Filters the list of modules available to be displayed in the Jetpack Settings screen.
31 *
32 * @since 3.0.0
33 *
34 * @param array $modules Array of Jetpack modules.
35 */
36 $this->all_items = apply_filters( 'jetpack_modules_list_table_items', Jetpack_Admin::init()->get_modules() );
37 $this->items = $this->all_items;
38 $this->items = $this->filter_displayed_table_items( $this->items );
39 $this->_column_headers = array( $this->get_columns(), array(), array(), 'name' );
40 // phpcs:ignore WordPress.Security.NonceVerification.Recommended, WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- Nonce: This is a view, not a model or controller. InputNotSanitized: Sanitized below via `$this->module_info_check()`.
41 $modal_info = isset( $_GET['info'] ) ? wp_unslash( $_GET['info'] ) : false;
42
43 // Adding in a hidden h1 heading for screen-readers.
44 ?>
45 <h1 class="screen-reader-text"><?php esc_html_e( 'Jetpack Modules List', 'jetpack' ); ?></h1>
46 <?php
47
48 wp_register_script(
49 'models.jetpack-modules',
50 Assets::get_file_url_for_environment(
51 '_inc/build/jetpack-modules.models.min.js',
52 '_inc/jetpack-modules.models.js'
53 ),
54 array( 'backbone', 'underscore' ),
55 JETPACK__VERSION,
56 false // @todo Can this be put in the footer?
57 );
58 wp_register_script(
59 'views.jetpack-modules',
60 Assets::get_file_url_for_environment(
61 '_inc/build/jetpack-modules.views.min.js',
62 '_inc/jetpack-modules.views.js'
63 ),
64 array( 'backbone', 'underscore', 'wp-util' ),
65 JETPACK__VERSION,
66 false // @todo Can this be put in the footer?
67 );
68 wp_register_script(
69 'jetpack-modules-list-table',
70 Assets::get_file_url_for_environment(
71 '_inc/build/jetpack-modules.min.js',
72 '_inc/jetpack-modules.js'
73 ),
74 array(
75 'views.jetpack-modules',
76 'models.jetpack-modules',
77 'jquery',
78 ),
79 JETPACK__VERSION,
80 true
81 );
82
83 wp_localize_script(
84 'jetpack-modules-list-table',
85 'jetpackModulesData',
86 array(
87 'modules' => Jetpack::get_translated_modules( $this->all_items ),
88 'i18n' => array(
89 'search_placeholder' => __( 'Search Modules…', 'jetpack' ),
90 ),
91 'modalinfo' => $this->module_info_check( $modal_info, $this->all_items ),
92 'nonces' => array(
93 'bulk' => wp_create_nonce( 'bulk-jetpack_page_jetpack_modules' ),
94 ),
95 )
96 );
97
98 wp_enqueue_script( 'jetpack-modules-list-table' );
99
100 /**
101 * Filters the js_templates callback value.
102 *
103 * @since 3.6.0
104 *
105 * @param array array( $this, 'js_templates' ) js_templates callback.
106 */
107 add_action( 'admin_footer', apply_filters( 'jetpack_modules_list_table_js_template_callback', array( $this, 'js_templates' ) ), 9 );
108 }
109
110 /**
111 * Output row template.
112 */
113 public function js_templates() {
114 ?>
115 <script type="text/html" id="tmpl-Jetpack_Modules_List_Table_Template">
116 <# var i = 0;
117 if ( data.items.length ) {
118 _.each( data.items, function( item, key, list ) {
119 if ( item === undefined ) return; #>
120 <tr class="jetpack-module <# if ( ++i % 2 ) { #> alternate<# } #><# if ( item.activated ) { #> active<# } #><# if ( ! item.available ) { #> unavailable<# } #>" id="{{{ item.module }}}">
121 <th scope="row" class="check-column">
122 <input type="checkbox" name="modules[]" value="{{{ item.module }}}" />
123 </th>
124 <td class='name column-name'>
125 <span class='info'><a href="{{{item.learn_more_button}}}" target="blank">{{{ item.name }}}</a></span>
126 <div class="row-actions">
127 <# if ( item.configurable ) { #>
128 <span class='configure'>{{{ item.configurable }}}</span>
129 <# } #>
130 <# if ( item.activated && 'vaultpress' !== item.module && item.available ) { #>
131 <span class='delete'><a href="<?php echo esc_url( admin_url( 'admin.php' ) ); ?>?page=jetpack&#038;action=deactivate&#038;module={{{ item.module }}}&#038;_wpnonce={{{ item.deactivate_nonce }}}"><?php esc_html_e( 'Deactivate', 'jetpack' ); ?></a></span>
132 <# } else if ( item.available ) { #>
133 <span class='activate'><a href="<?php echo esc_url( admin_url( 'admin.php' ) ); ?>?page=jetpack&#038;action=activate&#038;module={{{ item.module }}}&#038;_wpnonce={{{ item.activate_nonce }}}"><?php esc_html_e( 'Activate', 'jetpack' ); ?></a></span>
134 <# } #>
135 <# if ( ! item.available ) { #>
136 <span class='unavailable_reason'>{{{ item.unavailable_reason }}}</span>
137 <# } #>
138 </div>
139 </td>
140 </tr>
141 <#
142 });
143 } else {
144 #>
145 <tr class="no-modules-found">
146 <td colspan="2"><?php esc_html_e( 'No Modules Found', 'jetpack' ); ?></td>
147 </tr>
148 <#
149 }
150 #>
151 </script>
152 <?php
153 }
154
155 /**
156 * Get views data.
157 *
158 * @return array Maps identifier to display HTML.
159 */
160 public function get_views() {
161 /** This filter is already documented in class.jetpack-modules-list-table.php */
162 $modules = apply_filters( 'jetpack_modules_list_table_items', Jetpack_Admin::init()->get_modules() );
163 $array_of_module_tags = wp_list_pluck( $modules, 'module_tags' );
164 $module_tags = array_merge( ...array_values( $array_of_module_tags ) );
165 $module_tags_unique = array_count_values( $module_tags );
166 ksort( $module_tags_unique );
167
168 $format = '<a href="%3$s"%4$s data-title="%1$s">%1$s <span class="count">(%2$s)</span></a>';
169 $title = __( 'All', 'jetpack' );
170 $count = count( $modules );
171 $url = esc_url( remove_query_arg( 'module_tag' ) );
172 // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is a view, not a model or controller.
173 $current = empty( $_GET['module_tag'] ) ? ' class="current all"' : ' class="all"';
174 $views = array(
175 'all' => sprintf( $format, $title, $count, $url, $current ),
176 );
177 foreach ( $module_tags_unique as $title => $count ) {
178 $key = sanitize_title( $title );
179 $display_title = esc_html( wptexturize( $title ) );
180 $url = esc_url( add_query_arg( 'module_tag', rawurlencode( $title ) ) );
181 $current = '';
182 // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is a view, not a model or controller.
183 if ( ! empty( $_GET['module_tag'] ) && $title === $_GET['module_tag'] ) {
184 $current = ' class="current"';
185 }
186 $views[ $key ] = sprintf( $format, $display_title, $count, $url, $current );
187 }
188 return $views;
189 }
190
191 /**
192 * Output views HTML.
193 */
194 public function views() {
195 $views = $this->get_views();
196
197 echo "<ul class='subsubsub'>\n";
198 foreach ( $views as $class => $view ) {
199 $views[ $class ] = "\t<li class='$class'>$view</li>";
200 }
201 echo implode( "\n", $views ) . "\n"; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Is HTML. Escaping happens in get_views().
202 echo '</ul>';
203 }
204
205 /**
206 * Filter a modules array for displayed items.
207 *
208 * @param array $modules Modules.
209 * @return array Displayed modules.
210 */
211 public function filter_displayed_table_items( $modules ) {
212 return array_filter( $modules, array( $this, 'is_module_displayed' ) );
213 }
214
215 /**
216 * Determine if a module is displayed.
217 *
218 * @param array $module Module data.
219 * @return bool
220 */
221 public static function is_module_displayed( $module ) {
222 // Handle module tag based filtering.
223 // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is a view, not a model or controller.
224 if ( ! empty( $_REQUEST['module_tag'] ) ) {
225 // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is a view, not a model or controller.
226 $module_tag = sanitize_text_field( wp_unslash( $_REQUEST['module_tag'] ) );
227 if ( ! in_array( $module_tag, $module['module_tags'], true ) ) {
228 return false;
229 }
230 }
231
232 // If nothing rejected it, include it!
233 return true;
234 }
235
236 /**
237 * Sort callback to put modules with `requires_connection` last.
238 *
239 * @param array $module1 Module data.
240 * @param array $module2 Module data.
241 * @return int Indicating the relative ordering of module1 and module2.
242 */
243 public static function sort_requires_connection_last( $module1, $module2 ) {
244 if ( (bool) $module1['requires_connection'] === (bool) $module2['requires_connection'] ) {
245 return 0;
246 }
247 if ( $module1['requires_connection'] ) {
248 return 1;
249 }
250 if ( $module2['requires_connection'] ) {
251 return -1;
252 }
253
254 return 0;
255 }
256
257 /**
258 * Get table columns.
259 *
260 * @return string[] Column name to header HTML.
261 */
262 public function get_columns() {
263 $columns = array(
264 'cb' => '<input type="checkbox" />',
265 'name' => __( 'Name', 'jetpack' ),
266 );
267 return $columns;
268 }
269
270 /**
271 * Get bulk actions for the table.
272 *
273 * @return string[] Actions, code => text.
274 */
275 public function get_bulk_actions() {
276 $actions = array(
277 'bulk-activate' => __( 'Activate', 'jetpack' ),
278 'bulk-deactivate' => __( 'Deactivate', 'jetpack' ),
279 );
280 return $actions;
281 }
282
283 /**
284 * Print a single row of the table.
285 *
286 * @param object|array $item Item.
287 */
288 public function single_row( $item ) {
289 static $i = 0;
290 $row_class = ( ( ++$i ) % 2 ) ? ' alternate' : '';
291
292 if ( ! empty( $item['activated'] ) ) {
293 $row_class .= ' active';
294 }
295
296 if ( ! Jetpack_Admin::is_module_available( $item ) ) {
297 $row_class .= ' unavailable';
298 }
299
300 echo '<tr class="jetpack-module' . esc_attr( $row_class ) . '" id="' . esc_attr( $item['module'] ) . '">';
301 $this->single_row_columns( $item );
302 echo '</tr>';
303 }
304
305 /**
306 * Table classes.
307 *
308 * @return string[] HTML.
309 */
310 public function get_table_classes() {
311 return array( 'table', 'table-bordered', 'wp-list-table', 'widefat', 'fixed', 'jetpack-modules' );
312 }
313
314 /**
315 * Column checkbox.
316 *
317 * @param object|array $item Item.
318 * @return string HTML.
319 */
320 public function column_cb( $item ) {
321 if ( ! Jetpack_Admin::is_module_available( $item ) ) {
322 return '';
323 }
324
325 return sprintf( '<input type="checkbox" name="modules[]" value="%s" />', $item['module'] );
326 }
327
328 /**
329 * Column icon.
330 *
331 * @return string HTML.
332 */
333 public function column_icon() {
334 $badge_text = '';
335 $free_text = '';
336 ob_start();
337 ?>
338 <a href="#TB_inline?width=600&height=550&inlineId=more-info-module-settings-modal" class="thickbox">
339 <div class="module-image">
340 <p><span class="module-image-badge"><?php echo esc_html( $badge_text ); ?></span><span class="module-image-free" style="display: none"><?php echo esc_html( $free_text ); ?></span></p>
341 </div>
342 </a>
343 <?php
344 return ob_get_clean();
345
346 }
347
348 /**
349 * Column name.
350 *
351 * @param object|array $item Item.
352 * @return string HTML.
353 */
354 public function column_name( $item ) {
355 $actions = array(
356 'info' => sprintf( '<a href="%s" target="blank">%s</a>', esc_url( $item['learn_more_button'] ), esc_html__( 'Feature Info', 'jetpack' ) ),
357 );
358
359 if ( ! empty( $item['configurable'] ) ) {
360 $actions['configure'] = $item['configurable'];
361 }
362
363 if ( empty( $item['activated'] ) && Jetpack_Admin::is_module_available( $item ) ) {
364 $url = wp_nonce_url(
365 Jetpack::admin_url(
366 array(
367 'page' => 'jetpack',
368 'action' => 'activate',
369 'module' => $item['module'],
370 )
371 ),
372 'jetpack_activate-' . $item['module']
373 );
374 $actions['activate'] = sprintf( '<a href="%s">%s</a>', esc_url( $url ), esc_html__( 'Activate', 'jetpack' ) );
375 } elseif ( ! empty( $item['activated'] ) ) {
376 $url = wp_nonce_url(
377 Jetpack::admin_url(
378 array(
379 'page' => 'jetpack',
380 'action' => 'deactivate',
381 'module' => $item['module'],
382 )
383 ),
384 'jetpack_deactivate-' . $item['module']
385 );
386 $actions['delete'] = sprintf( '<a href="%s">%s</a>', esc_url( $url ), esc_html__( 'Deactivate', 'jetpack' ) );
387 }
388
389 return $this->row_actions( $actions ) . wptexturize( $item['name'] );
390 }
391
392 /**
393 * Column description.
394 *
395 * @param object|array $item Item.
396 * @return string HTML.
397 */
398 public function column_description( $item ) {
399 ob_start();
400 // phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped
401 /** This action is documented in class.jetpack-admin.php */
402 echo apply_filters( 'jetpack_short_module_description', $item['description'], $item['module'] );
403 /** This action is documented in class.jetpack-admin.php */
404 do_action( 'jetpack_learn_more_button_' . $item['module'] );
405 echo '<div id="more-info-' . $item['module'] . '" class="more-info">';
406 /** This action is documented in class.jetpack-admin.php */
407 do_action( 'jetpack_module_more_info_' . $item['module'] );
408 echo '</div>';
409 // phpcs:enable WordPress.Security.EscapeOutput.OutputNotEscaped
410 return ob_get_clean();
411 }
412
413 /**
414 * Return module tags HTML.
415 *
416 * @param object|array $item Item.
417 * @return string HTML.
418 */
419 public function column_module_tags( $item ) {
420 $module_tags = array();
421 foreach ( $item['module_tags'] as $module_tag ) {
422 $module_tags[] = sprintf( '<a href="%3$s" data-title="%2$s">%1$s</a>', esc_html( $module_tag ), esc_attr( $module_tag ), esc_url( add_query_arg( 'module_tag', rawurlencode( $module_tag ) ) ) );
423 }
424 return implode( ', ', $module_tags );
425 }
426
427 /**
428 * Column default value.
429 *
430 * @param object|array $item Item.
431 * @param string $column_name Column name.
432 * @return string
433 */
434 public function column_default( $item, $column_name ) {
435 switch ( $column_name ) {
436 case 'icon':
437 case 'name':
438 case 'description':
439 return '';
440 default:
441 // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_print_r
442 return print_r( $item, true );
443 }
444 }
445
446 /**
447 * Check if the info parameter provided in the URL corresponds to an actual module.
448 *
449 * @param string|false $info Info parameter.
450 * @param array $modules Modules array.
451 * @return string|false
452 */
453 public function module_info_check( $info, $modules ) {
454 if ( ! $info ) {
455 return false;
456 } elseif ( array_key_exists( $info, $modules ) ) {
457 return $info;
458 }
459 }
460
461 /**
462 * Core switched their `display_tablenav()` method to protected, so we can't access it directly.
463 * Instead, let's include an access function to make it doable without errors!
464 *
465 * @see https://github.com/WordPress/WordPress/commit/d28f6344de97616de8ece543ed290c4ba2383622
466 *
467 * @param string $which Which nav table to display.
468 * @return mixed
469 */
470 public function unprotected_display_tablenav( $which = 'top' ) {
471 return $this->display_tablenav( $which );
472 }
473
474 }
475