| 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( 'jquery', '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( 'jquery', '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 }}}" {{{ item.disabled }}} /> |
| 123 |
</th> |
| 124 |
<td class='name column-name'> |
| 125 |
<p class='info'><a href="{{{item.learn_more_button}}}" target="blank" style="text-decoration: none;">{{{ item.name }}}</a></p> |
| 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 class="dops-button is-compact" href="<?php echo esc_url( admin_url( 'admin.php' ) ); ?>?page=jetpack&action=deactivate&module={{{ item.module }}}&_wpnonce={{{ item.deactivate_nonce }}}"><?php esc_html_e( 'Deactivate', 'jetpack' ); ?></a></span> |
| 132 |
<# } else if ( item.available ) { #> |
| 133 |
<span class='activate'><a class="dops-button is-compact" href="<?php echo esc_url( admin_url( 'admin.php' ) ); ?>?page=jetpack&action=activate&module={{{ item.module }}}&_wpnonce={{{ item.activate_nonce }}}"><?php esc_html_e( 'Activate', 'jetpack' ); ?></a></span> |
| 134 |
<# } #> |
| 135 |
<# if ( ! item.available ) { #> |
| 136 |
<p class='unavailable_reason'>{{{ item.unavailable_reason }}}</p> |
| 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 = array_map( 'jetpack_get_module_i18n_tag', $module_tags ); |
| 166 |
$module_tags_unique = array_count_values( $module_tags ); |
| 167 |
ksort( $module_tags_unique ); |
| 168 |
|
| 169 |
$format = '<a href="%3$s" %4$s data-title="%1$s">%1$s</a> <span class="count">(%2$s)</span>'; |
| 170 |
$title = __( 'All', 'jetpack' ); |
| 171 |
$count = is_countable( $modules ) ? count( $modules ) : 0; |
| 172 |
$url = esc_url( remove_query_arg( 'module_tag' ) ); |
| 173 |
// phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is a view, not a model or controller. |
| 174 |
$views = array( |
| 175 |
'all' => sprintf( $format, $title, $count, $url, 'class="all"' ), |
| 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 |
$views[ $key ] = sprintf( $format, $display_title, $count, $url, '' ); |
| 182 |
} |
| 183 |
return $views; |
| 184 |
} |
| 185 |
|
| 186 |
/** |
| 187 |
* Output views HTML. |
| 188 |
*/ |
| 189 |
public function views() { |
| 190 |
$views = $this->get_views(); |
| 191 |
|
| 192 |
// phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is a view, not a model or controller. |
| 193 |
$module_tag = empty( $_GET['module_tag'] ) ? 'all' : sanitize_title( wp_unslash( $_GET['module_tag'] ) ); |
| 194 |
|
| 195 |
echo "<ul class='subsubsub'>\n"; |
| 196 |
foreach ( $views as $class => $view ) { |
| 197 |
$class_name = $class; |
| 198 |
if ( $class === $module_tag ) { |
| 199 |
$class_name .= ' current'; |
| 200 |
} |
| 201 |
|
| 202 |
$views[ $class ] = "\t<li class='$class_name'>$view</li>"; |
| 203 |
} |
| 204 |
echo implode( "\n", $views ) . "\n"; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Is HTML. Escaping happens in get_views(). |
| 205 |
echo '</ul>'; |
| 206 |
} |
| 207 |
|
| 208 |
/** |
| 209 |
* Filter a modules array for displayed items. |
| 210 |
* |
| 211 |
* @param array $modules Modules. |
| 212 |
* @return array Displayed modules. |
| 213 |
*/ |
| 214 |
public function filter_displayed_table_items( $modules ) { |
| 215 |
return array_filter( $modules, array( $this, 'is_module_displayed' ) ); |
| 216 |
} |
| 217 |
|
| 218 |
/** |
| 219 |
* Determine if a module is displayed. |
| 220 |
* |
| 221 |
* @param array $module Module data. |
| 222 |
* @return bool |
| 223 |
*/ |
| 224 |
public static function is_module_displayed( $module ) { |
| 225 |
// Handle module tag based filtering. |
| 226 |
// phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is a view, not a model or controller. |
| 227 |
if ( ! empty( $_REQUEST['module_tag'] ) ) { |
| 228 |
// phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is a view, not a model or controller. |
| 229 |
$module_tag = sanitize_text_field( wp_unslash( $_REQUEST['module_tag'] ) ); |
| 230 |
if ( ! in_array( $module_tag, array_map( 'jetpack_get_module_i18n_tag', $module['module_tags'] ), true ) ) { |
| 231 |
return false; |
| 232 |
} |
| 233 |
} |
| 234 |
|
| 235 |
// If nothing rejected it, include it! |
| 236 |
return true; |
| 237 |
} |
| 238 |
|
| 239 |
/** |
| 240 |
* Sort callback to put modules with `requires_connection` last. |
| 241 |
* |
| 242 |
* @param array $module1 Module data. |
| 243 |
* @param array $module2 Module data. |
| 244 |
* @return int Indicating the relative ordering of module1 and module2. |
| 245 |
*/ |
| 246 |
public static function sort_requires_connection_last( $module1, $module2 ) { |
| 247 |
if ( (bool) $module1['requires_connection'] === (bool) $module2['requires_connection'] ) { |
| 248 |
return 0; |
| 249 |
} |
| 250 |
if ( $module1['requires_connection'] ) { |
| 251 |
return 1; |
| 252 |
} |
| 253 |
if ( $module2['requires_connection'] ) { |
| 254 |
return -1; |
| 255 |
} |
| 256 |
|
| 257 |
return 0; |
| 258 |
} |
| 259 |
|
| 260 |
/** |
| 261 |
* Get table columns. |
| 262 |
* |
| 263 |
* @return string[] Column name to header HTML. |
| 264 |
*/ |
| 265 |
public function get_columns() { |
| 266 |
$columns = array( |
| 267 |
'cb' => '<input type="checkbox" />', |
| 268 |
'name' => __( 'Name', 'jetpack' ), |
| 269 |
); |
| 270 |
return $columns; |
| 271 |
} |
| 272 |
|
| 273 |
/** |
| 274 |
* Get bulk actions for the table. |
| 275 |
* |
| 276 |
* @return string[] Actions, code => text. |
| 277 |
*/ |
| 278 |
public function get_bulk_actions() { |
| 279 |
$actions = array( |
| 280 |
'bulk-activate' => __( 'Activate', 'jetpack' ), |
| 281 |
'bulk-deactivate' => __( 'Deactivate', 'jetpack' ), |
| 282 |
); |
| 283 |
return $actions; |
| 284 |
} |
| 285 |
|
| 286 |
/** |
| 287 |
* Print a single row of the table. |
| 288 |
* |
| 289 |
* @param object|array $item Item. |
| 290 |
*/ |
| 291 |
public function single_row( $item ) { |
| 292 |
static $i = 0; |
| 293 |
$row_class = ( ( ++$i ) % 2 ) ? ' alternate' : ''; |
| 294 |
|
| 295 |
if ( ! empty( $item['activated'] ) ) { |
| 296 |
$row_class .= ' active'; |
| 297 |
} |
| 298 |
|
| 299 |
if ( ! Jetpack_Admin::is_module_available( $item ) ) { |
| 300 |
$row_class .= ' unavailable'; |
| 301 |
} |
| 302 |
|
| 303 |
echo '<tr class="jetpack-module' . esc_attr( $row_class ) . '" id="' . esc_attr( $item['module'] ) . '">'; |
| 304 |
$this->single_row_columns( $item ); |
| 305 |
echo '</tr>'; |
| 306 |
} |
| 307 |
|
| 308 |
/** |
| 309 |
* Table classes. |
| 310 |
* |
| 311 |
* @return string[] HTML. |
| 312 |
*/ |
| 313 |
public function get_table_classes() { |
| 314 |
return array( 'table', 'table-bordered', 'wp-list-table', 'widefat', 'fixed' ); |
| 315 |
} |
| 316 |
|
| 317 |
/** |
| 318 |
* Column checkbox. |
| 319 |
* |
| 320 |
* @param object|array $item Item. |
| 321 |
* @return string HTML. |
| 322 |
*/ |
| 323 |
public function column_cb( $item ) { |
| 324 |
if ( ! Jetpack_Admin::is_module_available( $item ) ) { |
| 325 |
return ''; |
| 326 |
} |
| 327 |
|
| 328 |
return sprintf( '<input type="checkbox" name="modules[]" value="%s" />', $item['module'] ); |
| 329 |
} |
| 330 |
|
| 331 |
/** |
| 332 |
* Column icon. |
| 333 |
* |
| 334 |
* @return string HTML. |
| 335 |
*/ |
| 336 |
public function column_icon() { |
| 337 |
$badge_text = ''; |
| 338 |
$free_text = ''; |
| 339 |
ob_start(); |
| 340 |
?> |
| 341 |
<a href="#TB_inline?width=600&height=550&inlineId=more-info-module-settings-modal" class="thickbox"> |
| 342 |
<div class="module-image"> |
| 343 |
<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> |
| 344 |
</div> |
| 345 |
</a> |
| 346 |
<?php |
| 347 |
return ob_get_clean(); |
| 348 |
} |
| 349 |
|
| 350 |
/** |
| 351 |
* Column name. |
| 352 |
* |
| 353 |
* @param object|array $item Item. |
| 354 |
* @return string HTML. |
| 355 |
*/ |
| 356 |
public function column_name( $item ) { |
| 357 |
$actions = array( |
| 358 |
'info' => sprintf( '<a href="%s" target="blank">%s</a>', esc_url( $item['learn_more_button'] ), esc_html__( 'Feature Info', 'jetpack' ) ), |
| 359 |
); |
| 360 |
|
| 361 |
if ( ! empty( $item['configurable'] ) ) { |
| 362 |
$actions['configure'] = $item['configurable']; |
| 363 |
} |
| 364 |
|
| 365 |
if ( empty( $item['activated'] ) && Jetpack_Admin::is_module_available( $item ) ) { |
| 366 |
$url = wp_nonce_url( |
| 367 |
Jetpack::admin_url( |
| 368 |
array( |
| 369 |
'page' => 'jetpack', |
| 370 |
'action' => 'activate', |
| 371 |
'module' => $item['module'], |
| 372 |
) |
| 373 |
), |
| 374 |
'jetpack_activate-' . $item['module'] |
| 375 |
); |
| 376 |
$actions['activate'] = sprintf( '<a href="%s">%s</a>', esc_url( $url ), esc_html__( 'Activate', 'jetpack' ) ); |
| 377 |
} elseif ( ! empty( $item['activated'] ) ) { |
| 378 |
$url = wp_nonce_url( |
| 379 |
Jetpack::admin_url( |
| 380 |
array( |
| 381 |
'page' => 'jetpack', |
| 382 |
'action' => 'deactivate', |
| 383 |
'module' => $item['module'], |
| 384 |
) |
| 385 |
), |
| 386 |
'jetpack_deactivate-' . $item['module'] |
| 387 |
); |
| 388 |
$actions['delete'] = sprintf( '<a href="%s">%s</a>', esc_url( $url ), esc_html__( 'Deactivate', 'jetpack' ) ); |
| 389 |
} |
| 390 |
|
| 391 |
return $this->row_actions( $actions ) . wptexturize( $item['name'] ); |
| 392 |
} |
| 393 |
|
| 394 |
/** |
| 395 |
* Column description. |
| 396 |
* |
| 397 |
* @param object|array $item Item. |
| 398 |
* @return string HTML. |
| 399 |
*/ |
| 400 |
public function column_description( $item ) { |
| 401 |
ob_start(); |
| 402 |
// phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped |
| 403 |
/** This action is documented in class.jetpack-admin.php */ |
| 404 |
echo apply_filters( 'jetpack_short_module_description', $item['description'], $item['module'] ); |
| 405 |
/** This action is documented in class.jetpack-admin.php */ |
| 406 |
do_action( 'jetpack_learn_more_button_' . $item['module'] ); |
| 407 |
echo '<div id="more-info-' . $item['module'] . '" class="more-info">'; |
| 408 |
/** This action is documented in class.jetpack-admin.php */ |
| 409 |
do_action( 'jetpack_module_more_info_' . $item['module'] ); |
| 410 |
echo '</div>'; |
| 411 |
// phpcs:enable WordPress.Security.EscapeOutput.OutputNotEscaped |
| 412 |
return ob_get_clean(); |
| 413 |
} |
| 414 |
|
| 415 |
/** |
| 416 |
* Return module tags HTML. |
| 417 |
* |
| 418 |
* @param object|array $item Item. |
| 419 |
* @return string HTML. |
| 420 |
*/ |
| 421 |
public function column_module_tags( $item ) { |
| 422 |
$module_tags = array(); |
| 423 |
foreach ( array_map( 'jetpack_get_module_i18n_tag', $item['module_tags'] ) as $module_tag ) { |
| 424 |
$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 ) ) ) ); |
| 425 |
} |
| 426 |
return implode( ', ', $module_tags ); |
| 427 |
} |
| 428 |
|
| 429 |
/** |
| 430 |
* Column default value. |
| 431 |
* |
| 432 |
* @param object|array $item Item. |
| 433 |
* @param string $column_name Column name. |
| 434 |
* @return string |
| 435 |
*/ |
| 436 |
public function column_default( $item, $column_name ) { |
| 437 |
switch ( $column_name ) { |
| 438 |
case 'icon': |
| 439 |
case 'name': |
| 440 |
case 'description': |
| 441 |
return ''; |
| 442 |
default: |
| 443 |
// phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_print_r |
| 444 |
return print_r( $item, true ); |
| 445 |
} |
| 446 |
} |
| 447 |
|
| 448 |
/** |
| 449 |
* Check if the info parameter provided in the URL corresponds to an actual module. |
| 450 |
* |
| 451 |
* @param string|false $info Info parameter. |
| 452 |
* @param array $modules Modules array. |
| 453 |
* @return string|false |
| 454 |
*/ |
| 455 |
public function module_info_check( $info, $modules ) { |
| 456 |
if ( ! $info ) { |
| 457 |
return false; |
| 458 |
} elseif ( array_key_exists( $info, $modules ) ) { |
| 459 |
return $info; |
| 460 |
} |
| 461 |
} |
| 462 |
|
| 463 |
/** |
| 464 |
* Core switched their `display_tablenav()` method to protected, so we can't access it directly. |
| 465 |
* Instead, let's include an access function to make it doable without errors! |
| 466 |
* |
| 467 |
* @see https://github.com/WordPress/WordPress/commit/d28f6344de97616de8ece543ed290c4ba2383622 |
| 468 |
* |
| 469 |
* @param string $which Which nav table to display. |
| 470 |
* @return mixed |
| 471 |
*/ |
| 472 |
public function unprotected_display_tablenav( $which = 'top' ) { |
| 473 |
return $this->display_tablenav( $which ); |
| 474 |
} |
| 475 |
} |
| 476 |
|