Module slug => product group slug. */ public static function get_module_product_groups_map() { return array( // Grow your audience. 'blaze' => 'growth', 'comment-likes' => 'growth', 'comments' => 'growth', 'contact-form' => 'growth', 'gravatar-hovercards' => 'growth', 'likes' => 'growth', 'publicize' => 'growth', 'related-posts' => 'growth', 'sharedaddy' => 'growth', 'simple-payments' => 'growth', 'stats' => 'growth', 'subscriptions' => 'growth', 'woocommerce-analytics' => 'growth', 'wordads' => 'growth', 'wpcom-reader' => 'growth', // Speed up your site. 'carousel' => 'performance', 'google-fonts' => 'performance', 'infinite-scroll' => 'performance', 'photon' => 'performance', 'photon-cdn' => 'performance', 'search' => 'performance', 'tiled-gallery' => 'performance', 'videopress' => 'performance', // Protect your site. 'account-protection' => 'security', 'monitor' => 'security', 'notes' => 'security', 'protect' => 'security', 'sso' => 'security', 'vaultpress' => 'security', 'waf' => 'security', ); } /** * Get the product group slug for a given module. * * @param string $slug Module slug. * @return string Product group slug. */ public static function get_module_product_group( $slug ) { $map = self::get_module_product_groups_map(); return $map[ $slug ] ?? 'other'; } /** * Get the translated display name for a product group. * * @param string $group Product group slug. * @return string Translated group name. */ public static function get_product_group_name( $group ) { switch ( $group ) { case 'growth': return __( 'Grow your audience', 'jetpack' ); case 'performance': return __( 'Speed up your site', 'jetpack' ); case 'security': return __( 'Protect your site', 'jetpack' ); default: return __( 'Other features', 'jetpack' ); } } /** * Whether a module is flagged as recommended. * * @param array $module Module data (with raw, untranslated module tags). * @return bool */ public static function is_module_recommended( $module ) { return ! empty( $module['module_tags'] ) && in_array( 'Recommended', (array) $module['module_tags'], true ); } /** * Remove the legacy `vaultpress` module from the modules screen. * * The `vaultpress` module is a leftover stub for the original standalone * VaultPress plugin. It is hard-coded as never activatable (see * Jetpack_Admin::is_module_available()) and is unrelated to the modern * VaultPress Backup product, which is delivered through My Jetpack and the * standalone Jetpack VaultPress Backup plugin rather than a Jetpack module. * Showing a permanently-unavailable row that merely reuses the modern * product's name is misleading, so we drop it from this screen only. Other * surfaces (REST, the React dashboard, standalone plugins) are unaffected. * * @param array $modules Array of Jetpack modules keyed by slug. * @return array Modules without the legacy `vaultpress` entry. */ public static function hide_legacy_vaultpress_module( $modules ) { unset( $modules['vaultpress'] ); return $modules; } /** Constructor. */ public function __construct() { parent::__construct(); Jetpack::init(); // Scope this to the modules screen so REST/React/standalone surfaces keep the legacy slug. add_filter( 'jetpack_modules_list_table_items', array( __CLASS__, 'hide_legacy_vaultpress_module' ) ); if ( $this->compat_fields && is_array( $this->compat_fields ) ) { array_push( $this->compat_fields, 'all_items' ); } /** * Filters the list of modules available to be displayed in the Jetpack Settings screen. * * @since 3.0.0 * * @param array $modules Array of Jetpack modules. */ $this->all_items = apply_filters( 'jetpack_modules_list_table_items', Jetpack_Admin::init()->get_modules() ); $this->items = $this->all_items; $this->items = $this->filter_displayed_table_items( $this->items ); $this->_column_headers = array( $this->get_columns(), array(), array(), 'name' ); // 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()`. $modal_info = isset( $_GET['info'] ) ? wp_unslash( $_GET['info'] ) : false; // Adding in a hidden h1 heading for screen-readers. ?>

all_items ); foreach ( array_keys( $modules_for_js ) as $slug ) { $group = self::get_module_product_group( $slug ); $modules_for_js[ $slug ]['product_group'] = $group; $modules_for_js[ $slug ]['product_group_name'] = self::get_product_group_name( $group ); // Detect recommendation from the raw (untranslated) module tags. $modules_for_js[ $slug ]['recommended'] = isset( $this->all_items[ $slug ] ) && self::is_module_recommended( $this->all_items[ $slug ] ); } wp_localize_script( 'jetpack-modules-list-table', 'jetpackModulesData', array( 'modules' => $modules_for_js, 'i18n' => array( 'search_placeholder' => __( 'Search modules…', 'jetpack' ), ), 'modalinfo' => $this->module_info_check( $modal_info, $this->all_items ), 'nonces' => array( 'bulk' => wp_create_nonce( 'bulk-jetpack_page_jetpack_modules' ), ), ) ); wp_enqueue_script( 'jetpack-modules-list-table' ); /** * Filters the js_templates callback value. * * @since 3.6.0 * * @param array array( $this, 'js_templates' ) js_templates callback. */ add_action( 'admin_footer', apply_filters( 'jetpack_modules_list_table_js_template_callback', array( $this, 'js_templates' ) ), 9 ); } /** * Output row template. */ public function js_templates() { ?> get_modules() ); $array_of_module_tags = wp_list_pluck( $modules, 'module_tags' ); $module_tags = array_merge( ...array_values( $array_of_module_tags ) ); $module_tags = array_map( 'jetpack_get_module_i18n_tag', $module_tags ); $module_tags_unique = array_count_values( $module_tags ); ksort( $module_tags_unique ); $format = '%1$s (%2$s)'; $title = __( 'All', 'jetpack' ); $count = is_countable( $modules ) ? count( $modules ) : 0; $url = esc_url( remove_query_arg( 'module_tag' ) ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is a view, not a model or controller. $views = array( 'all' => sprintf( $format, $title, $count, $url, 'class="all"' ), ); foreach ( $module_tags_unique as $title => $count ) { $key = sanitize_title( $title ); $display_title = esc_html( wptexturize( $title ) ); $url = esc_url( add_query_arg( 'module_tag', rawurlencode( $title ) ) ); $views[ $key ] = sprintf( $format, $display_title, $count, $url, '' ); } return $views; } /** * Output views HTML. */ public function views() { $views = $this->get_views(); // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is a view, not a model or controller. $module_tag = empty( $_GET['module_tag'] ) ? 'all' : sanitize_title( wp_unslash( $_GET['module_tag'] ) ); echo "'; } /** * Filter a modules array for displayed items. * * @param array $modules Modules. * @return array Displayed modules. */ public function filter_displayed_table_items( $modules ) { return array_filter( $modules, array( $this, 'is_module_displayed' ) ); } /** * Determine if a module is displayed. * * @param array $module Module data. * @return bool */ public static function is_module_displayed( $module ) { // Handle module tag based filtering. // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is a view, not a model or controller. if ( ! empty( $_REQUEST['module_tag'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is a view, not a model or controller. $module_tag = sanitize_text_field( wp_unslash( $_REQUEST['module_tag'] ) ); if ( ! in_array( $module_tag, array_map( 'jetpack_get_module_i18n_tag', $module['module_tags'] ), true ) ) { return false; } } // If nothing rejected it, include it! return true; } /** * Sort callback to put modules with `requires_connection` last. * * @param array $module1 Module data. * @param array $module2 Module data. * @return int Indicating the relative ordering of module1 and module2. */ public static function sort_requires_connection_last( $module1, $module2 ) { if ( (bool) $module1['requires_connection'] === (bool) $module2['requires_connection'] ) { return 0; } if ( $module1['requires_connection'] ) { return 1; } if ( $module2['requires_connection'] ) { return -1; } return 0; } /** * Get table columns. * * @return string[] Column name to header HTML. */ public function get_columns() { $columns = array( 'cb' => '', 'name' => __( 'Name', 'jetpack' ), ); return $columns; } /** * Get bulk actions for the table. * * @return string[] Actions, code => text. */ public function get_bulk_actions() { $actions = array( 'bulk-activate' => __( 'Activate', 'jetpack' ), 'bulk-deactivate' => __( 'Deactivate', 'jetpack' ), ); return $actions; } /** * Print the module rows grouped by product group. * * Overrides WP_List_Table::display_rows() so the server-rendered (no-JS) * output matches the grouped, card-style layout produced by the Backbone * template. */ public function display_rows() { $buckets = array(); foreach ( self::PRODUCT_GROUP_ORDER as $group ) { $buckets[ $group ] = array(); } foreach ( $this->items as $item ) { $group = self::get_module_product_group( $item['module'] ); $buckets[ $group ][] = $item; } foreach ( $buckets as $group => $items ) { if ( empty( $items ) ) { continue; } $this->group_header_row( $group ); foreach ( $items as $item ) { $this->single_row( $item ); } } } /** * Print a product group header row. * * @param string $group Product group slug. */ protected function group_header_row( $group ) { printf( '

%2$s

', esc_attr( $group ), esc_html( self::get_product_group_name( $group ) ) ); } /** * Print a single row of the table. * * @param object|array $item Item. */ public function single_row( $item ) { static $i = 0; $row_class = ( ( ++$i ) % 2 ) ? ' alternate' : ''; $available = Jetpack_Admin::is_module_available( $item ); if ( ! empty( $item['activated'] ) ) { $row_class .= ' active'; } if ( ! $available ) { $row_class .= ' unavailable'; } echo ''; echo ''; if ( $available ) { printf( '', esc_attr( $item['module'] ) ); } echo ''; echo ''; echo '
'; echo '
'; if ( ! empty( $item['learn_more_button'] ) ) { printf( '%2$s', esc_url( $item['learn_more_button'] ), wp_kses_post( wptexturize( $item['name'] ) ) ); } else { echo '' . wp_kses_post( wptexturize( $item['name'] ) ) . ''; } if ( ! empty( $item['description'] ) ) { echo '' . esc_html( wp_strip_all_tags( $item['description'] ) ) . ''; } echo '
'; echo '
'; echo ''; if ( $available && self::is_module_recommended( $item ) ) { echo '' . esc_html__( 'Recommended', 'jetpack' ) . ''; } if ( $available ) { if ( ! empty( $item['activated'] ) ) { echo '' . esc_html__( 'Active', 'jetpack' ) . ''; } else { echo '' . esc_html__( 'Inactive', 'jetpack' ) . ''; } } echo ''; echo '
'; if ( ! empty( $item['configurable'] ) ) { echo '' . wp_kses_post( $item['configurable'] ) . ''; } if ( $available ) { echo $this->get_module_toggle_html( $item ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Escaped in helper. } elseif ( ! empty( $item['unavailable_reason'] ) ) { echo '' . wp_kses_post( $item['unavailable_reason'] ) . ''; } // Close .row-actions, .jetpack-module__meta, and .jetpack-module__body. echo '
'; echo ''; echo ''; } /** * Build the activate/deactivate toggle control markup for a module row. * * @param object|array $item Module data. * @return string HTML. */ protected function get_module_toggle_html( $item ) { $is_active = ! empty( $item['activated'] ); if ( $is_active ) { $url = wp_nonce_url( Jetpack::admin_url( array( 'page' => 'jetpack', 'action' => 'deactivate', 'module' => $item['module'], ) ), 'jetpack_deactivate-' . $item['module'] ); $label = sprintf( /* translators: %s: Jetpack module name. */ __( 'Deactivate %s', 'jetpack' ), $item['name'] ); $class = 'jetpack-module__toggle is-active'; $aria = 'true'; } else { $url = wp_nonce_url( Jetpack::admin_url( array( 'page' => 'jetpack', 'action' => 'activate', 'module' => $item['module'], ) ), 'jetpack_activate-' . $item['module'] ); $label = sprintf( /* translators: %s: Jetpack module name. */ __( 'Activate %s', 'jetpack' ), $item['name'] ); $class = 'jetpack-module__toggle'; $aria = 'false'; } return sprintf( '%4$s', esc_attr( $class ), esc_attr( $aria ), esc_url( $url ), esc_html( $label ) ); } /** * Table classes. * * @return string[] HTML. */ public function get_table_classes() { return array( 'table', 'table-bordered', 'wp-list-table', 'widefat', 'fixed' ); } /** * Check if the info parameter provided in the URL corresponds to an actual module. * * @param string|false $info Info parameter. * @param array $modules Modules array. * @return string|false */ public function module_info_check( $info, $modules ) { if ( ! $info ) { return false; } elseif ( array_key_exists( $info, $modules ) ) { return $info; } } /** * Core switched their `display_tablenav()` method to protected, so we can't access it directly. * Instead, let's include an access function to make it doable without errors! * * @see https://github.com/WordPress/WordPress/commit/d28f6344de97616de8ece543ed290c4ba2383622 * * @param string $which Which nav table to display. * @return mixed */ public function unprotected_display_tablenav( $which = 'top' ) { return $this->display_tablenav( $which ); } }