admin-menu-rtl.css
3 years ago
admin-menu-rtl.min.css
3 years ago
admin-menu.css
3 years ago
admin-menu.js
3 years ago
admin-menu.min.css
3 years ago
class-admin-menu.php
3 years ago
class-atomic-admin-menu.php
3 years ago
class-base-admin-menu.php
3 years ago
class-dashboard-switcher-tracking.php
3 years ago
class-domain-only-admin-menu.php
3 years ago
class-jetpack-admin-menu.php
3 years ago
class-p2-admin-menu.php
4 years ago
class-wpcom-admin-menu.php
3 years ago
class-wpcom-email-subscription-checker.php
3 years ago
dashicon-set.php
4 years ago
globe-icon.svg
3 years ago
load.php
3 years ago
menu-mappings.php
3 years ago
class-jetpack-admin-menu.php
299 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Jetpack Admin Menu file. |
| 4 | * |
| 5 | * @package Jetpack |
| 6 | */ |
| 7 | |
| 8 | namespace Automattic\Jetpack\Dashboard_Customizations; |
| 9 | |
| 10 | use Automattic\Jetpack\Blaze; |
| 11 | |
| 12 | require_once __DIR__ . '/class-admin-menu.php'; |
| 13 | |
| 14 | /** |
| 15 | * Class Jetpack_Admin_Menu. |
| 16 | */ |
| 17 | class Jetpack_Admin_Menu extends Admin_Menu { |
| 18 | |
| 19 | /** |
| 20 | * Determines whether the current locale is right-to-left (RTL). |
| 21 | * |
| 22 | * Performs the check against the current locale set on the WordPress.com's account settings. |
| 23 | * See `Masterbar::__construct` in `modules/masterbar/masterbar/class-masterbar.php`. |
| 24 | */ |
| 25 | public function is_rtl() { |
| 26 | return get_user_option( 'jetpack_wpcom_is_rtl' ); |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * Create the desired menu output. |
| 31 | */ |
| 32 | public function reregister_menu_items() { |
| 33 | global $menu, $submenu; |
| 34 | |
| 35 | // Reset menus so there are no third-party plugin items. |
| 36 | $menu = array(); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited |
| 37 | $submenu = array(); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited |
| 38 | |
| 39 | parent::reregister_menu_items(); |
| 40 | |
| 41 | $this->add_feedback_menu(); |
| 42 | $this->add_cpt_menus(); |
| 43 | $this->add_wp_admin_menu(); |
| 44 | |
| 45 | ksort( $GLOBALS['menu'] ); |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Get the preferred view for the given screen. |
| 50 | * |
| 51 | * @param string $screen Screen identifier. |
| 52 | * @param bool $fallback_global_preference (Optional) Whether the global preference for all screens should be used |
| 53 | * as fallback if there is no specific preference for the given screen. |
| 54 | * Default: true. |
| 55 | * @return string |
| 56 | */ |
| 57 | public function get_preferred_view( $screen, $fallback_global_preference = true ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
| 58 | // Force default views (Calypso) on Jetpack sites since Nav Unification is disabled on WP Admin. |
| 59 | return self::DEFAULT_VIEW; |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Get the Calypso or wp-admin link to CPT page. |
| 64 | * |
| 65 | * @param object $ptype_obj The post type object. |
| 66 | * @return string The link to Calypso if SSO is enabled and the post_type |
| 67 | * supports rest or to WP Admin if SSO is disabled. |
| 68 | */ |
| 69 | public function get_cpt_menu_link( $ptype_obj ) { |
| 70 | |
| 71 | $post_type = $ptype_obj->name; |
| 72 | |
| 73 | if ( \Jetpack::is_module_active( 'sso' ) && $ptype_obj->show_in_rest ) { |
| 74 | return 'https://wordpress.com/types/' . $post_type . '/' . $this->domain; |
| 75 | } else { |
| 76 | return 'edit.php?post_type=' . $post_type; |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Adds Posts menu. |
| 82 | */ |
| 83 | public function add_posts_menu() { |
| 84 | $post = get_post_type_object( 'post' ); |
| 85 | 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' ); |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Adds Media menu. |
| 90 | */ |
| 91 | public function add_media_menu() { |
| 92 | add_menu_page( __( 'Media', 'jetpack' ), __( 'Media', 'jetpack' ), 'upload_files', 'https://wordpress.com/media/' . $this->domain, null, 'dashicons-admin-media' ); |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * Adds Page menu. |
| 97 | */ |
| 98 | public function add_page_menu() { |
| 99 | $page = get_post_type_object( 'page' ); |
| 100 | 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' ); |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Adds a custom post type menu. |
| 105 | * |
| 106 | * @param string $post_type Custom post type. |
| 107 | * @param int|null $position Optional. Position where to display the menu item. Default null. |
| 108 | */ |
| 109 | public function add_custom_post_type_menu( $post_type, $position = null ) { |
| 110 | $ptype_obj = get_post_type_object( $post_type ); |
| 111 | if ( empty( $ptype_obj ) ) { |
| 112 | return; |
| 113 | } |
| 114 | |
| 115 | $menu_slug = $this->get_cpt_menu_link( $ptype_obj ); |
| 116 | |
| 117 | // Menu icon. |
| 118 | $menu_icon = 'dashicons-admin-post'; |
| 119 | if ( is_string( $ptype_obj->menu_icon ) ) { |
| 120 | // Special handling for data:image/svg+xml and Dashicons. |
| 121 | if ( 0 === strpos( $ptype_obj->menu_icon, 'data:image/svg+xml;base64,' ) || 0 === strpos( $ptype_obj->menu_icon, 'dashicons-' ) ) { |
| 122 | $menu_icon = $ptype_obj->menu_icon; |
| 123 | } else { |
| 124 | $menu_icon = esc_url( $ptype_obj->menu_icon ); |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | 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 ); |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * Adds Comments menu. |
| 133 | */ |
| 134 | public function add_comments_menu() { |
| 135 | add_menu_page( esc_attr__( 'Comments', 'jetpack' ), __( 'Comments', 'jetpack' ), 'edit_posts', 'https://wordpress.com/comments/all/' . $this->domain, null, 'dashicons-admin-comments' ); |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Adds Feedback menu. |
| 140 | */ |
| 141 | public function add_feedback_menu() { |
| 142 | $post_type = 'feedback'; |
| 143 | |
| 144 | $ptype_obj = get_post_type_object( $post_type ); |
| 145 | if ( empty( $ptype_obj ) ) { |
| 146 | return; |
| 147 | } |
| 148 | |
| 149 | $slug = 'edit.php?post_type=' . $post_type; |
| 150 | $name = __( 'Feedback', 'jetpack' ); |
| 151 | $capability = $ptype_obj->cap->edit_posts; |
| 152 | $icon = $ptype_obj->menu_icon; |
| 153 | $position = 45; // Before Jetpack. |
| 154 | |
| 155 | add_menu_page( esc_attr( $name ), $name, $capability, $slug, null, $icon, $position ); |
| 156 | } |
| 157 | |
| 158 | /** |
| 159 | * Adds CPT menu items |
| 160 | */ |
| 161 | public function add_cpt_menus() { |
| 162 | |
| 163 | $post_type_list = get_post_types( |
| 164 | array( |
| 165 | 'show_in_menu' => true, |
| 166 | '_builtin' => false, |
| 167 | ) |
| 168 | ); |
| 169 | |
| 170 | foreach ( $post_type_list as $post_type ) { |
| 171 | $position = 46; // After Feedback. |
| 172 | $this->add_custom_post_type_menu( $post_type, $position ); |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Adds Jetpack menu. |
| 178 | */ |
| 179 | public function add_jetpack_menu() { |
| 180 | parent::add_jetpack_menu(); |
| 181 | /* translators: Jetpack sidebar menu item. */ |
| 182 | add_submenu_page( 'jetpack', esc_attr__( 'Search', 'jetpack' ), __( 'Search', 'jetpack' ), 'manage_options', 'jetpack-search', admin_url( 'admin.php?page=jetpack-search' ), 4 ); |
| 183 | |
| 184 | // Place "Scan" submenu after Backup. |
| 185 | $position = 0; |
| 186 | global $submenu; |
| 187 | foreach ( $submenu['jetpack'] as $submenu_item ) { |
| 188 | ++$position; |
| 189 | if ( __( 'Backup', 'jetpack' ) === $submenu_item[3] ) { |
| 190 | break; |
| 191 | } |
| 192 | } |
| 193 | add_submenu_page( 'jetpack', esc_attr__( 'Scan', 'jetpack' ), __( 'Scan', 'jetpack' ), 'manage_options', 'https://wordpress.com/scan/' . $this->domain, null, $position ); |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * Adds Appearance menu. |
| 198 | * |
| 199 | * @return string The Customizer URL. |
| 200 | */ |
| 201 | public function add_appearance_menu() { |
| 202 | $themes_url = 'https://wordpress.com/themes/' . $this->domain; |
| 203 | // Customize on Jetpack sites is always done on WP Admin (unsupported by Calypso). |
| 204 | $customize_url = 'customize.php'; |
| 205 | |
| 206 | add_menu_page( esc_attr__( 'Appearance', 'jetpack' ), __( 'Appearance', 'jetpack' ), 'switch_themes', $themes_url, null, 'dashicons-admin-appearance', 60 ); |
| 207 | add_submenu_page( $themes_url, esc_attr__( 'Themes', 'jetpack' ), __( 'Themes', 'jetpack' ), 'switch_themes', 'https://wordpress.com/themes/' . $this->domain ); |
| 208 | add_submenu_page( $themes_url, esc_attr__( 'Customize', 'jetpack' ), __( 'Customize', 'jetpack' ), 'customize', $customize_url ); |
| 209 | |
| 210 | return $customize_url; |
| 211 | } |
| 212 | |
| 213 | /** |
| 214 | * Adds Plugins menu. |
| 215 | */ |
| 216 | public function add_plugins_menu() { |
| 217 | add_menu_page( esc_attr__( 'Plugins', 'jetpack' ), __( 'Plugins', 'jetpack' ), 'activate_plugins', 'https://wordpress.com/plugins/' . $this->domain, null, 'dashicons-admin-plugins', 65 ); |
| 218 | } |
| 219 | |
| 220 | /** |
| 221 | * Adds Users menu. |
| 222 | */ |
| 223 | public function add_users_menu() { |
| 224 | if ( current_user_can( 'list_users' ) ) { |
| 225 | add_menu_page( esc_attr__( 'Users', 'jetpack' ), __( 'Users', 'jetpack' ), 'list_users', 'https://wordpress.com/people/team/' . $this->domain, null, 'dashicons-admin-users', 70 ); |
| 226 | } else { |
| 227 | add_menu_page( esc_attr__( 'My Profile', 'jetpack' ), __( 'Profile', 'jetpack' ), 'read', 'https://wordpress.com/me', null, 'dashicons-admin-users', 70 ); |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | /** |
| 232 | * Adds Tools menu. |
| 233 | */ |
| 234 | public function add_tools_menu() { |
| 235 | add_menu_page( esc_attr__( 'Tools', 'jetpack' ), __( 'Tools', 'jetpack' ), 'publish_posts', 'tools.php', null, 'dashicons-admin-tools', 75 ); |
| 236 | if ( Blaze::should_initialize() ) { |
| 237 | add_submenu_page( 'tools.php', esc_attr__( 'Advertising', 'jetpack' ), __( 'Advertising', 'jetpack' ), 'manage_options', 'https://wordpress.com/advertising/' . $this->domain, null, 1 ); |
| 238 | } |
| 239 | add_submenu_page( 'tools.php', esc_attr__( 'Marketing', 'jetpack' ), __( 'Marketing', 'jetpack' ), 'publish_posts', 'https://wordpress.com/marketing/tools/' . $this->domain ); |
| 240 | add_submenu_page( 'tools.php', esc_attr__( 'Earn', 'jetpack' ), __( 'Earn', 'jetpack' ), 'manage_options', 'https://wordpress.com/earn/' . $this->domain ); |
| 241 | |
| 242 | // Import/Export on Jetpack sites is always handled on WP Admin. |
| 243 | add_submenu_page( 'tools.php', esc_attr__( 'Import', 'jetpack' ), __( 'Import', 'jetpack' ), 'import', 'import.php' ); |
| 244 | add_submenu_page( 'tools.php', esc_attr__( 'Export', 'jetpack' ), __( 'Export', 'jetpack' ), 'export', 'export.php' ); |
| 245 | |
| 246 | // Remove the submenu auto-created by Core. |
| 247 | $this->hide_submenu_page( 'tools.php', 'tools.php' ); |
| 248 | } |
| 249 | |
| 250 | /** |
| 251 | * Adds Settings menu. |
| 252 | */ |
| 253 | public function add_options_menu() { |
| 254 | $slug = 'https://wordpress.com/settings/general/' . $this->domain; |
| 255 | add_menu_page( esc_attr__( 'Settings', 'jetpack' ), __( 'Settings', 'jetpack' ), 'manage_options', $slug, null, 'dashicons-admin-settings', 80 ); |
| 256 | add_submenu_page( $slug, esc_attr__( 'General', 'jetpack' ), __( 'General', 'jetpack' ), 'manage_options', $slug ); |
| 257 | add_submenu_page( $slug, esc_attr__( 'Security', 'jetpack' ), __( 'Security', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/security/' . $this->domain ); |
| 258 | add_submenu_page( $slug, esc_attr__( 'Performance', 'jetpack' ), __( 'Performance', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/performance/' . $this->domain ); |
| 259 | add_submenu_page( $slug, esc_attr__( 'Writing', 'jetpack' ), __( 'Writing', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/writing/' . $this->domain ); |
| 260 | add_submenu_page( $slug, esc_attr__( 'Reading', 'jetpack' ), __( 'Reading', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/reading/' . $this->domain ); |
| 261 | add_submenu_page( $slug, esc_attr__( 'Discussion', 'jetpack' ), __( 'Discussion', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/discussion/' . $this->domain ); |
| 262 | |
| 263 | $plan_supports_scan = \Jetpack_Plan::supports( 'scan' ); |
| 264 | $products = \Jetpack_Plan::get_products(); |
| 265 | $has_scan_product = false; |
| 266 | |
| 267 | if ( is_array( $products ) ) { |
| 268 | foreach ( $products as $product ) { |
| 269 | if ( strpos( $product['product_slug'], 'jetpack_scan' ) === 0 ) { |
| 270 | $has_scan_product = true; |
| 271 | break; |
| 272 | } |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | $has_scan = $plan_supports_scan || $has_scan_product; |
| 277 | $rewind_state = get_transient( 'jetpack_rewind_state' ); |
| 278 | $has_backup = $rewind_state && in_array( $rewind_state->state, array( 'awaiting_credentials', 'provisioning', 'active' ), true ); |
| 279 | if ( $has_scan || $has_backup ) { |
| 280 | add_submenu_page( $slug, esc_attr__( 'Jetpack', 'jetpack' ), __( 'Jetpack', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/jetpack/' . $this->domain ); |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | /** |
| 285 | * Adds WP Admin menu. |
| 286 | */ |
| 287 | public function add_wp_admin_menu() { |
| 288 | global $menu; |
| 289 | |
| 290 | // Attempt to get last position. |
| 291 | ksort( $menu ); |
| 292 | end( $menu ); |
| 293 | $position = key( $menu ); |
| 294 | |
| 295 | $this->add_admin_menu_separator( ++$position ); |
| 296 | add_menu_page( __( 'WP Admin', 'jetpack' ), __( 'WP Admin', 'jetpack' ), 'read', 'index.php', null, 'dashicons-wordpress-alt', $position ); |
| 297 | } |
| 298 | } |
| 299 |