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