forked from Automattic/jetpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass.jetpack-admin.php
520 lines (443 loc) · 24.1 KB
/
class.jetpack-admin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
<?php
class Jetpack_Admin {
static $instance = null;
var $jetpack;
static function init() {
if ( is_null( self::$instance ) ) {
self::$instance = new Jetpack_Admin;
}
return self::$instance;
}
private function __construct() {
$this->jetpack = Jetpack::init();
add_action( 'admin_menu', array( $this, 'admin_menu' ), 998 );
add_action( 'jetpack_admin_menu', array( $this, 'admin_menu_debugger' ) );
add_action( 'jetpack_pre_activate_module', array( $this, 'fix_redirect' ) );
add_action( 'jetpack_pre_deactivate_module', array( $this, 'fix_redirect' ) );
add_action( 'jetpack_unrecognized_action', array( $this, 'handle_unrecognized_action' ) );
/**
* Don't add in the modules page unless modules are available!
*/
if ( Jetpack::is_active() || Jetpack::is_development_mode() ) {
add_action( 'jetpack_admin_menu', array( $this, 'admin_menu_modules' ) );
}
}
function get_modules() {
include_once( JETPACK__PLUGIN_DIR . 'modules/module-info.php' );
$available_modules = $this->jetpack->get_available_modules();
$active_modules = $this->jetpack->get_active_modules();
$modules = array();
foreach ( $available_modules as $module ) {
if ( $module_array = $this->jetpack->get_module( $module ) ) {
$short_desc = apply_filters( 'jetpack_short_module_description', $module_array['description'], $module );
$short_desc_trunc = ( strlen( $short_desc ) > 143 ) ? substr( $short_desc, 0, 140 ) . '...' : $short_desc;
$module_array['module'] = $module;
$module_array['activated'] = in_array( $module, $active_modules );
$module_array['deactivate_nonce'] = wp_create_nonce( 'jetpack_deactivate-' . $module );
$module_array['activate_nonce'] = wp_create_nonce( 'jetpack_activate-' . $module );
$module_array['available'] = self::is_module_available( $module_array );
$module_array['short_description'] = $short_desc_trunc;
$module_array['configure_url'] = Jetpack::module_configuration_url( $module );
ob_start();
do_action( 'jetpack_learn_more_button_' . $module );
$module_array['learn_more_button'] = ob_get_clean();
ob_start();
if ( Jetpack::is_active() && has_action( 'jetpack_module_more_info_connected_' . $module ) ) {
do_action( 'jetpack_module_more_info_connected_' . $module );
} else {
do_action( 'jetpack_module_more_info_' . $module );
}
$module_array['long_description'] = ob_get_clean();
$module_array['configurable'] = false;
if ( current_user_can( 'manage_options' ) && apply_filters( 'jetpack_module_configurable_' . $module, false ) ) {
$module_array['configurable'] = sprintf( '<a href="%1$s">%2$s</a>', esc_url( Jetpack::module_configuration_url( $module ) ), __( 'Configure', 'jetpack' ) );
}
$modules[ $module ] = $module_array;
}
}
uasort( $modules, array( $this->jetpack, 'sort_modules' ) );
if ( ! Jetpack::is_active() ) {
uasort( $modules, array( __CLASS__, 'sort_requires_connection_last' ) );
}
return $modules;
}
static function sort_requires_connection_last( $module1, $module2 ) {
if ( $module1['requires_connection'] == $module2['requires_connection'] )
return 0;
if ( $module1['requires_connection'] )
return 1;
if ( $module2['requires_connection'] )
return -1;
return 0;
}
static function is_module_available( $module ) {
if ( ! is_array( $module ) || empty( $module ) )
return false;
return ! ( $module['requires_connection'] && ! Jetpack::is_active() );
}
function handle_unrecognized_action( $action ) {
switch( $action ) {
case 'bulk-activate' :
if ( ! current_user_can( 'jetpack_activate_modules' ) ) {
break;
}
$modules = (array) $_GET['modules'];
$modules = array_map( 'sanitize_key', $modules );
check_admin_referer( 'bulk-jetpack_page_jetpack_modules' );
foreach( $modules as $module ) {
Jetpack::log( 'activate', $module );
Jetpack::activate_module( $module, false );
}
// The following two lines will rarely happen, as Jetpack::activate_module normally exits at the end.
wp_safe_redirect( wp_get_referer() );
exit;
case 'bulk-deactivate' :
if ( ! current_user_can( 'jetpack_deactivate_modules' ) ) {
break;
}
$modules = (array) $_GET['modules'];
$modules = array_map( 'sanitize_key', $modules );
check_admin_referer( 'bulk-jetpack_page_jetpack_modules' );
foreach ( $modules as $module ) {
Jetpack::log( 'deactivate', $module );
Jetpack::deactivate_module( $module );
Jetpack::state( 'message', 'module_deactivated' );
}
Jetpack::state( 'module', $modules );
wp_safe_redirect( wp_get_referer() );
exit;
default:
return;
}
}
function fix_redirect() {
if ( wp_get_referer() ) {
add_filter( 'wp_redirect', 'wp_get_referer' );
}
}
function admin_menu() {
// @todo: Remove in Jetpack class itself.
remove_action( 'admin_menu', array( $this->jetpack, 'admin_menu' ), 999 );
$title = _x( 'Jetpack', 'The menu item label', 'jetpack' );
list( $jetpack_version ) = explode( ':', Jetpack_Options::get_option( 'version' ) );
if (
$jetpack_version
&&
$jetpack_version != JETPACK__VERSION
&&
( $new_modules = Jetpack::get_default_modules( $jetpack_version, JETPACK__VERSION ) )
&&
is_array( $new_modules )
&&
( $new_modules_count = count( $new_modules ) )
&&
( Jetpack::is_active() || Jetpack::is_development_mode() )
) {
$new_count_i18n = number_format_i18n( $new_modules_count );
$span_title = esc_attr( sprintf( _n( 'One New Jetpack Module', '%s New Jetpack Modules', $new_modules_count, 'jetpack' ), $new_count_i18n ) );
$format = _x( 'Jetpack %s', 'The menu item label with a new module count as %s', 'jetpack' );
$update_markup = "<span class='update-plugins count-{$new_modules_count}' title='$span_title'><span class='update-count'>$new_count_i18n</span></span>";
$title = sprintf( $format, $update_markup );
}
$callback = empty( $_GET['configure'] ) ? array( $this, 'admin_page' ) : array( $this, 'admin_page_nojs_configurable' );
$hook = add_menu_page( 'Jetpack', $title, 'jetpack_admin_page', 'jetpack', $callback, 'div' );
add_action( "load-$hook", array( $this, 'admin_help' ) );
add_action( "load-$hook", array( $this, 'admin_page_load' ) );
add_action( "admin_head-$hook", array( $this, 'admin_head' ) );
add_action( "admin_footer-$hook", array( $this, 'main_page_js_templates' ) );
add_action( "admin_print_styles-$hook", array( $this, 'admin_styles' ) );
add_action( "admin_print_scripts-$hook", array( $this, 'admin_scripts' ) );
do_action( 'jetpack_admin_menu', $hook );
add_filter( 'custom_menu_order', array( $this, 'admin_menu_order' ) );
add_filter( 'menu_order', array( $this, 'jetpack_menu_order' ) );
}
function admin_menu_modules() {
$hook = add_submenu_page( 'jetpack', __( 'Jetpack Settings', 'jetpack' ), __( 'Settings', 'jetpack' ), 'jetpack_manage_modules', 'jetpack_modules', array( $this, 'admin_page_modules' ) );
add_action( "load-$hook", array( $this, 'admin_page_load' ) );
add_action( "admin_head-$hook", array( $this, 'admin_head' ) );
add_action( "admin_print_styles-$hook", array( $this, 'admin_styles' ) );
add_action( "admin_print_scripts-$hook", array( $this, 'admin_scripts' ) );
}
function admin_menu_debugger() {
$debugger_hook = add_submenu_page( null, __( 'Jetpack Debugging Center', 'jetpack' ), '', 'manage_options', 'jetpack-debugger', array( $this, 'debugger_page' ) );
add_action( "admin_head-$debugger_hook", array( 'Jetpack_Debugger', 'jetpack_debug_admin_head' ) );
}
function admin_help() {
$this->jetpack->admin_help();
}
function debugger_page() {
nocache_headers();
if ( ! current_user_can( 'manage_options' ) ) {
die( '-1' );
}
Jetpack_Debugger::jetpack_debug_display_handler();
}
function admin_page_load() {
// This is big. For the moment, just call the existing one.
$this->jetpack->admin_page_load();
}
function admin_head() {
if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) ) {
do_action( 'jetpack_module_configuration_head_' . $_GET['configure'] );
}
}
function admin_menu_order() {
return true;
}
function jetpack_menu_order( $menu_order ) {
$jp_menu_order = array();
foreach ( $menu_order as $index => $item ) {
if ( $item != 'jetpack' )
$jp_menu_order[] = $item;
if ( $index == 0 )
$jp_menu_order[] = 'jetpack';
}
return $jp_menu_order;
}
function admin_styles() {
$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
wp_enqueue_style( 'jetpack-google-fonts', '//fonts.googleapis.com/css?family=Open+Sans:400italic,400,700,600,800' );
wp_enqueue_style( 'jetpack-admin', plugins_url( "_inc/jetpack-admin{$min}.css", __FILE__ ), array( 'genericons' ), JETPACK__VERSION . '-20121016' );
}
function admin_scripts() {
// Let's only do this stuff for the main page.
if ( ! empty( $_GET['page'] ) && 'jetpack' == $_GET['page'] ) {
wp_enqueue_script( 'jetpack-icanhaz', plugins_url( '_inc/icanhaz.js', __FILE__ ), array( ), JETPACK__VERSION . '-20121111' );
wp_enqueue_script( 'jetpack-js', plugins_url( '_inc/jp.js', __FILE__ ), array( 'jquery' ), JETPACK__VERSION . '-20121111' );
wp_localize_script(
'jetpack-js',
'jetpackL10n',
array(
'ays_disconnect' => __( "This will deactivate all Jetpack modules.\nAre you sure you want to disconnect?", 'jetpack' ),
'ays_unlink' => __( "This will prevent user-specific modules such as Publicize, Notifications and Post By Email from working.\nAre you sure you want to unlink?", 'jetpack' ),
'ays_dismiss' => __( "This will deactivate Jetpack.\nAre you sure you want to deactivate Jetpack?", 'jetpack' ),
'view_all_features' => __( 'View all Jetpack features', 'jetpack' ),
'no_modules_found' => sprintf( __( 'Sorry, no modules were found for the search term "%s"', 'jetpack' ), '{term}' ),
'modules' => array_values( $this->get_modules() ),
'currentVersion' => JETPACK__VERSION,
)
);
} else {
wp_enqueue_script( 'jetpack-admin-js', plugins_url( '_inc/jetpack-admin.js', __FILE__ ), array( 'jquery' ), JETPACK__VERSION . '-20121111' );
}
add_action( 'admin_footer', array( $this->jetpack, 'do_stats' ) );
}
function admin_page_top() {
include_once( JETPACK__PLUGIN_DIR . '_inc/header.php' );
}
function admin_page_bottom() {
include_once( JETPACK__PLUGIN_DIR . '_inc/footer.php' );
}
function admin_page() {
global $current_user;
$is_connected = Jetpack::is_active();
$user_token = Jetpack_Data::get_access_token( $current_user->ID );
$is_user_connected = $user_token && ! is_wp_error( $user_token );
$is_master_user = $current_user->ID == Jetpack_Options::get_option( 'master_user' );
if ( Jetpack::is_development_mode() ) {
$is_connected = true;
$is_user_connected = true;
$is_master_user = false;
}
$this->admin_page_top(); ?>
<div class="masthead <?php if ( ! $is_connected ) echo 'hasbutton'; ?>">
<?php Jetpack::init()->load_view( 'admin/network-activated-notice.php' ); ?>
<?php do_action( 'jetpack_notices' ) ?>
<h1><?php esc_html_e( 'Supercharge your self-hosted site with a suite of the most powerful WordPress.com features.', 'jetpack' ); ?></h1>
<?php if ( ! $is_connected && current_user_can( 'jetpack_connect' ) ) : ?>
<a href="<?php echo $this->jetpack->build_connect_url() ?>" class="download-jetpack"><?php esc_html_e( 'Connect to Get Started', 'jetpack' ); ?></a>
<?php elseif ( ! $is_user_connected && current_user_can( 'jetpack_connect_user' ) ) : ?>
<a href="<?php echo $this->jetpack->build_connect_url() ?>" class="download-jetpack"><?php esc_html_e( 'Link your account to WordPress.com', 'jetpack' ); ?></a>
<?php endif; ?>
<div class="flyby">
<svg class="flyer" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="80px" height="87px" viewBox="0 0 80 87" enable-background="new 0 0 80 87" xml:space="preserve">
<polygon class="eye" fill="#518d2a" points="41.187,17.081 46.769,11.292 50.984,15.306"/>
<path class="body" fill="#518d2a" d="M38.032,47.3l4.973-5.157l7.597,1.996l0.878-0.91l0.761-0.789l-0.688-2.838l-0.972-0.926l-1.858,1.926 l-2.206-2.1l3.803-3.944l0.09-3.872L80,0L61.201,10.382L60.2,15.976l-5.674,1.145l-8.09-7.702L34.282,22.024l8.828-1.109 l2.068,2.929l-4.996,0.655l-3.467,3.595l0.166-4.469l-4.486,0.355L21.248,35.539l-0.441,4.206l-2.282,2.366l-2.04,6.961 L27.69,37.453l4.693,1.442l-2.223,2.306l-4.912,0.095l-7.39,22.292l-8.06,3.848l-2.408,9.811l-3.343-0.739L0,86.739l30.601-31.733 l8.867,2.507l-7.782,8.07l-1.496-0.616l-0.317-2.623l-7.197,7.463l11.445-2.604l16.413-7.999L38.032,47.3z M42.774,16.143 l3.774-3.914l2.85,2.713L42.774,16.143z"/>
</svg>
<svg class="flyer" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="80px" height="87px" viewBox="0 0 80 87" enable-background="new 0 0 80 87" xml:space="preserve">
<polygon class="eye" fill="#518d2a" points="41.187,17.081 46.769,11.292 50.984,15.306 "/>
<path class="body" fill="#518d2a" d="M38.032,47.3l4.973-5.157l7.597,1.996l0.878-0.91l0.761-0.789l-0.688-2.838l-0.972-0.926l-1.858,1.926 l-2.206-2.1l3.803-3.944l0.09-3.872L80,0L61.201,10.382L60.2,15.976l-5.674,1.145l-8.09-7.702L34.282,22.024l8.828-1.109 l2.068,2.929l-4.996,0.655l-3.467,3.595l0.166-4.469l-4.486,0.355L21.248,35.539l-0.441,4.206l-2.282,2.366l-2.04,6.961 L27.69,37.453l4.693,1.442l-2.223,2.306l-4.912,0.095l-7.39,22.292l-8.06,3.848l-2.408,9.811l-3.343-0.739L0,86.739l30.601-31.733 l8.867,2.507l-7.782,8.07l-1.496-0.616l-0.317-2.623l-7.197,7.463l11.445-2.604l16.413-7.999L38.032,47.3z M42.774,16.143 l3.774-3.914l2.85,2.713L42.774,16.143z"/>
</svg>
<svg class="flyer" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="80px" height="87px" viewBox="0 0 80 87" enable-background="new 0 0 80 87" xml:space="preserve">
<polygon class="eye" fill="#518d2a" points="41.187,17.081 46.769,11.292 50.984,15.306 "/>
<path class="body" fill="#518d2a" d="M38.032,47.3l4.973-5.157l7.597,1.996l0.878-0.91l0.761-0.789l-0.688-2.838l-0.972-0.926l-1.858,1.926 l-2.206-2.1l3.803-3.944l0.09-3.872L80,0L61.201,10.382L60.2,15.976l-5.674,1.145l-8.09-7.702L34.282,22.024l8.828-1.109 l2.068,2.929l-4.996,0.655l-3.467,3.595l0.166-4.469l-4.486,0.355L21.248,35.539l-0.441,4.206l-2.282,2.366l-2.04,6.961 L27.69,37.453l4.693,1.442l-2.223,2.306l-4.912,0.095l-7.39,22.292l-8.06,3.848l-2.408,9.811l-3.343-0.739L0,86.739l30.601-31.733 l8.867,2.507l-7.782,8.07l-1.496-0.616l-0.317-2.623l-7.197,7.463l11.445-2.604l16.413-7.999L38.032,47.3z M42.774,16.143 l3.774-3.914l2.85,2.713L42.774,16.143z"/>
</svg>
</div>
<div class="subhead">
<?php if ( Jetpack::is_development_mode() ) : ?>
<h2><?php _e('Jetpack is in local development mode.', 'jetpack' ); ?></h2>
<?php elseif ( $is_connected ) : ?>
<h2><?php _e("You're successfully connected to Jetpack!", 'jetpack' ); ?></h2>
<?php else : ?>
<h2><?php _e('Once you’ve connected Jetpack, you’ll get access to all the delightful features below.', 'jetpack' ); ?></h2>
<?php endif; ?>
</div>
</div><!-- .masthead -->
<div class="featured">
<h2><?php _e('Jetpack team favorites', 'jetpack' ); ?></h2>
<div class="features">
<div class="feature">
<a href="http://jetpack.me/support/custom-css/" data-name="Custom CSS" class="f-img"><div class="feature-img custom-css"></div></a>
<a href="http://jetpack.me/support/custom-css/" data-name="Custom CSS" class="feature-description">
<h3><?php _e('Custom CSS', 'jetpack' ); ?></h3>
<p><?php _e('Customize the look of your site, without modifying your theme.', 'jetpack' ); ?></p>
</a>
</div>
<div class="feature">
<a href="http://jetpack.me/support/sso/" data-name="Jetpack Single Sign On" class="f-img"><div class="feature-img wordpress-connect no-border"></div></a>
<a href="http://jetpack.me/support/sso/" data-name="Jetpack Single Sign On" class="feature-description">
<h3><?php _e('Single Sign On', 'jetpack' ); ?></h3>
<p><?php _e('Let users log in through WordPress.com with one click.', 'jetpack' ); ?></p>
</a>
</div>
<div class="feature">
<a href="http://jetpack.me/support/wordpress-com-stats/" data-name="WordPress.com Stats" class="f-img"><div class="feature-img wordpress-stats"></div></a>
<a href="http://jetpack.me/support/wordpress-com-stats/" data-name="WordPress.com Stats" class="feature-description">
<h3><?php _e('WordPress.com Stats', 'jetpack' ); ?></h3>
<p><?php _e('Simple, concise site stats with no additional load on your server.', 'jetpack' ); ?></p>
</a>
</div>
</div>
</div><!-- .featured -->
<div class="page-content about">
<div class="module-grid">
<h2><?php esc_html_e( 'Jetpack features', 'jetpack' ); ?></h2>
<!-- form with search and filters -->
<form id="module-search">
<input type="search" id="jetpack-search" class="module-search" placeholder="<?php esc_attr_e( 'Search the Jetpack features', 'jetpack' ); ?>" /><label for="jetpack-search"><?php esc_html_e( 'Search', 'jetpack' ); ?></label>
</form>
<div class="jp-filter" id="jp-filters">
<a href="#" id="newest" data-filter="introduced" class="selected"><?php esc_html_e( 'Newest', 'jetpack' ); ?></a>
<a href="#" id="category" data-filter="cat"><?php _e('Category', 'jetpack' ); ?></a>
<a href="#" id="alphabetical" data-filter="name"><?php esc_html_e( 'Alphabetical', 'jetpack' ); ?></a>
</div>
<div class="modules"></div>
<a href="#" class="load-more jp-button"><?php esc_html_e( 'Load more', 'jetpack' ); ?></a>
</div><!-- .module-grid --></div><!-- .page -->
<?php
$this->admin_page_bottom();
}
function admin_page_nojs_configurable() {
$this->admin_page_top();
if ( empty( $_GET['configure'] ) ) {
$this->admin_page_bottom();
return;
}
echo '<div class="clouds-sm"></div>';
echo '<div class="wrap configure-module">';
$module_name = preg_replace( '/[^\da-z\-]+/', '', $_GET['configure'] );
if ( Jetpack::is_module( $module_name ) && current_user_can( 'jetpack_configure_modules' ) ) {
Jetpack::admin_screen_configure_module( $module_name );
} else {
echo '<h2>' . esc_html__( 'Error, bad module.', 'jetpack' ) . '</h2>';
}
echo '</div><!-- /wrap -->';
$this->admin_page_bottom();
}
function admin_page_modules() {
include_once( 'class.jetpack-modules-list-table.php' );
$list_table = new Jetpack_Modules_List_Table;
$this->admin_page_top();
?>
<div class="clouds-sm"></div>
<?php do_action( 'jetpack_notices' ) ?>
<div class="page-content configure">
<div class="frame top hide-if-no-js">
<div class="wrap">
<div class="manage-left">
<table class="table table-bordered fixed-top">
<thead>
<tr>
<th class="check-column"><input type="checkbox" class="checkall"></th>
<th colspan="2">
<?php $list_table->display_tablenav( 'top' ); ?>
<span class="filter-search">
<button type="button" class="button">Filter</button>
</span>
</th>
</tr>
</thead>
</table>
</div>
</div><!-- /.wrap -->
</div><!-- /.frame -->
<div class="frame bottom">
<div class="wrap">
<div class="manage-right">
<div class="bumper">
<form class="navbar-form" role="search">
<input type="hidden" name="page" value="jetpack_modules" />
<?php $list_table->search_box( __( 'Search', 'jetpack' ), 'srch-term' ); ?>
<p><?php esc_html_e( 'View:', 'jetpack' ); ?></p>
<div class="button-group filter-active">
<button type="button" class="button <?php if ( empty( $_GET['activated'] ) ) echo 'active'; ?>"><?php esc_html_e( 'All', 'jetpack' ); ?></button>
<button type="button" class="button <?php if ( ! empty( $_GET['activated'] ) && 'true' == $_GET['activated'] ) echo 'active'; ?>" data-filter-by="activated" data-filter-value="true"><?php esc_html_e( 'Active', 'jetpack' ); ?></button>
<button type="button" class="button <?php if ( ! empty( $_GET['activated'] ) && 'false' == $_GET['activated'] ) echo 'active'; ?>" data-filter-by="activated" data-filter-value="false"><?php esc_html_e( 'Inactive', 'jetpack' ); ?></button>
</div>
<p><?php esc_html_e( 'Sort by:', 'jetpack' ); ?></p>
<div class="button-group sort">
<button type="button" class="button <?php if ( empty( $_GET['sort_by'] ) ) echo 'active'; ?>" data-sort-by="name"><?php esc_html_e( 'Alphabetical', 'jetpack' ); ?></button>
<button type="button" class="button <?php if ( ! empty( $_GET['sort_by'] ) && 'introduced' == $_GET['sort_by'] ) echo 'active'; ?>" data-sort-by="introduced" data-sort-order="reverse"><?php esc_html_e( 'Newest', 'jetpack' ); ?></button>
<button type="button" class="button <?php if ( ! empty( $_GET['sort_by'] ) && 'sort' == $_GET['sort_by'] ) echo 'active'; ?>" data-sort-by="sort"><?php esc_html_e( 'Popular', 'jetpack' ); ?></button>
</div>
<p><?php esc_html_e( 'Show:', 'jetpack' ); ?></p>
<?php $list_table->views(); ?>
</form>
</div>
</div>
<div class="manage-left">
<form class="jetpack-modules-list-table-form" onsubmit="return false;">
<table class="<?php echo implode( ' ', $list_table->get_table_classes() ); ?>">
<tbody id="the-list">
<?php $list_table->display_rows_or_placeholder(); ?>
</tbody>
</table>
</form>
</div>
</div><!-- /.wrap -->
</div><!-- /.frame -->
</div><!-- /.content -->
<?php
$this->admin_page_bottom();
}
function main_page_js_templates() {
?>
<script id="category" type="text/html">
<div class="cat category-appearance"><h3><?php _e( 'Appearance', 'jetpack' ); ?></h3><div class="clear"></div></div>
<div class="cat category-developers"><h3><?php _e( 'Developers', 'jetpack' ); ?></h3><div class="clear"></div></div>
<div class="cat category-mobile"><h3><?php _e( 'Mobile', 'jetpack' ); ?></h3><div class="clear"></div></div>
<div class="cat category-other"><h3><?php _e( 'Other', 'jetpack' ); ?></h3><div class="clear"></div></div>
<div class="cat category-photos-and-videos"><h3><?php _e( 'Photos and Videos', 'jetpack' ); ?></h3><div class="clear"></div></div>
<div class="cat category-social"><h3><?php _e( 'Social', 'jetpack' ); ?></h3><div class="clear"></div></div>
<div class="cat category-wordpresscom-stats"><h3><?php _e( 'WordPress.com Stats', 'jetpack' ); ?></h3><div class="clear"></div></div>
<div class="cat category-writing"><h3><?php _e( 'Writing', 'jetpack' ); ?></h3><div class="clear"></div></div>
</script>
<script id="modalLoading" type="text/html">
<div class="loading"><span><?php esc_html_e( 'loading…', 'jetpack' ); ?></span></div>
</script>
<script id="modalTemplate" type="text/html">
<header>
<a href="#" class="close">×</a>
<ul>
<li><a href="#" class="active"><?php esc_html_e( 'Learn More', 'jetpack' ); ?></a></li>
</ul>
</header>
<div class="content-container"><div class="content"></div></div>
</script>
<script id="mod" type="text/html">
<div href="{{ url }}" data-index="{{ index }}" data-name="{{ name }}" class="module{{#new}} new{{/new}}">
<h3 class="icon {{ module }}">{{ name }}{{^free}}<span class="paid"><?php esc_html_e( 'Paid', 'jetpack' ); ?></span>{{/free}}</h3>
<p>{{{ short_description }}}</p>
</div>
</script>
<script id="modconfig" type="text/html">
<tr class="configs {{#active}}active{{/active}}">
<td class="sm"><input type="checkbox"></td>
<td><a href="{{ url }}" data-name="{{ name }}">{{ name }}</a></td>
<td class="med"><a href="{{ url }}" data-name="{{ name }}"><span class="genericon genericon-help" title="<?php esc_attr_e( 'Learn more', 'jetpack' ); ?>"></span></a>{{#hasConfig}}<a href="{{ url }}" data-name="{{ name }}"><span class="genericon genericon-cog" title="<?php esc_attr_e( 'Configure', 'jetpack' ); ?>"></span></a>{{/hasConfig}}</td>
</tr>
</script>
<?php
}
}
Jetpack_Admin::init();