class-jetpack-admin-menu.php
11 KB
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
<?php
/**
* Jetpack Admin Menu file.
*
* @package Jetpack
*/
namespace Automattic\Jetpack\Dashboard_Customizations;
use Automattic\Jetpack\Blaze;
require_once __DIR__ . '/class-admin-menu.php';
/**
* Class Jetpack_Admin_Menu.
*/
class Jetpack_Admin_Menu extends Admin_Menu {
/**
* Determines whether the current locale is right-to-left (RTL).
*
* Performs the check against the current locale set on the WordPress.com's account settings.
* See `Masterbar::__construct` in `modules/masterbar/masterbar/class-masterbar.php`.
*/
public function is_rtl() {
return get_user_option( 'jetpack_wpcom_is_rtl' );
}
/**
* Create the desired menu output.
*/
public function reregister_menu_items() {
global $menu, $submenu;
// Reset menus so there are no third-party plugin items.
$menu = array(); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
$submenu = array(); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
parent::reregister_menu_items();
$this->add_feedback_menu();
$this->add_cpt_menus();
$this->add_wp_admin_menu();
ksort( $GLOBALS['menu'] );
}
/**
* Get the preferred view for the given screen.
*
* @param string $screen Screen identifier.
* @param bool $fallback_global_preference (Optional) Whether the global preference for all screens should be used
* as fallback if there is no specific preference for the given screen.
* Default: true.
* @return string
*/
public function get_preferred_view( $screen, $fallback_global_preference = true ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
// Force default views (Calypso) on Jetpack sites since Nav Unification is disabled on WP Admin.
return self::DEFAULT_VIEW;
}
/**
* Get the Calypso or wp-admin link to CPT page.
*
* @param object $ptype_obj The post type object.
* @return string The link to Calypso if SSO is enabled and the post_type
* supports rest or to WP Admin if SSO is disabled.
*/
public function get_cpt_menu_link( $ptype_obj ) {
$post_type = $ptype_obj->name;
if ( \Jetpack::is_module_active( 'sso' ) && $ptype_obj->show_in_rest ) {
return 'https://wordpress.com/types/' . $post_type . '/' . $this->domain;
} else {
return 'edit.php?post_type=' . $post_type;
}
}
/**
* Adds Posts menu.
*/
public function add_posts_menu() {
$post = get_post_type_object( 'post' );
add_menu_page( esc_attr( $post->labels->menu_name ), $post->labels->menu_name, $post->cap->edit_posts, 'https://wordpress.com/posts/' . $this->domain, null, 'dashicons-admin-post' );
}
/**
* Adds Media menu.
*/
public function add_media_menu() {
add_menu_page( __( 'Media', 'jetpack' ), __( 'Media', 'jetpack' ), 'upload_files', 'https://wordpress.com/media/' . $this->domain, null, 'dashicons-admin-media' );
}
/**
* Adds Page menu.
*/
public function add_page_menu() {
$page = get_post_type_object( 'page' );
add_menu_page( esc_attr( $page->labels->menu_name ), $page->labels->menu_name, $page->cap->edit_posts, 'https://wordpress.com/pages/' . $this->domain, null, 'dashicons-admin-page' );
}
/**
* Adds a custom post type menu.
*
* @param string $post_type Custom post type.
* @param int|null $position Optional. Position where to display the menu item. Default null.
*/
public function add_custom_post_type_menu( $post_type, $position = null ) {
$ptype_obj = get_post_type_object( $post_type );
if ( empty( $ptype_obj ) ) {
return;
}
$menu_slug = $this->get_cpt_menu_link( $ptype_obj );
// Menu icon.
$menu_icon = 'dashicons-admin-post';
if ( is_string( $ptype_obj->menu_icon ) ) {
// Special handling for data:image/svg+xml and Dashicons.
if ( 0 === strpos( $ptype_obj->menu_icon, 'data:image/svg+xml;base64,' ) || 0 === strpos( $ptype_obj->menu_icon, 'dashicons-' ) ) {
$menu_icon = $ptype_obj->menu_icon;
} else {
$menu_icon = esc_url( $ptype_obj->menu_icon );
}
}
add_menu_page( esc_attr( $ptype_obj->labels->menu_name ), $ptype_obj->labels->menu_name, $ptype_obj->cap->edit_posts, $menu_slug, null, $menu_icon, $position );
}
/**
* Adds Comments menu.
*/
public function add_comments_menu() {
add_menu_page( esc_attr__( 'Comments', 'jetpack' ), __( 'Comments', 'jetpack' ), 'edit_posts', 'https://wordpress.com/comments/all/' . $this->domain, null, 'dashicons-admin-comments' );
}
/**
* Adds Feedback menu.
*/
public function add_feedback_menu() {
$post_type = 'feedback';
$ptype_obj = get_post_type_object( $post_type );
if ( empty( $ptype_obj ) ) {
return;
}
$slug = 'edit.php?post_type=' . $post_type;
$name = __( 'Feedback', 'jetpack' );
$capability = $ptype_obj->cap->edit_posts;
$icon = $ptype_obj->menu_icon;
$position = 45; // Before Jetpack.
add_menu_page( esc_attr( $name ), $name, $capability, $slug, null, $icon, $position );
}
/**
* Adds CPT menu items
*/
public function add_cpt_menus() {
$post_type_list = get_post_types(
array(
'show_in_menu' => true,
'_builtin' => false,
)
);
foreach ( $post_type_list as $post_type ) {
$position = 46; // After Feedback.
$this->add_custom_post_type_menu( $post_type, $position );
}
}
/**
* Adds Jetpack menu.
*/
public function add_jetpack_menu() {
parent::add_jetpack_menu();
/* translators: Jetpack sidebar menu item. */
add_submenu_page( 'jetpack', esc_attr__( 'Search', 'jetpack' ), __( 'Search', 'jetpack' ), 'manage_options', 'jetpack-search', admin_url( 'admin.php?page=jetpack-search' ), 4 );
// Place "Scan" submenu after Backup.
$position = 0;
global $submenu;
foreach ( $submenu['jetpack'] as $submenu_item ) {
++$position;
if ( __( 'Backup', 'jetpack' ) === $submenu_item[3] ) {
break;
}
}
add_submenu_page( 'jetpack', esc_attr__( 'Scan', 'jetpack' ), __( 'Scan', 'jetpack' ), 'manage_options', 'https://wordpress.com/scan/' . $this->domain, null, $position );
}
/**
* Adds Appearance menu.
*
* @return string The Customizer URL.
*/
public function add_appearance_menu() {
$themes_url = 'https://wordpress.com/themes/' . $this->domain;
// Customize on Jetpack sites is always done on WP Admin (unsupported by Calypso).
$customize_url = 'customize.php';
add_menu_page( esc_attr__( 'Appearance', 'jetpack' ), __( 'Appearance', 'jetpack' ), 'switch_themes', $themes_url, null, 'dashicons-admin-appearance', 60 );
add_submenu_page( $themes_url, esc_attr__( 'Themes', 'jetpack' ), __( 'Themes', 'jetpack' ), 'switch_themes', 'https://wordpress.com/themes/' . $this->domain );
add_submenu_page( $themes_url, esc_attr__( 'Customize', 'jetpack' ), __( 'Customize', 'jetpack' ), 'customize', $customize_url );
return $customize_url;
}
/**
* Adds Plugins menu.
*/
public function add_plugins_menu() {
add_menu_page( esc_attr__( 'Plugins', 'jetpack' ), __( 'Plugins', 'jetpack' ), 'activate_plugins', 'https://wordpress.com/plugins/' . $this->domain, null, 'dashicons-admin-plugins', 65 );
}
/**
* Adds Users menu.
*/
public function add_users_menu() {
if ( current_user_can( 'list_users' ) ) {
add_menu_page( esc_attr__( 'Users', 'jetpack' ), __( 'Users', 'jetpack' ), 'list_users', 'https://wordpress.com/people/team/' . $this->domain, null, 'dashicons-admin-users', 70 );
} else {
add_menu_page( esc_attr__( 'My Profile', 'jetpack' ), __( 'Profile', 'jetpack' ), 'read', 'https://wordpress.com/me', null, 'dashicons-admin-users', 70 );
}
}
/**
* Adds Tools menu.
*/
public function add_tools_menu() {
add_menu_page( esc_attr__( 'Tools', 'jetpack' ), __( 'Tools', 'jetpack' ), 'publish_posts', 'tools.php', null, 'dashicons-admin-tools', 75 );
if ( Blaze::should_initialize() ) {
add_submenu_page( 'tools.php', esc_attr__( 'Advertising', 'jetpack' ), __( 'Advertising', 'jetpack' ), 'manage_options', 'https://wordpress.com/advertising/' . $this->domain, null, 1 );
}
add_submenu_page( 'tools.php', esc_attr__( 'Marketing', 'jetpack' ), __( 'Marketing', 'jetpack' ), 'publish_posts', 'https://wordpress.com/marketing/tools/' . $this->domain );
add_submenu_page( 'tools.php', esc_attr__( 'Earn', 'jetpack' ), __( 'Earn', 'jetpack' ), 'manage_options', 'https://wordpress.com/earn/' . $this->domain );
// Import/Export on Jetpack sites is always handled on WP Admin.
add_submenu_page( 'tools.php', esc_attr__( 'Import', 'jetpack' ), __( 'Import', 'jetpack' ), 'import', 'import.php' );
add_submenu_page( 'tools.php', esc_attr__( 'Export', 'jetpack' ), __( 'Export', 'jetpack' ), 'export', 'export.php' );
// Remove the submenu auto-created by Core.
$this->hide_submenu_page( 'tools.php', 'tools.php' );
}
/**
* Adds Settings menu.
*/
public function add_options_menu() {
$slug = 'https://wordpress.com/settings/general/' . $this->domain;
add_menu_page( esc_attr__( 'Settings', 'jetpack' ), __( 'Settings', 'jetpack' ), 'manage_options', $slug, null, 'dashicons-admin-settings', 80 );
add_submenu_page( $slug, esc_attr__( 'General', 'jetpack' ), __( 'General', 'jetpack' ), 'manage_options', $slug );
add_submenu_page( $slug, esc_attr__( 'Security', 'jetpack' ), __( 'Security', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/security/' . $this->domain );
add_submenu_page( $slug, esc_attr__( 'Performance', 'jetpack' ), __( 'Performance', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/performance/' . $this->domain );
add_submenu_page( $slug, esc_attr__( 'Writing', 'jetpack' ), __( 'Writing', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/writing/' . $this->domain );
add_submenu_page( $slug, esc_attr__( 'Reading', 'jetpack' ), __( 'Reading', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/reading/' . $this->domain );
add_submenu_page( $slug, esc_attr__( 'Discussion', 'jetpack' ), __( 'Discussion', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/discussion/' . $this->domain );
$plan_supports_scan = \Jetpack_Plan::supports( 'scan' );
$products = \Jetpack_Plan::get_products();
$has_scan_product = false;
if ( is_array( $products ) ) {
foreach ( $products as $product ) {
if ( strpos( $product['product_slug'], 'jetpack_scan' ) === 0 ) {
$has_scan_product = true;
break;
}
}
}
$has_scan = $plan_supports_scan || $has_scan_product;
$rewind_state = get_transient( 'jetpack_rewind_state' );
$has_backup = $rewind_state && in_array( $rewind_state->state, array( 'awaiting_credentials', 'provisioning', 'active' ), true );
if ( $has_scan || $has_backup ) {
add_submenu_page( $slug, esc_attr__( 'Jetpack', 'jetpack' ), __( 'Jetpack', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/jetpack/' . $this->domain );
}
}
/**
* Adds WP Admin menu.
*/
public function add_wp_admin_menu() {
global $menu;
// Attempt to get last position.
ksort( $menu );
end( $menu );
$position = key( $menu );
$this->add_admin_menu_separator( ++$position );
add_menu_page( __( 'WP Admin', 'jetpack' ), __( 'WP Admin', 'jetpack' ), 'read', 'index.php', null, 'dashicons-wordpress-alt', $position );
}
}