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