Completed
Push — add/eslint-excludelist ( f6084c...b5b14a )
by
unknown
42:21 queued 33:53
created

Admin_Menu::set_browse_sites_link_class()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 12

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 3
nc 3
nop 1
dl 0
loc 12
rs 9.8666
c 0
b 0
f 0
1
<?php
2
/**
3
 * Admin Menu file.
4
 *
5
 * @package Jetpack
6
 */
7
8
namespace Automattic\Jetpack\Dashboard_Customizations;
9
10
use Automattic\Jetpack\Connection\Manager as Connection_Manager;
11
use Automattic\Jetpack\Status;
12
13
/**
14
 * Class Admin_Menu.
15
 */
16
class Admin_Menu {
17
	/**
18
	 * Holds class instance.
19
	 *
20
	 * @var Admin_Menu
21
	 */
22
	private static $instance;
23
24
	/**
25
	 * Whether the current request is a REST API request.
26
	 *
27
	 * @var bool
28
	 */
29
	private $is_api_request;
30
31
	/**
32
	 * Admin_Menu constructor.
33
	 */
34
	private function __construct() {
35
		if ( jetpack_is_atomic_site() ) {
36
			add_action(
37
				'admin_menu',
38
				function () {
39
					remove_action( 'admin_menu', 'gutenberg_menu', 9 );
40
				},
41
				0
42
			);
43
		}
44
45
		add_action( 'admin_menu', array( $this, 'reregister_menu_items' ), 99999 );
46
		add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
47
		add_action( 'wp_enqueue_scripts', array( $this, 'dequeue_scripts' ), 20 );
48
		add_action( 'admin_enqueue_scripts', array( $this, 'dequeue_scripts' ), 20 );
49
	}
50
51
	/**
52
	 * Returns class instance.
53
	 *
54
	 * @return Admin_Menu
55
	 */
56
	public static function get_instance() {
57
		if ( null === static::$instance ) {
0 ignored issues
show
Bug introduced by
Since $instance is declared private, accessing it with static will lead to errors in possible sub-classes; consider using self, or increasing the visibility of $instance to at least protected.

Let’s assume you have a class which uses late-static binding:

class YourClass
{
    private static $someVariable;

    public static function getSomeVariable()
    {
        return static::$someVariable;
    }
}

The code above will run fine in your PHP runtime. However, if you now create a sub-class and call the getSomeVariable() on that sub-class, you will receive a runtime error:

class YourSubClass extends YourClass { }

YourSubClass::getSomeVariable(); // Will cause an access error.

In the case above, it makes sense to update SomeClass to use self instead:

class SomeClass
{
    private static $someVariable;

    public static function getSomeVariable()
    {
        return self::$someVariable; // self works fine with private.
    }
}
Loading history...
58
			static::$instance = new self();
0 ignored issues
show
Bug introduced by
Since $instance is declared private, accessing it with static will lead to errors in possible sub-classes; consider using self, or increasing the visibility of $instance to at least protected.

Let’s assume you have a class which uses late-static binding:

class YourClass
{
    private static $someVariable;

    public static function getSomeVariable()
    {
        return static::$someVariable;
    }
}

The code above will run fine in your PHP runtime. However, if you now create a sub-class and call the getSomeVariable() on that sub-class, you will receive a runtime error:

class YourSubClass extends YourClass { }

YourSubClass::getSomeVariable(); // Will cause an access error.

In the case above, it makes sense to update SomeClass to use self instead:

class SomeClass
{
    private static $someVariable;

    public static function getSomeVariable()
    {
        return self::$someVariable; // self works fine with private.
    }
}
Loading history...
59
		}
60
61
		return static::$instance;
0 ignored issues
show
Bug introduced by
Since $instance is declared private, accessing it with static will lead to errors in possible sub-classes; consider using self, or increasing the visibility of $instance to at least protected.

Let’s assume you have a class which uses late-static binding:

class YourClass
{
    private static $someVariable;

    public static function getSomeVariable()
    {
        return static::$someVariable;
    }
}

The code above will run fine in your PHP runtime. However, if you now create a sub-class and call the getSomeVariable() on that sub-class, you will receive a runtime error:

class YourSubClass extends YourClass { }

YourSubClass::getSomeVariable(); // Will cause an access error.

In the case above, it makes sense to update SomeClass to use self instead:

class SomeClass
{
    private static $someVariable;

    public static function getSomeVariable()
    {
        return self::$someVariable; // self works fine with private.
    }
}
Loading history...
62
	}
63
64
	/**
65
	 * Create the desired menu output.
66
	 */
67
	public function reregister_menu_items() {
68
		$this->is_api_request = ( defined( 'REST_API_PLUGINS' ) && REST_API_PLUGINS ) || ( defined( 'REST_REQUEST' ) && REST_REQUEST );
69
70
		$domain = ( new Status() )->get_site_suffix();
71
72
		// Not needed outside of wp-admin.
73
		if ( ! $this->is_api_request && ( $this->is_wpcom_site() || jetpack_is_atomic_site() ) ) {
74
			$this->add_browse_sites_link();
75
			$this->add_site_card_menu( $domain );
76
		}
77
78
		/**
79
		 * Whether links should point to Calypso or wp-admin.
80
		 *
81
		 * Options:
82
		 * true  - Calypso.
83
		 * false - wp-admin.
84
		 *
85
		 * @module masterbar
86
		 * @since 9.3.0
87
		 *
88
		 * @param bool $calypso Whether menu item URLs should point to Calypso.
89
		 */
90
		$calypso = apply_filters( 'jetpack_admin_menu_use_calypso_links', true );
91
92
		// Remove separators.
93
		remove_menu_page( 'separator1' );
94
95
		$this->add_my_home_menu( $domain, $calypso );
96
		$this->add_stats_menu( $domain );
97
		$this->add_upgrades_menu( $domain );
98
		$this->add_posts_menu( $domain, $calypso );
99
		$this->add_media_menu( $domain, $calypso );
100
		$this->add_page_menu( $domain, $calypso );
101
		$this->add_comments_menu( $domain, $calypso );
102
		$this->add_jetpack_menu( $domain );
103
		$this->add_appearance_menu( $domain, $calypso );
104
		$this->add_plugins_menu( $domain );
105
		$this->add_users_menu( $domain, $calypso );
106
		$this->add_tools_menu( $domain, $calypso );
107
		$this->add_options_menu( $domain );
108
109
		ksort( $GLOBALS['menu'] );
110
	}
111
112
	/**
113
	 * Adds the site switcher link if user has more than one site.
114
	 */
115
	public function add_browse_sites_link() {
116
		if ( jetpack_is_atomic_site() ) {
117
			$wpcom_user_data = ( new Connection_Manager() )->get_connected_user_data();
118
119
			if ( $wpcom_user_data['site_count'] < 2 ) {
120
				return;
121
			}
122
		} elseif ( ! is_multisite() || count( get_blogs_of_user( get_current_user_id() ) ) < 2 ) {
123
			return;
124
		}
125
126
		// Add the menu item.
127
		add_menu_page( 'site-switcher', __( 'Browse sites', 'jetpack' ), 'read', 'https://wordpress.com/home', null, 'dashicons-arrow-left-alt2', 0 );
128
		add_filter( 'add_menu_classes', array( $this, 'set_browse_sites_link_class' ) );
129
	}
130
131
	/**
132
	 * Adds a custom element class for Site Switcher menu item.
133
	 *
134
	 * @param array $menu Associative array of administration menu items.
135
	 * @return array
136
	 */
137
	public function set_browse_sites_link_class( array $menu ) {
138
		foreach ( $menu as $key => $menu_item ) {
139
			if ( 'site-switcher' !== $menu_item[3] ) {
140
				continue;
141
			}
142
143
			$menu[ $key ][4] = add_cssclass( 'site-switcher', $menu_item[4] );
144
			break;
145
		}
146
147
		return $menu;
148
	}
149
150
	/**
151
	 * Adds site card component.
152
	 *
153
	 * @param string $domain Site domain.
154
	 */
155
	public function add_site_card_menu( $domain ) {
156
		$default = 'data:image/svg+xml,' . rawurlencode( '<svg class="gridicon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>Globe</title><rect fill-opacity="0" x="0" width="24" height="24"/><g><path fill="#fff" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2zm0 18l2-2 1-1v-2h-2v-1l-1-1H9v3l2 2v1.93c-3.94-.494-7-3.858-7-7.93l1 1h2v-2h2l3-3V6h-2L9 5v-.41C9.927 4.21 10.94 4 12 4s2.073.212 3 .59V6l-1 1v2l1 1 3.13-3.13c.752.897 1.304 1.964 1.606 3.13H18l-2 2v2l1 1h2l.286.286C18.03 18.06 15.24 20 12 20z"/></g></svg>' );
157
		$icon    = get_site_icon_url( 32, $default );
158
159
		if ( $default === $icon && function_exists( 'blavatar_exists' ) && blavatar_exists( $domain ) && function_exists( 'blavatar_url' ) ) {
160
			$icon = blavatar_url( $domain, 'img', 32 );
161
		}
162
163
		$badge = '';
164
		if ( $this->is_wpcom_site() ) {
165 View Code Duplication
			if ( function_exists( 'is_private_blog' ) && function_exists( 'wpcom_is_coming_soon' ) && is_private_blog() ) {
166
				$badge .= sprintf(
167
					'<span class="site__badge site__badge-private">%s</span>',
168
					wpcom_is_coming_soon() ? esc_html__( 'Coming Soon', 'jetpack' ) : esc_html__( 'Private', 'jetpack' )
169
				);
170
			}
171
172
			if ( function_exists( 'is_redirected_domain' ) && is_redirected_domain( $domain ) ) {
173
				$badge .= '<span class="site__badge site__badge-redirect">' . esc_html__( 'Redirect', 'jetpack' ) . '</span>';
174
			}
175
176
			if ( ! empty( get_option( 'options' )['is_domain_only'] ) ) {
177
				$badge .= '<span class="site__badge site__badge-domain-only">' . esc_html__( 'Domain', 'jetpack' ) . '</span>';
178
			}
179
		}
180
181
		if ( jetpack_is_atomic_site() ) {
182 View Code Duplication
			if ( function_exists( 'site_is_private' ) && function_exists( 'site_is_coming_soon' ) && site_is_private() ) {
183
				$badge .= sprintf(
184
					'<span class="site__badge site__badge-private">%s</span>',
185
					site_is_coming_soon() ? esc_html__( 'Coming Soon', 'jetpack' ) : esc_html__( 'Private', 'jetpack' )
186
				);
187
			}
188
		}
189
190
		$site_card = '
191
<div class="site__info">
192
	<div class="site__title">%1$s</div>
193
	<div class="site__domain">%2$s</div>
194
	%3$s
195
</div>';
196
197
		$site_card = sprintf(
198
			$site_card,
199
			get_option( 'blogname' ),
200
			$domain,
201
			$badge
202
		);
203
204
		add_menu_page( 'site-card', $site_card, 'read', get_home_url(), null, $icon, 1 );
205
		add_filter( 'add_menu_classes', array( $this, 'set_site_card_menu_class' ) );
206
	}
207
208
	/**
209
	 * Adds a custom element class and id for Site Card's menu item.
210
	 *
211
	 * @param array $menu Associative array of administration menu items.
212
	 * @return array
213
	 */
214
	public function set_site_card_menu_class( array $menu ) {
215
		foreach ( $menu as $key => $menu_item ) {
216
			if ( 'site-card' !== $menu_item[3] ) {
217
				continue;
218
			}
219
220
			$classes = ' toplevel_page_site-card';
221
222
			// webclip.png is the default on WoA sites. Anything other than that means we have a custom site icon.
223
			if (
224
				( function_exists( 'blavatar_exists' ) && blavatar_exists( ( new Status() )->get_site_suffix() ) ) ||
225
				( has_site_icon() && 'https://s0.wp.com/i/webclip.png' !== get_site_icon_url( 512 ) )
226
			) {
227
				$classes .= ' has-site-icon';
228
			}
229
230
			$menu[ $key ][4] = $menu_item[4] . $classes;
231
			$menu[ $key ][5] = 'toplevel_page_site_card';
232
			break;
233
		}
234
235
		return $menu;
236
	}
237
238
	/**
239
	 * Adds My Home menu.
240
	 *
241
	 * @param string $domain  Site domain.
242
	 * @param bool   $calypso Optional. Whether links should point to Calypso or wp-admin. Default true (Calypso).
243
	 */
244
	public function add_my_home_menu( $domain, $calypso = true ) {
245
		global $submenu;
246
247
		$menu_slug = $calypso ? 'https://wordpress.com/home/' . $domain : 'index.php';
248
249
		remove_menu_page( 'index.php' );
250
		remove_submenu_page( 'index.php', 'index.php' );
251
252
		add_menu_page( __( 'My Home', 'jetpack' ), __( 'My Home', 'jetpack' ), 'read', $menu_slug, null, 'dashicons-admin-home', 2 );
253
254
		// Only add submenu when there are other submenu items.
255
		if ( ! empty( $submenu['index.php'] ) ) {
256
			add_submenu_page( $menu_slug, __( 'My Home', 'jetpack' ), __( 'My Home', 'jetpack' ), 'read', $menu_slug, null, 1 );
257
		}
258
259
		$this->migrate_submenus( 'index.php', $menu_slug );
260
	}
261
262
	/**
263
	 * Adds Stats menu.
264
	 *
265
	 * @param string $domain Site domain.
266
	 */
267
	public function add_stats_menu( $domain ) {
268
		$menu_title = __( 'Stats', 'jetpack' );
269
270
		if ( $this->is_wpcom_site() && ! $this->is_api_request ) {
271
			$menu_title .= sprintf(
272
				'<img class="sidebar-unified__sparkline" width="80" height="20" src="%1$s" alt="%2$s">',
273
				esc_url( home_url( 'wp-includes/charts/admin-bar-hours-scale-2x.php?masterbar=1&s=' . get_current_blog_id() ) ),
274
				esc_attr__( 'Hourly views', 'jetpack' )
275
			);
276
		}
277
278
		add_menu_page( __( 'Stats', 'jetpack' ), $menu_title, 'edit_posts', 'https://wordpress.com/stats/day/' . $domain, null, 'dashicons-chart-bar', 3 );
279
	}
280
281
	/**
282
	 * Adds Upgrades menu.
283
	 *
284
	 * @param string $domain Site domain.
285
	 */
286
	public function add_upgrades_menu( $domain ) {
287
		remove_menu_page( 'paid-upgrades.php' );
288
289
		$menu_slug = 'https://wordpress.com/plans/' . $domain;
290
291
		add_menu_page( __( 'Upgrades', 'jetpack' ), __( 'Upgrades', 'jetpack' ), 'manage_options', $menu_slug, null, 'dashicons-cart', 4 );
292
		add_submenu_page( $menu_slug, __( 'Plans', 'jetpack' ), __( 'Plans', 'jetpack' ), 'manage_options', $menu_slug, null, 1 );
293
294
		if ( $this->is_wpcom_site() || jetpack_is_atomic_site() ) {
295
			add_submenu_page( $menu_slug, __( 'Domains', 'jetpack' ), __( 'Domains', 'jetpack' ), 'manage_options', 'https://wordpress.com/domains/manage/' . $domain, null, 2 );
296
		}
297
298
		add_submenu_page( $menu_slug, __( 'Purchases', 'jetpack' ), __( 'Purchases', 'jetpack' ), 'manage_options', 'https://wordpress.com/purchases/subscriptions/' . $domain, null, 3 );
299
300
		$this->migrate_submenus( 'paid-upgrades.php', 'https://wordpress.com/plans/' . $domain );
301
	}
302
303
	/**
304
	 * Adds Posts menu.
305
	 *
306
	 * @param string $domain  Site domain.
307
	 * @param bool   $calypso Optional. Whether links should point to Calypso or wp-admin. Default true (Calypso).
308
	 */
309 View Code Duplication
	public function add_posts_menu( $domain, $calypso = true ) {
310
		if ( ! $calypso ) {
311
			return;
312
		}
313
314
		$ptype_obj = get_post_type_object( 'post' );
315
		$menu_slug = 'https://wordpress.com/posts/' . $domain;
316
317
		remove_menu_page( 'edit.php' );
318
		remove_submenu_page( 'edit.php', 'edit.php' );
319
		remove_submenu_page( 'edit.php', 'post-new.php' );
320
321
		add_menu_page( esc_attr( $ptype_obj->labels->menu_name ), $ptype_obj->labels->menu_name, $ptype_obj->cap->edit_posts, $menu_slug, null, 'dashicons-admin-post', $ptype_obj->menu_position );
322
		add_submenu_page( $menu_slug, $ptype_obj->labels->all_items, $ptype_obj->labels->all_items, $ptype_obj->cap->edit_posts, $menu_slug, null, 5 );
323
		add_submenu_page( $menu_slug, $ptype_obj->labels->add_new, $ptype_obj->labels->add_new, $ptype_obj->cap->create_posts, 'https://wordpress.com/post/' . $domain, null, 10 );
324
325
		$this->migrate_submenus( 'edit.php', $menu_slug );
326
	}
327
328
	/**
329
	 * Adds Media menu.
330
	 *
331
	 * @param string $domain  Site domain.
332
	 * @param bool   $calypso Optional. Whether links should point to Calypso or wp-admin. Default true (Calypso).
333
	 */
334
	public function add_media_menu( $domain, $calypso = true ) {
335
		remove_submenu_page( 'upload.php', 'upload.php' );
336
		remove_submenu_page( 'upload.php', 'media-new.php' );
337
338
		if ( $calypso ) {
339
			$menu_slug = 'https://wordpress.com/media/' . $domain;
340
341
			remove_menu_page( 'upload.php' );
342
			add_menu_page( __( 'Media', 'jetpack' ), __( 'Media', 'jetpack' ), 'upload_files', $menu_slug, null, 'dashicons-admin-media', 10 );
343
			$this->migrate_submenus( 'upload.php', $menu_slug );
344
		}
345
	}
346
347
	/**
348
	 * Adds Page menu.
349
	 *
350
	 * @param string $domain  Site domain.
351
	 * @param bool   $calypso Optional. Whether links should point to Calypso or wp-admin. Default true (Calypso).
352
	 */
353 View Code Duplication
	public function add_page_menu( $domain, $calypso = true ) {
354
		if ( ! $calypso ) {
355
			return;
356
		}
357
358
		$ptype_obj = get_post_type_object( 'page' );
359
		$menu_slug = 'https://wordpress.com/pages/' . $domain;
360
361
		remove_menu_page( 'edit.php?post_type=page' );
362
		remove_submenu_page( 'edit.php?post_type=page', 'edit.php?post_type=page' );
363
		remove_submenu_page( 'edit.php?post_type=page', 'post-new.php?post_type=page' );
364
365
		add_menu_page( esc_attr( $ptype_obj->labels->menu_name ), $ptype_obj->labels->menu_name, $ptype_obj->cap->edit_posts, $menu_slug, null, 'dashicons-admin-page', $ptype_obj->menu_position );
366
		add_submenu_page( $menu_slug, $ptype_obj->labels->all_items, $ptype_obj->labels->all_items, $ptype_obj->cap->edit_posts, $menu_slug, null, 5 );
367
		add_submenu_page( $menu_slug, $ptype_obj->labels->add_new, $ptype_obj->labels->add_new, $ptype_obj->cap->create_posts, 'https://wordpress.com/page/' . $domain, null, 10 );
368
		$this->migrate_submenus( 'edit.php?post_type=page', $menu_slug );
369
	}
370
371
	/**
372
	 * Adds Comments menu.
373
	 *
374
	 * @param string $domain  Site domain.
375
	 * @param bool   $calypso Optional. Whether links should point to Calypso or wp-admin. Default true (Calypso).
376
	 */
377
	public function add_comments_menu( $domain, $calypso = true ) {
378
		if ( ! $calypso || ! current_user_can( 'edit_posts' ) ) {
379
			return;
380
		}
381
382
		$awaiting_mod      = wp_count_comments();
383
		$awaiting_mod      = $awaiting_mod->moderated;
384
		$awaiting_mod_i18n = number_format_i18n( $awaiting_mod );
385
		/* translators: %s: Number of comments. */
386
		$awaiting_mod_text = sprintf( _n( '%s Comment in moderation', '%s Comments in moderation', $awaiting_mod, 'jetpack' ), $awaiting_mod_i18n );
387
388
		/* translators: %s: Number of comments. */
389
		$menu_title = sprintf( __( 'Comments %s', 'jetpack' ), '<span class="awaiting-mod count-' . absint( $awaiting_mod ) . '"><span class="pending-count" aria-hidden="true">' . $awaiting_mod_i18n . '</span><span class="comments-in-moderation-text screen-reader-text">' . $awaiting_mod_text . '</span></span>' );
390
		$menu_slug  = 'https://wordpress.com/comments/all/' . $domain;
391
392
		remove_menu_page( 'edit-comments.php' );
393
		remove_submenu_page( 'edit-comments.php', 'edit-comments.php' );
394
395
		add_menu_page( esc_attr__( 'Comments', 'jetpack' ), $menu_title, 'edit_posts', $menu_slug, null, 'dashicons-admin-comments', 25 );
396
		$this->migrate_submenus( 'edit-comments.php', $menu_slug );
397
	}
398
399
	/**
400
	 * Adds Jetpack menu.
401
	 *
402
	 * @param string $domain Site domain.
403
	 */
404
	public function add_jetpack_menu( $domain ) {
405
		if ( ! $this->is_wpcom_site() && ! jetpack_is_atomic_site() ) {
406
			return;
407
		}
408
409
		global $menu;
410
411
		$position = 50;
412
		while ( isset( $menu[ $position ] ) ) {
413
			$position++;
414
		}
415
416
		// TODO: Replace with proper SVG data url.
417
		$jetpack_icon = "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 32 32' %3E%3Cpath fill='%23a0a5aa' d='M16,0C7.2,0,0,7.2,0,16s7.2,16,16,16s16-7.2,16-16S24.8,0,16,0z'%3E%3C/path%3E%3Cpolygon fill='%23fff' points='15,19 7,19 15,3 '%3E%3C/polygon%3E%3Cpolygon fill='%23fff' points='17,29 17,13 25,13 '%3E%3C/polygon%3E%3C/svg%3E";
418
		$jetpack_slug = 'https://wordpress.com/activity-log/' . $domain;
419
420
		$this->add_admin_menu_separator( $position++, 'manage_options' );
421
		add_menu_page( esc_attr__( 'Jetpack', 'jetpack' ), __( 'Jetpack', 'jetpack' ), 'manage_options', $jetpack_slug, null, $jetpack_icon, $position );
422
423
		// Maintain id for jQuery selector.
424
		$menu[ $position ][5] = 'toplevel_page_jetpack'; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
425
426
		remove_menu_page( 'jetpack' );
427
		$this->migrate_submenus( 'jetpack', $jetpack_slug );
428
429
		add_submenu_page( $jetpack_slug, esc_attr__( 'Activity Log', 'jetpack' ), __( 'Activity Log', 'jetpack' ), 'manage_options', 'https://wordpress.com/activity-log/' . $domain, null, 5 );
430
431
		add_filter( 'parent_file', array( $this, 'jetpack_parent_file' ) );
432
	}
433
434
	/**
435
	 * Filters the parent file of an admin menu sub-menu item.
436
	 *
437
	 * @param string $parent_file The parent file.
438
	 * @return string Updated parent file.
439
	 */
440
	public function jetpack_parent_file( $parent_file ) {
441
		if ( 'jetpack' === $parent_file ) {
442
			$parent_file = 'https://wordpress.com/activity-log/' . ( new Status() )->get_site_suffix();
443
		}
444
445
		return $parent_file;
446
	}
447
448
	/**
449
	 * Adds Appearance menu.
450
	 *
451
	 * @param string $domain  Site domain.
452
	 * @param bool   $calypso Optional. Whether links should point to Calypso or wp-admin. Default true (Calypso).
453
	 */
454
	public function add_appearance_menu( $domain, $calypso = true ) {
455
		$user_can_customize = current_user_can( 'customize' );
456
		$appearance_cap     = $user_can_customize ? 'customize' : 'edit_theme_options';
457
		$customize_slug     = $calypso ? 'https://wordpress.com/customize/' . $domain : 'customize.php';
458
		$themes_slug        = $calypso ? 'https://wordpress.com/themes/' . $domain : 'themes.php';
459
		$appearance_slug    = $user_can_customize ? $customize_slug : $themes_slug;
460
		$customize_url      = add_query_arg( 'return', urlencode( remove_query_arg( wp_removable_query_args(), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ), 'customize.php' ); // phpcs:ignore
461
462
		remove_menu_page( 'themes.php' );
463
		remove_submenu_page( 'themes.php', 'themes.php' );
464
		remove_submenu_page( 'themes.php', 'theme-editor.php' );
465
		remove_submenu_page( 'themes.php', $customize_url );
466
467
		add_menu_page( esc_attr__( 'Appearance', 'jetpack' ), __( 'Appearance', 'jetpack' ), $appearance_cap, $appearance_slug, null, 'dashicons-admin-appearance', 60 );
468
		add_submenu_page( $appearance_slug, esc_attr__( 'Customize', 'jetpack' ), __( 'Customize', 'jetpack' ), 'customize', $customize_slug, null, 5 );
469
		add_submenu_page( $appearance_slug, esc_attr__( 'Themes', 'jetpack' ), __( 'Themes', 'jetpack' ), 'switch_themes', $themes_slug, null, 10 );
470
471 View Code Duplication
		if ( current_theme_supports( 'custom-header' ) && $user_can_customize ) {
472
			$customize_header_url = add_query_arg( array( 'autofocus' => array( 'control' => 'header_image' ) ), $customize_url );
473
			remove_submenu_page( 'themes.php', $customize_header_url );
474
475
			$customize_header_url = add_query_arg( array( 'autofocus' => array( 'control' => 'header_image' ) ), $appearance_slug );
476
			add_submenu_page( $appearance_slug, __( 'Header', 'jetpack' ), __( 'Header', 'jetpack' ), $appearance_cap, esc_url( $customize_header_url ), null, 15 );
477
		}
478
479 View Code Duplication
		if ( current_theme_supports( 'custom-background' ) && $user_can_customize ) {
480
			$customize_background_url = add_query_arg( array( 'autofocus' => array( 'control' => 'background_image' ) ), $customize_url );
481
			remove_submenu_page( 'themes.php', $customize_background_url );
482
483
			$customize_background_url = add_query_arg( array( 'autofocus' => array( 'control' => 'background_image' ) ), $appearance_slug );
484
			add_submenu_page( $appearance_slug, esc_attr__( 'Background', 'jetpack' ), __( 'Background', 'jetpack' ), $appearance_cap, esc_url( $customize_background_url ), null, 20 );
485
		}
486
487 View Code Duplication
		if ( current_theme_supports( 'widgets' ) ) {
488
			remove_submenu_page( 'themes.php', 'widgets.php' );
489
490
			$customize_menu_url = add_query_arg( array( 'autofocus' => array( 'panel' => 'widgets' ) ), $appearance_slug );
491
			add_submenu_page( $appearance_slug, esc_attr__( 'Widgets', 'jetpack' ), __( 'Widgets', 'jetpack' ), $appearance_cap, esc_url( $customize_menu_url ), null, 20 );
492
		}
493
494 View Code Duplication
		if ( current_theme_supports( 'menus' ) || current_theme_supports( 'widgets' ) ) {
495
			remove_submenu_page( 'themes.php', 'nav-menus.php' );
496
497
			$customize_menu_url = add_query_arg( array( 'autofocus' => array( 'panel' => 'nav_menus' ) ), $appearance_slug );
498
			add_submenu_page( $appearance_slug, esc_attr__( 'Menus', 'jetpack' ), __( 'Menus', 'jetpack' ), $appearance_cap, esc_url( $customize_menu_url ), null, 20 );
499
		}
500
501
		$this->migrate_submenus( 'themes.php', $appearance_slug );
502
	}
503
504
	/**
505
	 * Adds Plugins menu.
506
	 *
507
	 * @param string $domain  Site domain.
508
	 */
509
	public function add_plugins_menu( $domain ) {
510
		remove_submenu_page( 'plugins.php', 'plugin-editor.php' );
511
512
		if ( $this->is_wpcom_site() ) {
513
			remove_menu_page( 'plugins.php' );
514
515
			if ( $this->is_api_request ) {
516
				remove_submenu_page( 'plugins.php', 'plugins.php' );
517
			}
518
519
			$count = '';
520
			if ( ! is_multisite() && current_user_can( 'update_plugins' ) ) {
521
				$update_data = wp_get_update_data();
522
				$count       = sprintf(
523
					'<span class="update-plugins count-%s"><span class="plugin-count">%s</span></span>',
524
					$update_data['counts']['plugins'],
525
					number_format_i18n( $update_data['counts']['plugins'] )
526
				);
527
			}
528
529
			/* translators: %s: Number of pending plugin updates. */
530
			add_menu_page( esc_attr__( 'Plugins', 'jetpack' ), sprintf( __( 'Plugins %s', 'jetpack' ), $count ), 'activate_plugins', 'https://wordpress.com/plugins/' . $domain, null, 'dashicons-admin-plugins', 65 );
531
			$this->migrate_submenus( 'plugins.php', 'https://wordpress.com/plugins/' . $domain );
532
		}
533
	}
534
535
	/**
536
	 * Adds Users menu.
537
	 *
538
	 * @param string $domain  Site domain.
539
	 * @param bool   $calypso Optional. Whether links should point to Calypso or wp-admin. Default true (Calypso).
540
	 */
541
	public function add_users_menu( $domain, $calypso = true ) {
542
		$users_slug   = $calypso ? 'https://wordpress.com/people/team/' . $domain : 'users.php';
543
		$add_new_slug = 'https://wordpress.com/people/new/' . $domain;
544
		$profile_slug = $this->is_wpcom_site() ? 'grofiles-editor' : 'profile.php';
545
		$profile_slug = $calypso ? 'https://wordpress.com/me' : $profile_slug;
546
		$account_slug = $this->is_wpcom_site() && ! $calypso ? 'grofiles-user-settings' : 'https://wordpress.com/me/account';
547
548
		if ( current_user_can( 'list_users' ) ) {
549
			remove_menu_page( 'users.php' );
550
			remove_submenu_page( 'users.php', 'users.php' );
551
			remove_submenu_page( 'users.php', 'user-new.php' );
552
			remove_submenu_page( 'users.php', 'profile.php' );
553
			remove_submenu_page( 'users.php', 'grofiles-editor' );
554
			remove_submenu_page( 'users.php', 'grofiles-user-settings' );
555
556
			add_menu_page( esc_attr__( 'Users', 'jetpack' ), __( 'Users', 'jetpack' ), 'list_users', $users_slug, null, 'dashicons-admin-users', 70 );
557
			add_submenu_page( $users_slug, esc_attr__( 'All People', 'jetpack' ), __( 'All People', 'jetpack' ), 'list_users', $users_slug, null, 5 );
558
			add_submenu_page( $users_slug, esc_attr__( 'Add New', 'jetpack' ), __( 'Add New', 'jetpack' ), 'promote_users', $add_new_slug, null, 10 );
559
			add_submenu_page( $users_slug, esc_attr__( 'My Profile', 'jetpack' ), __( 'My Profile', 'jetpack' ), 'read', $profile_slug, null, 15 );
560
			add_submenu_page( $users_slug, esc_attr__( 'Account Settings', 'jetpack' ), __( 'Account Settings', 'jetpack' ), 'read', $account_slug, null, 20 );
561
			$this->migrate_submenus( 'users.php', $users_slug );
562
		} elseif ( $calypso && $this->is_wpcom_site() ) {
563
			remove_menu_page( 'profile.php' );
564
			remove_submenu_page( 'profile.php', 'grofiles-editor' );
565
			remove_submenu_page( 'profile.php', 'grofiles-user-settings' );
566
567
			add_menu_page( esc_attr__( 'My Profile', 'jetpack' ), __( 'My Profile', 'jetpack' ), 'read', $profile_slug, null, 'dashicons-admin-users', 70 );
568
			add_submenu_page( $profile_slug, esc_attr__( 'Account Settings', 'jetpack' ), __( 'Account Settings', 'jetpack' ), 'read', $account_slug, null, 5 );
569
			$this->migrate_submenus( 'profile.php', $profile_slug );
570
		}
571
	}
572
573
	/**
574
	 * Adds Tools menu.
575
	 *
576
	 * @param string $domain  Site domain.
577
	 * @param bool   $calypso Optional. Whether links should point to Calypso or wp-admin. Default true (Calypso).
578
	 */
579
	public function add_tools_menu( $domain, $calypso = true ) {
580
		$admin_slug = 'tools.php';
581
		$menu_slug  = $calypso ? 'https://wordpress.com/marketing/tools/' . $domain : $admin_slug;
582
583
		if ( $this->is_wpcom_site() || jetpack_is_atomic_site() ) {
584
			add_submenu_page( $menu_slug, esc_attr__( 'Marketing', 'jetpack' ), __( 'Marketing', 'jetpack' ), 'manage_options', 'https://wordpress.com/marketing/tools/' . $domain, null, 5 );
585
			add_submenu_page( $menu_slug, esc_attr__( 'Earn', 'jetpack' ), __( 'Earn', 'jetpack' ), 'manage_options', 'https://wordpress.com/earn/' . $domain, null, 10 );
586
		}
587
588
		if ( $calypso ) {
589
			remove_menu_page( $admin_slug );
590
			remove_submenu_page( $admin_slug, $admin_slug );
591
			remove_submenu_page( $admin_slug, 'import.php' );
592
			remove_submenu_page( $admin_slug, 'export.php' );
593
			remove_submenu_page( $admin_slug, 'delete-blog' );
594
595
			add_menu_page( esc_attr__( 'Tools', 'jetpack' ), __( 'Tools', 'jetpack' ), 'manage_options', $menu_slug, null, 'dashicons-admin-tools', 75 );
596
			add_submenu_page( $menu_slug, esc_attr__( 'Import', 'jetpack' ), __( 'Import', 'jetpack' ), 'import', 'https://wordpress.com/import/' . $domain, null, 15 );
597
			add_submenu_page( $menu_slug, esc_attr__( 'Export', 'jetpack' ), __( 'Export', 'jetpack' ), 'export', 'https://wordpress.com/export/' . $domain, null, 20 );
598
599
			$this->migrate_submenus( $admin_slug, $menu_slug );
600
		}
601
	}
602
603
	/**
604
	 * Adds Settings menu.
605
	 *
606
	 * @param string $domain Site domain.
607
	 * @param bool   $calypso Optional. Whether links should point to Calypso or wp-admin. Default true (Calypso).
608
	 */
609
	public function add_options_menu( $domain, $calypso = true ) {
610
		if ( $calypso ) {
611
			remove_submenu_page( 'options-general.php', 'options-discussion.php' );
612
			remove_submenu_page( 'options-general.php', 'options-writing.php' );
613
		}
614
615
		if ( $this->is_wpcom_site() || jetpack_is_atomic_site() ) {
616
			add_options_page( esc_attr__( 'Hosting Configuration', 'jetpack' ), __( 'Hosting Configuration', 'jetpack' ), 'manage_options', 'https://wordpress.com/hosting-config/' . $domain, null, 6 );
617
		}
618
	}
619
620
	/**
621
	 * Migrates submenu items from wp-admin menu slugs to Calypso menu slugs.
622
	 *
623
	 * @param string $old_slug WP-Admin menu slug.
624
	 * @param string $new_slug Calypso menu slug. (Calypso URL).
625
	 */
626
	public function migrate_submenus( $old_slug, $new_slug ) {
627
		global $submenu;
628
629
		if ( $old_slug !== $new_slug && ! empty( $submenu[ $old_slug ] ) ) {
630
			if ( ! empty( $submenu[ $new_slug ] ) ) {
631
				// phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
632
				$submenu[ $new_slug ] = array_replace( $submenu[ $new_slug ], $submenu[ $old_slug ] );
633
			} else {
634
				// phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
635
				$submenu[ $new_slug ] = $submenu[ $old_slug ];
636
			}
637
			unset( $submenu[ $old_slug ] );
638
		}
639
	}
640
641
	/**
642
	 * Adds a menu separator.
643
	 *
644
	 * @param int    $position The position in the menu order this item should appear.
645
	 * @param string $cap      Optional. The capability required for this menu to be displayed to the user.
646
	 *                         Default: 'read'.
647
	 */
648
	public function add_admin_menu_separator( $position, $cap = 'read' ) {
649
		global $menu;
650
		static $uid = 3;
651
652
		// phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
653
		$menu[ $position ] = array(
654
			'',                               // Menu title (ignored).
655
			$cap,                             // Required capability.
656
			'separator-custom-' . ( ++$uid ), // URL or file (ignored, but must be unique).
657
			'',                               // Page title (ignored).
658
			'wp-menu-separator',              // CSS class. Identifies this item as a separator.
659
		);
660
		ksort( $menu );
661
	}
662
663
	/**
664
	 * Enqueues scripts and styles.
665
	 */
666
	public function enqueue_scripts() {
667
		$style_dependencies = array();
0 ignored issues
show
Unused Code introduced by
$style_dependencies is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
668
		$rtl                = is_rtl() ? '-rtl' : '';
669 View Code Duplication
		if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) {
670
			$style_dependencies = array( 'wpcom-admin-bar', 'wpcom-masterbar-css' );
671
		} else {
672
			$style_dependencies = array( 'a8c-wpcom-masterbar' . $rtl, 'a8c-wpcom-masterbar-overrides' . $rtl );
673
		}
674
		wp_enqueue_style(
675
			'jetpack-admin-menu',
676
			plugins_url( 'admin-menu.css', __FILE__ ),
677
			$style_dependencies,
678
			JETPACK__VERSION
679
		);
680
		wp_enqueue_script(
681
			'jetpack-admin-menu',
682
			plugins_url( 'admin-menu.js', __FILE__ ),
683
			array(),
684
			JETPACK__VERSION,
685
			true
686
		);
687
	}
688
689
	/**
690
	 * Dequeues unnecessary scripts.
691
	 */
692
	public function dequeue_scripts() {
693
		wp_dequeue_script( 'a8c_wpcom_masterbar_overrides' ); // Initially loaded in modules/masterbar/masterbar/class-masterbar.php.
694
	}
695
696
	/**
697
	 * Whether we're in a WordPress.com context.
698
	 *
699
	 * @return bool
700
	 */
701
	private function is_wpcom_site() {
702
		/**
703
		 * Filters whether this request is executed in a WordPress.com environment.
704
		 *
705
		 * Filterable to make it easier to unit test other parts of this class.
706
		 *
707
		 * @module masterbar
708
		 *
709
		 * @since 9.3.0
710
		 *
711
		 * @param bool $is_wpcom Whether this is a WordPress.com request. Defaults to the value of IS_WPCOM,
712
		 */
713
		return apply_filters( 'jetpack_admin_menu_is_wpcom', defined( 'IS_WPCOM' ) && IS_WPCOM );
714
	}
715
}
716