Automattic /
jetpack
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 1 | <?php |
||
| 2 | |||
| 3 | if ( ! class_exists( 'WP_List_Table' ) ) |
||
| 4 | require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
||
| 5 | |||
| 6 | class Jetpack_Modules_List_Table extends WP_List_Table { |
||
| 7 | |||
| 8 | function __construct() { |
||
| 9 | parent::__construct(); |
||
| 10 | |||
| 11 | Jetpack::init(); |
||
| 12 | |||
| 13 | // In WP 4.2 WP_List_Table will be sanitizing which values are __set() |
||
| 14 | global $wp_version; |
||
| 15 | if ( version_compare( $wp_version, '4.2-z', '>=' ) && $this->compat_fields && is_array( $this->compat_fields ) ) { |
||
| 16 | array_push( $this->compat_fields, 'all_items' ); |
||
| 17 | } |
||
| 18 | |||
| 19 | $this->items = $this->all_items = Jetpack_Admin::init()->get_modules(); |
||
| 20 | $this->items = $this->filter_displayed_table_items( $this->items ); |
||
| 21 | /** |
||
| 22 | * Filters the list of modules available to be displayed in the Jetpack Settings screen. |
||
| 23 | * |
||
| 24 | * @since 3.0.0 |
||
| 25 | * |
||
| 26 | * @param array $this->items Array of Jetpack modules. |
||
| 27 | */ |
||
| 28 | $this->items = apply_filters( 'jetpack_modules_list_table_items', $this->items ); |
||
| 29 | $this->_column_headers = array( $this->get_columns(), array(), array(), 'name' ); |
||
| 30 | $modal_info = isset( $_GET['info'] ) ? $_GET['info'] : false; |
||
| 31 | |||
| 32 | wp_register_script( |
||
| 33 | 'models.jetpack-modules', |
||
| 34 | plugins_url( '_inc/jetpack-modules.models.js', JETPACK__PLUGIN_FILE ), |
||
| 35 | array( 'backbone', 'underscore' ), |
||
| 36 | JETPACK__VERSION |
||
| 37 | ); |
||
| 38 | wp_register_script( |
||
| 39 | 'views.jetpack-modules', |
||
| 40 | plugins_url( '_inc/jetpack-modules.views.js', JETPACK__PLUGIN_FILE ), |
||
| 41 | array( 'backbone', 'underscore', 'wp-util' ), |
||
| 42 | JETPACK__VERSION |
||
| 43 | ); |
||
| 44 | wp_register_script( |
||
| 45 | 'jetpack-modules-list-table', |
||
| 46 | plugins_url( '_inc/jetpack-modules.js', JETPACK__PLUGIN_FILE ), |
||
| 47 | array( |
||
| 48 | 'views.jetpack-modules', |
||
| 49 | 'models.jetpack-modules', |
||
| 50 | 'jquery', |
||
| 51 | ), |
||
| 52 | JETPACK__VERSION, |
||
| 53 | true |
||
| 54 | ); |
||
| 55 | |||
| 56 | wp_localize_script( 'jetpack-modules-list-table', 'jetpackModulesData', array( |
||
| 57 | 'modules' => Jetpack::get_translated_modules( $this->all_items ), |
||
| 58 | 'i18n' => array( |
||
| 59 | 'search_placeholder' => __( 'Search Modules…', 'jetpack' ), |
||
| 60 | ), |
||
| 61 | 'modalinfo' => $this->module_info_check( $modal_info, $this->all_items ), |
||
| 62 | 'nonces' => array( |
||
| 63 | 'bulk' => wp_create_nonce( 'bulk-jetpack_page_jetpack_modules' ), |
||
| 64 | ), |
||
| 65 | ) ); |
||
| 66 | |||
| 67 | wp_enqueue_script( 'jetpack-modules-list-table' ); |
||
| 68 | |||
| 69 | /** |
||
| 70 | * Filters the js_templates callback value. |
||
| 71 | * |
||
| 72 | * @since 3.6.0 |
||
| 73 | * |
||
| 74 | * @param array array( $this, 'js_templates' ) js_templates callback. |
||
| 75 | */ |
||
| 76 | add_action( 'admin_footer', apply_filters( 'jetpack_modules_list_table_js_template_callback', array( $this, 'js_templates' ) ), 9 ); |
||
| 77 | } |
||
| 78 | |||
| 79 | function js_templates() { |
||
| 80 | ?> |
||
| 81 | <script type="text/html" id="tmpl-Jetpack_Modules_List_Table_Template"> |
||
| 82 | <# var i = 0; |
||
| 83 | if ( data.items.length ) { |
||
| 84 | _.each( data.items, function( item, key, list ) { |
||
| 85 | if ( item === undefined ) return; #> |
||
| 86 | <tr class="jetpack-module <# if ( ++i % 2 ) { #> alternate<# } #><# if ( item.activated ) { #> active<# } #><# if ( ! item.available ) { #> unavailable<# } #>" id="{{{ item.module }}}"> |
||
| 87 | <th scope="row" class="check-column"> |
||
| 88 | <# if ( 'videopress' !== item.module ) { #> |
||
| 89 | <input type="checkbox" name="modules[]" value="{{{ item.module }}}" /> |
||
| 90 | <# } #> |
||
| 91 | </th> |
||
| 92 | <td class='name column-name'> |
||
| 93 | <span class='info'><a href="{{{item.learn_more_button}}}" target="blank">{{{ item.name }}}</a></span> |
||
| 94 | <div class="row-actions"> |
||
| 95 | <# if ( item.configurable ) { #> |
||
| 96 | <span class='configure'>{{{ item.configurable }}}</span> |
||
| 97 | <# } #> |
||
| 98 | <# if ( item.activated && 'vaultpress' !== item.module && item.available && 'videopress' !== item.module ) { #> |
||
| 99 | <span class='delete'><a href="<?php echo admin_url( 'admin.php' ); ?>?page=jetpack&action=deactivate&module={{{ item.module }}}&_wpnonce={{{ item.deactivate_nonce }}}"><?php _e( 'Deactivate', 'jetpack' ); ?></a></span> |
||
| 100 | <# } else if ( item.available && 'videopress' !== item.module ) { #> |
||
| 101 | <span class='activate'><a href="<?php echo admin_url( 'admin.php' ); ?>?page=jetpack&action=activate&module={{{ item.module }}}&_wpnonce={{{ item.activate_nonce }}}"><?php _e( 'Activate', 'jetpack' ); ?></a></span> |
||
| 102 | <# } #> |
||
| 103 | </div> |
||
| 104 | </td> |
||
| 105 | </tr> |
||
| 106 | <# |
||
| 107 | }); |
||
| 108 | } else { |
||
| 109 | #> |
||
| 110 | <tr class="no-modules-found"> |
||
| 111 | <td colspan="2"><?php esc_html_e( 'No Modules Found' , 'jetpack' ); ?></td> |
||
| 112 | </tr> |
||
| 113 | <# |
||
| 114 | } |
||
| 115 | #> |
||
| 116 | </script> |
||
| 117 | <?php |
||
| 118 | } |
||
| 119 | |||
| 120 | function get_views() { |
||
| 121 | $modules = Jetpack_Admin::init()->get_modules(); |
||
| 122 | $array_of_module_tags = wp_list_pluck( $modules, 'module_tags' ); |
||
| 123 | $module_tags = call_user_func_array( 'array_merge', $array_of_module_tags ); |
||
| 124 | $module_tags_unique = array_count_values( $module_tags ); |
||
| 125 | ksort( $module_tags_unique ); |
||
| 126 | |||
| 127 | $format = '<a href="%3$s"%4$s data-title="%1$s">%1$s <span class="count">(%2$s)</span></a>'; |
||
| 128 | $title = __( 'All', 'jetpack' ); |
||
| 129 | $count = count( $modules ); |
||
| 130 | $url = esc_url( remove_query_arg( 'module_tag' ) ); |
||
| 131 | $current = empty( $_GET['module_tag'] ) ? ' class="current all"' : ' class="all"'; |
||
| 132 | $views = array( |
||
| 133 | 'all' => sprintf( $format, $title, $count, $url, $current ), |
||
| 134 | ); |
||
| 135 | foreach ( $module_tags_unique as $title => $count ) { |
||
| 136 | if ( 'Jumpstart' == $title ) { |
||
| 137 | continue; |
||
| 138 | } |
||
| 139 | $key = sanitize_title( $title ); |
||
| 140 | if ( 'centralized-management' === $key && Jetpack::is_module_active( 'manage' ) ) { |
||
| 141 | continue; |
||
| 142 | } |
||
| 143 | $display_title = esc_html( wptexturize( $title ) ); |
||
| 144 | $url = esc_url( add_query_arg( 'module_tag', urlencode( $title ) ) ); |
||
| 145 | $current = ''; |
||
| 146 | if ( ! empty( $_GET['module_tag'] ) && $title == $_GET['module_tag'] ) |
||
| 147 | $current = ' class="current"'; |
||
| 148 | $views[ $key ] = sprintf( $format, $display_title, $count, $url, $current ); |
||
| 149 | } |
||
| 150 | return $views; |
||
| 151 | } |
||
| 152 | |||
| 153 | function views() { |
||
| 154 | $views = $this->get_views(); |
||
| 155 | |||
| 156 | echo "<ul class='subsubsub'>\n"; |
||
| 157 | foreach ( $views as $class => $view ) { |
||
| 158 | $views[ $class ] = "\t<li class='$class'>$view</li>"; |
||
| 159 | } |
||
| 160 | echo implode( "\n", $views ) . "\n"; |
||
| 161 | echo "</ul>"; |
||
| 162 | } |
||
| 163 | |||
| 164 | function filter_displayed_table_items( $modules ) { |
||
| 165 | return array_filter( $modules, array( $this, 'is_module_displayed' ) ); |
||
| 166 | } |
||
| 167 | |||
| 168 | static function is_module_available( $module ) { |
||
| 169 | if ( ! is_array( $module ) || empty( $module ) ) |
||
| 170 | return false; |
||
| 171 | |||
| 172 | if ( Jetpack::is_development_mode() ) { |
||
| 173 | return ! ( $module['requires_connection'] ); |
||
| 174 | } else { |
||
| 175 | return Jetpack::is_active(); |
||
| 176 | } |
||
| 177 | } |
||
| 178 | |||
| 179 | static function is_module_displayed( $module ) { |
||
| 180 | // Handle module tag based filtering. |
||
| 181 | if ( ! empty( $_REQUEST['module_tag'] ) ) { |
||
| 182 | $module_tag = sanitize_text_field( $_REQUEST['module_tag'] ); |
||
| 183 | if ( ! in_array( $module_tag, $module['module_tags'] ) ) |
||
| 184 | return false; |
||
| 185 | } |
||
| 186 | |||
| 187 | // If nothing rejected it, include it! |
||
| 188 | return true; |
||
| 189 | } |
||
| 190 | |||
| 191 | View Code Duplication | static function sort_requires_connection_last( $module1, $module2 ) { |
|
| 192 | if ( $module1['requires_connection'] == $module2['requires_connection'] ) |
||
| 193 | return 0; |
||
| 194 | if ( $module1['requires_connection'] ) |
||
| 195 | return 1; |
||
| 196 | if ( $module2['requires_connection'] ) |
||
| 197 | return -1; |
||
| 198 | |||
| 199 | return 0; |
||
| 200 | } |
||
| 201 | |||
| 202 | function get_columns() { |
||
| 203 | $columns = array( |
||
| 204 | 'cb' => '<input type="checkbox" />', |
||
| 205 | 'name' => __( 'Name', 'jetpack' ), |
||
| 206 | ); |
||
| 207 | return $columns; |
||
| 208 | } |
||
| 209 | |||
| 210 | function get_bulk_actions() { |
||
| 211 | $actions = array( |
||
| 212 | 'bulk-activate' => __( 'Activate', 'jetpack' ), |
||
| 213 | 'bulk-deactivate' => __( 'Deactivate', 'jetpack' ), |
||
| 214 | ); |
||
| 215 | return $actions; |
||
| 216 | } |
||
| 217 | |||
| 218 | function single_row( $item ) { |
||
| 219 | static $i = 0; |
||
| 220 | $row_class = ( ++$i % 2 ) ? ' alternate' : ''; |
||
| 221 | |||
| 222 | if ( ! empty( $item['activated'] ) ) |
||
| 223 | $row_class .= ' active'; |
||
| 224 | |||
| 225 | if ( ! $this->is_module_available( $item ) ) |
||
| 226 | $row_class .= ' unavailable'; |
||
| 227 | |||
| 228 | echo '<tr class="jetpack-module' . esc_attr( $row_class ) . '" id="' . esc_attr( $item['module'] ) . '">'; |
||
| 229 | $this->single_row_columns( $item ); |
||
| 230 | echo '</tr>'; |
||
| 231 | } |
||
| 232 | |||
| 233 | function get_table_classes() { |
||
| 234 | return array( 'table', 'table-bordered', 'wp-list-table', 'widefat', 'fixed', 'jetpack-modules' ); |
||
| 235 | } |
||
| 236 | |||
| 237 | function column_cb( $item ) { |
||
| 238 | if ( ! $this->is_module_available( $item ) ) |
||
| 239 | return ''; |
||
| 240 | |||
| 241 | return sprintf( '<input type="checkbox" name="modules[]" value="%s" />', $item['module'] ); |
||
| 242 | } |
||
| 243 | |||
| 244 | function column_icon( $item ) { |
||
| 245 | $badge_text = $free_text = ''; |
||
| 246 | ob_start(); |
||
| 247 | ?> |
||
| 248 | <a href="#TB_inline?width=600&height=550&inlineId=more-info-module-settings-modal" class="thickbox"> |
||
| 249 | <div class="module-image"> |
||
| 250 | <p><span class="module-image-badge"><?php echo $badge_text; ?></span><span class="module-image-free" style="display: none"><?php echo $free_text; ?></span></p> |
||
| 251 | </div> |
||
| 252 | </a> |
||
| 253 | <?php |
||
| 254 | return ob_get_clean(); |
||
| 255 | |||
| 256 | } |
||
| 257 | |||
| 258 | function column_name( $item ) { |
||
| 259 | $actions = array( |
||
| 260 | 'info' => sprintf( '<a href="%s" target="blank">%s</a>', esc_url( $item['learn_more_button'] ), esc_html__( 'Feature Info', 'jetpack' ) ), |
||
| 261 | ); |
||
| 262 | |||
| 263 | if ( ! empty( $item['configurable'] ) ) { |
||
| 264 | $actions['configure'] = $item['configurable']; |
||
| 265 | } |
||
| 266 | |||
| 267 | if ( empty( $item['activated'] ) && $this->is_module_available( $item ) ) { |
||
| 268 | $url = wp_nonce_url( |
||
| 269 | Jetpack::admin_url( array( |
||
| 270 | 'page' => 'jetpack', |
||
| 271 | 'action' => 'activate', |
||
| 272 | 'module' => $item['module'], |
||
| 273 | ) ), |
||
| 274 | 'jetpack_activate-' . $item['module'] |
||
| 275 | ); |
||
| 276 | $actions['activate'] = sprintf( '<a href="%s">%s</a>', esc_url( $url ), esc_html__( 'Activate', 'jetpack' ) ); |
||
| 277 | } elseif ( ! empty( $item['activated'] ) ) { |
||
| 278 | $url = wp_nonce_url( |
||
| 279 | Jetpack::admin_url( array( |
||
| 280 | 'page' => 'jetpack', |
||
| 281 | 'action' => 'deactivate', |
||
| 282 | 'module' => $item['module'], |
||
| 283 | ) ), |
||
| 284 | 'jetpack_deactivate-' . $item['module'] |
||
| 285 | ); |
||
| 286 | $actions['delete'] = sprintf( '<a href="%s">%s</a>', esc_url( $url ), esc_html__( 'Deactivate', 'jetpack' ) ); |
||
| 287 | } |
||
| 288 | |||
| 289 | return $this->row_actions( $actions ) . wptexturize( $item['name'] ); |
||
| 290 | } |
||
| 291 | |||
| 292 | function column_description( $item ) { |
||
| 293 | ob_start(); |
||
| 294 | /** This action is documented in class.jetpack-admin.php */ |
||
| 295 | echo apply_filters( 'jetpack_short_module_description', $item['description'], $item['module'] ); |
||
| 296 | /** This action is documented in class.jetpack-admin.php */ |
||
| 297 | do_action( 'jetpack_learn_more_button_' . $item['module'] ); |
||
| 298 | echo '<div id="more-info-' . $item['module'] . '" class="more-info">'; |
||
| 299 | /** This action is documented in class.jetpack-admin.php */ |
||
| 300 | do_action( 'jetpack_module_more_info_' . $item['module'] ); |
||
| 301 | echo '</div>'; |
||
| 302 | return ob_get_clean(); |
||
| 303 | } |
||
| 304 | |||
| 305 | function column_module_tags( $item ) { |
||
| 306 | $module_tags = array(); |
||
| 307 | foreach( $item['module_tags'] as $module_tag ) { |
||
| 308 | $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', urlencode( $module_tag ) ) ) ); |
||
| 309 | } |
||
| 310 | return implode( ', ', $module_tags ); |
||
| 311 | } |
||
| 312 | |||
| 313 | function column_default( $item, $column_name ) { |
||
| 314 | switch ( $column_name ) { |
||
| 315 | case 'icon': |
||
| 316 | case 'name': |
||
| 317 | case 'description': |
||
| 318 | break; |
||
| 319 | default: |
||
| 320 | return print_r( $item, true ); |
||
| 321 | } |
||
| 322 | } |
||
| 323 | |||
| 324 | //Check if the info parameter provided in the URL corresponds to an actual module |
||
| 325 | function module_info_check( $info = false, $modules ) { |
||
| 326 | if ( false == $info ) { |
||
|
0 ignored issues
–
show
|
|||
| 327 | return false; |
||
| 328 | } else if ( array_key_exists( $info, $modules ) ) { |
||
| 329 | return $info; |
||
| 330 | } |
||
| 331 | } |
||
| 332 | |||
| 333 | /** |
||
| 334 | * Core switched their `display_tablenav()` method to protected, so we can't access it directly. |
||
| 335 | * Instead, let's include an access function to make it doable without errors! |
||
| 336 | * |
||
| 337 | * @see https://github.com/WordPress/WordPress/commit/d28f6344de97616de8ece543ed290c4ba2383622 |
||
| 338 | * |
||
| 339 | * @param string $which |
||
| 340 | * |
||
| 341 | * @return mixed |
||
| 342 | */ |
||
| 343 | function unprotected_display_tablenav( $which = 'top' ) { |
||
| 344 | return $this->display_tablenav( $which ); |
||
| 345 | } |
||
| 346 | |||
| 347 | } |
||
| 348 |
When comparing two booleans, it is generally considered safer to use the strict comparison operator.