admin-menu-nav-unification-rtl.css
2 years ago
admin-menu-nav-unification-rtl.min.css
2 years ago
admin-menu-nav-unification.css
2 years ago
admin-menu-nav-unification.min.css
2 years ago
admin-menu-rtl.css
2 years ago
admin-menu-rtl.min.css
2 years ago
admin-menu.css
2 years ago
admin-menu.js
2 years ago
admin-menu.min.css
2 years ago
class-admin-menu.php
2 years ago
class-atomic-admin-menu.php
2 years ago
class-base-admin-menu.php
2 years ago
class-dashboard-switcher-tracking.php
3 years ago
class-domain-only-admin-menu.php
2 years ago
class-jetpack-admin-menu.php
2 years ago
class-p2-admin-menu.php
4 years ago
class-wpcom-admin-menu.php
2 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
2 years ago
menu-mappings.php
3 years ago
class-admin-menu.php
516 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Admin Menu file. |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | namespace Automattic\Jetpack\Dashboard_Customizations; |
| 9 | |
| 10 | use Automattic\Jetpack\Assets\Logo; |
| 11 | use Automattic\Jetpack\Redirect; |
| 12 | |
| 13 | require_once __DIR__ . '/class-base-admin-menu.php'; |
| 14 | |
| 15 | /** |
| 16 | * Class Admin_Menu. |
| 17 | */ |
| 18 | class Admin_Menu extends Base_Admin_Menu { |
| 19 | |
| 20 | /** |
| 21 | * Create the desired menu output. |
| 22 | */ |
| 23 | public function reregister_menu_items() { |
| 24 | // Remove separators. |
| 25 | remove_menu_page( 'separator1' ); |
| 26 | $this->add_stats_menu(); |
| 27 | $this->add_upgrades_menu(); |
| 28 | $this->add_posts_menu(); |
| 29 | $this->add_media_menu(); |
| 30 | $this->add_page_menu(); |
| 31 | $this->add_testimonials_menu(); |
| 32 | $this->add_portfolio_menu(); |
| 33 | $this->add_comments_menu(); |
| 34 | $this->add_appearance_menu(); |
| 35 | $this->add_plugins_menu(); |
| 36 | $this->add_users_menu(); |
| 37 | $this->add_tools_menu(); |
| 38 | $this->add_options_menu(); |
| 39 | $this->add_jetpack_menu(); |
| 40 | |
| 41 | // Remove Links Manager menu since its usage is discouraged. https://github.com/Automattic/wp-calypso/issues/51188. |
| 42 | // @see https://core.trac.wordpress.org/ticket/21307#comment:73. |
| 43 | if ( $this->should_disable_links_manager() ) { |
| 44 | remove_menu_page( 'link-manager.php' ); |
| 45 | } |
| 46 | |
| 47 | ksort( $GLOBALS['menu'] ); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Get the preferred view for the given screen. |
| 52 | * |
| 53 | * @param string $screen Screen identifier. |
| 54 | * @param bool $fallback_global_preference (Optional) Whether the global preference for all screens should be used |
| 55 | * as fallback if there is no specific preference for the given screen. |
| 56 | * Default: true. |
| 57 | * @return string |
| 58 | */ |
| 59 | public function get_preferred_view( $screen, $fallback_global_preference = true ) { |
| 60 | $force_default_view = in_array( $screen, array( 'users.php', 'options-general.php' ), true ); |
| 61 | $use_wp_admin = $this->use_wp_admin_interface(); |
| 62 | |
| 63 | // When no preferred view has been set for "Users > All Users" or "Settings > General", keep the previous |
| 64 | // behavior that forced the default view regardless of the global preference. |
| 65 | // This behavior is overriden by the wpcom_admin_interface option when it is set to wp-admin. |
| 66 | if ( ! $use_wp_admin && $fallback_global_preference && $force_default_view ) { |
| 67 | $preferred_view = parent::get_preferred_view( $screen, false ); |
| 68 | if ( self::UNKNOWN_VIEW === $preferred_view ) { |
| 69 | return self::DEFAULT_VIEW; |
| 70 | } |
| 71 | return $preferred_view; |
| 72 | } |
| 73 | |
| 74 | return parent::get_preferred_view( $screen, $fallback_global_preference ); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Check if Links Manager is being used. |
| 79 | */ |
| 80 | public function should_disable_links_manager() { |
| 81 | // The max ID number of the auto-generated links. |
| 82 | // See /wp-content/mu-plugins/wpcom-wp-install-defaults.php in WP.com. |
| 83 | $max_default_id = 10; |
| 84 | |
| 85 | // We are only checking the latest entry link_id so are limiting the query to 1. |
| 86 | $link_manager_links = get_bookmarks( |
| 87 | array( |
| 88 | 'orderby' => 'link_id', |
| 89 | 'order' => 'DESC', |
| 90 | 'limit' => 1, |
| 91 | 'hide_invisible' => 0, |
| 92 | ) |
| 93 | ); |
| 94 | |
| 95 | // Ordered links by ID descending, check if the first ID is more than $max_default_id. |
| 96 | if ( is_countable( $link_manager_links ) && count( $link_manager_links ) > 0 && $link_manager_links[0]->link_id > $max_default_id ) { |
| 97 | return false; |
| 98 | } |
| 99 | |
| 100 | return true; |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Adds My Home menu. |
| 105 | */ |
| 106 | public function add_my_home_menu() { |
| 107 | |
| 108 | if ( self::DEFAULT_VIEW !== $this->get_preferred_view( 'index.php' ) ) { |
| 109 | add_menu_page( __( 'My Home', 'jetpack' ), __( 'My Home', 'jetpack' ), 'read', 'https://wordpress.com/home/' . $this->domain, null, 'dashicons-admin-home', '1.5' ); |
| 110 | return; |
| 111 | } |
| 112 | |
| 113 | $this->update_menu( 'index.php', 'https://wordpress.com/home/' . $this->domain, __( 'My Home', 'jetpack' ), 'read', 'dashicons-admin-home' ); |
| 114 | } |
| 115 | |
| 116 | /** |
| 117 | * Adds My Mailboxes menu. |
| 118 | */ |
| 119 | public function add_my_mailboxes_menu() { |
| 120 | add_menu_page( __( 'My Mailboxes', 'jetpack' ), __( 'My Mailboxes', 'jetpack' ), 'manage_options', 'https://wordpress.com/mailboxes/' . $this->domain, null, 'dashicons-email', '4.64424' ); |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Adds Stats menu. |
| 125 | */ |
| 126 | public function add_stats_menu() { |
| 127 | add_menu_page( __( 'Stats', 'jetpack' ), __( 'Stats', 'jetpack' ), 'view_stats', 'https://wordpress.com/stats/day/' . $this->domain, null, 'dashicons-chart-bar', 3 ); |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Adds Upgrades menu. |
| 132 | * |
| 133 | * @param string $plan The current WPCOM plan of the blog. |
| 134 | */ |
| 135 | public function add_upgrades_menu( $plan = null ) { |
| 136 | global $menu; |
| 137 | |
| 138 | $menu_exists = false; |
| 139 | foreach ( $menu as $item ) { |
| 140 | if ( 'paid-upgrades.php' === $item[2] ) { |
| 141 | $menu_exists = true; |
| 142 | break; |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | if ( ! $menu_exists ) { |
| 147 | if ( $plan ) { |
| 148 | // Add display:none as a default for cases when CSS is not loaded. |
| 149 | $site_upgrades = '%1$s<span class="inline-text" style="display:none">%2$s</span>'; |
| 150 | $site_upgrades = sprintf( |
| 151 | $site_upgrades, |
| 152 | __( 'Upgrades', 'jetpack' ), |
| 153 | // phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralText |
| 154 | __( $plan, 'jetpack' ) |
| 155 | ); |
| 156 | } else { |
| 157 | $site_upgrades = __( 'Upgrades', 'jetpack' ); |
| 158 | } |
| 159 | |
| 160 | add_menu_page( __( 'Upgrades', 'jetpack' ), $site_upgrades, 'manage_options', 'paid-upgrades.php', null, 'dashicons-cart', 4 ); |
| 161 | } |
| 162 | |
| 163 | add_submenu_page( 'paid-upgrades.php', __( 'Plans', 'jetpack' ), __( 'Plans', 'jetpack' ), 'manage_options', 'https://wordpress.com/plans/' . $this->domain, null, 1 ); |
| 164 | add_submenu_page( 'paid-upgrades.php', __( 'Purchases', 'jetpack' ), __( 'Purchases', 'jetpack' ), 'manage_options', 'https://wordpress.com/purchases/subscriptions/' . $this->domain, null, 2 ); |
| 165 | |
| 166 | if ( ! $menu_exists ) { |
| 167 | // Remove the submenu auto-created by Core. |
| 168 | $this->hide_submenu_page( 'paid-upgrades.php', 'paid-upgrades.php' ); |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * Adds Posts menu. |
| 174 | */ |
| 175 | public function add_posts_menu() { |
| 176 | $submenus_to_update = array(); |
| 177 | |
| 178 | if ( self::DEFAULT_VIEW === $this->get_preferred_view( 'edit.php' ) ) { |
| 179 | $submenus_to_update['edit.php'] = 'https://wordpress.com/posts/' . $this->domain; |
| 180 | $submenus_to_update['post-new.php'] = 'https://wordpress.com/post/' . $this->domain; |
| 181 | $this->update_submenus( 'edit.php', $submenus_to_update ); |
| 182 | } |
| 183 | |
| 184 | if ( self::DEFAULT_VIEW === $this->get_preferred_view( 'edit-tags.php?taxonomy=category' ) ) { |
| 185 | $this->update_submenus( 'edit.php', array( 'edit-tags.php?taxonomy=category' => 'https://wordpress.com/settings/taxonomies/category/' . $this->domain ) ); |
| 186 | } |
| 187 | |
| 188 | if ( self::DEFAULT_VIEW === $this->get_preferred_view( 'edit-tags.php?taxonomy=post_tag' ) ) { |
| 189 | $this->update_submenus( 'edit.php', array( 'edit-tags.php?taxonomy=post_tag' => 'https://wordpress.com/settings/taxonomies/post_tag/' . $this->domain ) ); |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * Adds Media menu. |
| 195 | */ |
| 196 | public function add_media_menu() { |
| 197 | if ( self::CLASSIC_VIEW === $this->get_preferred_view( 'upload.php' ) ) { |
| 198 | return; |
| 199 | } |
| 200 | |
| 201 | $this->hide_submenu_page( 'upload.php', 'media-new.php' ); |
| 202 | |
| 203 | $this->update_menu( 'upload.php', 'https://wordpress.com/media/' . $this->domain ); |
| 204 | } |
| 205 | |
| 206 | /** |
| 207 | * Adds Page menu. |
| 208 | */ |
| 209 | public function add_page_menu() { |
| 210 | if ( self::CLASSIC_VIEW === $this->get_preferred_view( 'edit.php?post_type=page' ) ) { |
| 211 | return; |
| 212 | } |
| 213 | |
| 214 | $submenus_to_update = array( |
| 215 | 'edit.php?post_type=page' => 'https://wordpress.com/pages/' . $this->domain, |
| 216 | 'post-new.php?post_type=page' => 'https://wordpress.com/page/' . $this->domain, |
| 217 | ); |
| 218 | $this->update_submenus( 'edit.php?post_type=page', $submenus_to_update ); |
| 219 | } |
| 220 | |
| 221 | /** |
| 222 | * Adds Testimonials menu. |
| 223 | */ |
| 224 | public function add_testimonials_menu() { |
| 225 | $this->add_custom_post_type_menu( 'jetpack-testimonial' ); |
| 226 | } |
| 227 | |
| 228 | /** |
| 229 | * Adds Portfolio menu. |
| 230 | */ |
| 231 | public function add_portfolio_menu() { |
| 232 | $this->add_custom_post_type_menu( 'jetpack-portfolio' ); |
| 233 | } |
| 234 | |
| 235 | /** |
| 236 | * Adds a custom post type menu. |
| 237 | * |
| 238 | * @param string $post_type Custom post type. |
| 239 | */ |
| 240 | public function add_custom_post_type_menu( $post_type ) { |
| 241 | if ( self::CLASSIC_VIEW === $this->get_preferred_view( 'edit.php?post_type=' . $post_type ) ) { |
| 242 | return; |
| 243 | } |
| 244 | |
| 245 | $submenus_to_update = array( |
| 246 | 'edit.php?post_type=' . $post_type => 'https://wordpress.com/types/' . $post_type . '/' . $this->domain, |
| 247 | 'post-new.php?post_type=' . $post_type => 'https://wordpress.com/edit/' . $post_type . '/' . $this->domain, |
| 248 | ); |
| 249 | $this->update_submenus( 'edit.php?post_type=' . $post_type, $submenus_to_update ); |
| 250 | } |
| 251 | |
| 252 | /** |
| 253 | * Adds Comments menu. |
| 254 | */ |
| 255 | public function add_comments_menu() { |
| 256 | if ( self::CLASSIC_VIEW === $this->get_preferred_view( 'edit-comments.php' ) ) { |
| 257 | return; |
| 258 | } |
| 259 | |
| 260 | $this->update_menu( 'edit-comments.php', 'https://wordpress.com/comments/all/' . $this->domain ); |
| 261 | } |
| 262 | |
| 263 | /** |
| 264 | * Adds Appearance menu. |
| 265 | * |
| 266 | * @return string The Customizer URL. |
| 267 | */ |
| 268 | public function add_appearance_menu() { |
| 269 | $request_uri = isset( $_SERVER['REQUEST_URI'] ) ? esc_url_raw( wp_unslash( $_SERVER['REQUEST_URI'] ) ) : ''; |
| 270 | $default_customize_slug = add_query_arg( 'return', rawurlencode( remove_query_arg( wp_removable_query_args(), $request_uri ) ), 'customize.php' ); |
| 271 | $default_customize_header_slug_1 = add_query_arg( array( 'autofocus' => array( 'control' => 'header_image' ) ), $default_customize_slug ); |
| 272 | // TODO: Remove WPCom_Theme_Customizer::modify_header_menu_links() and WPcom_Custom_Header::modify_admin_menu_links(). |
| 273 | $default_customize_header_slug_2 = admin_url( 'themes.php?page=custom-header' ); |
| 274 | $default_customize_background_slug_1 = add_query_arg( array( 'autofocus' => array( 'control' => 'background_image' ) ), $default_customize_slug ); |
| 275 | // TODO: Remove Colors_Manager::modify_header_menu_links() and Colors_Manager_Common::modify_header_menu_links(). |
| 276 | $default_customize_background_slug_2 = add_query_arg( array( 'autofocus' => array( 'section' => 'colors_manager_tool' ) ), admin_url( 'customize.php' ) ); |
| 277 | |
| 278 | if ( $this->is_api_request ) { |
| 279 | // In case this is an api request we will have to add the 'return' querystring via JS. |
| 280 | $customize_url = 'customize.php'; |
| 281 | } else { |
| 282 | $customize_url = $default_customize_slug; |
| 283 | } |
| 284 | |
| 285 | $submenus_to_update = array( |
| 286 | $default_customize_slug => $customize_url, |
| 287 | $default_customize_header_slug_1 => add_query_arg( array( 'autofocus' => array( 'control' => 'header_image' ) ), $customize_url ), |
| 288 | $default_customize_header_slug_2 => add_query_arg( array( 'autofocus' => array( 'control' => 'header_image' ) ), $customize_url ), |
| 289 | $default_customize_background_slug_1 => add_query_arg( array( 'autofocus' => array( 'section' => 'colors_manager_tool' ) ), $customize_url ), |
| 290 | $default_customize_background_slug_2 => add_query_arg( array( 'autofocus' => array( 'section' => 'colors_manager_tool' ) ), $customize_url ), |
| 291 | ); |
| 292 | |
| 293 | if ( self::DEFAULT_VIEW === $this->get_preferred_view( 'themes.php' ) ) { |
| 294 | $submenus_to_update['themes.php'] = 'https://wordpress.com/themes/' . $this->domain; |
| 295 | } |
| 296 | |
| 297 | $this->update_submenus( 'themes.php', $submenus_to_update ); |
| 298 | |
| 299 | $this->hide_submenu_page( 'themes.php', 'custom-header' ); |
| 300 | $this->hide_submenu_page( 'themes.php', 'custom-background' ); |
| 301 | |
| 302 | return $customize_url; |
| 303 | } |
| 304 | |
| 305 | /** |
| 306 | * Adds Plugins menu. |
| 307 | */ |
| 308 | public function add_plugins_menu() { |
| 309 | if ( self::CLASSIC_VIEW === $this->get_preferred_view( 'plugins.php' ) ) { |
| 310 | return; |
| 311 | } |
| 312 | $this->hide_submenu_page( 'plugins.php', 'plugin-install.php' ); |
| 313 | $this->hide_submenu_page( 'plugins.php', 'plugin-editor.php' ); |
| 314 | |
| 315 | $this->update_menu( 'plugins.php', 'https://wordpress.com/plugins/' . $this->domain ); |
| 316 | } |
| 317 | |
| 318 | /** |
| 319 | * Adds Users menu. |
| 320 | */ |
| 321 | public function add_users_menu() { |
| 322 | $submenus_to_update = array( |
| 323 | 'profile.php' => 'https://wordpress.com/me', |
| 324 | ); |
| 325 | |
| 326 | if ( self::DEFAULT_VIEW === $this->get_preferred_view( 'users.php' ) ) { |
| 327 | $submenus_to_update['users.php'] = 'https://wordpress.com/people/team/' . $this->domain; |
| 328 | $submenus_to_update['user-new.php'] = 'https://wordpress.com/people/new/' . $this->domain; |
| 329 | } |
| 330 | |
| 331 | $slug = current_user_can( 'list_users' ) ? 'users.php' : 'profile.php'; |
| 332 | $this->update_submenus( $slug, $submenus_to_update ); |
| 333 | add_submenu_page( $slug, esc_attr__( 'Account Settings', 'jetpack' ), __( 'Account Settings', 'jetpack' ), 'read', 'https://wordpress.com/me/account' ); |
| 334 | } |
| 335 | |
| 336 | /** |
| 337 | * Adds Tools menu. |
| 338 | */ |
| 339 | public function add_tools_menu() { |
| 340 | $submenus_to_update = array(); |
| 341 | if ( self::DEFAULT_VIEW === $this->get_preferred_view( 'import.php' ) ) { |
| 342 | $submenus_to_update['import.php'] = 'https://wordpress.com/import/' . $this->domain; |
| 343 | } |
| 344 | if ( self::DEFAULT_VIEW === $this->get_preferred_view( 'export.php' ) ) { |
| 345 | $submenus_to_update['export.php'] = 'https://wordpress.com/export/' . $this->domain; |
| 346 | } |
| 347 | $this->update_submenus( 'tools.php', $submenus_to_update ); |
| 348 | |
| 349 | $this->hide_submenu_page( 'tools.php', 'tools.php' ); |
| 350 | $this->hide_submenu_page( 'tools.php', 'delete-blog' ); |
| 351 | |
| 352 | add_submenu_page( 'tools.php', esc_attr__( 'Marketing', 'jetpack' ), __( 'Marketing', 'jetpack' ), 'publish_posts', 'https://wordpress.com/marketing/tools/' . $this->domain, null, 0 ); |
| 353 | if ( ! $this->use_wp_admin_interface() ) { |
| 354 | add_submenu_page( 'tools.php', esc_attr__( 'Monetize', 'jetpack' ), __( 'Monetize', 'jetpack' ), 'manage_options', 'https://wordpress.com/earn/' . $this->domain, null, 1 ); |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | /** |
| 359 | * Adds Settings menu. |
| 360 | */ |
| 361 | public function add_options_menu() { |
| 362 | $submenus_to_update = array(); |
| 363 | |
| 364 | if ( self::DEFAULT_VIEW === $this->get_preferred_view( 'options-general.php' ) ) { |
| 365 | $this->hide_submenu_page( 'options-general.php', 'sharing' ); |
| 366 | } |
| 367 | |
| 368 | if ( self::DEFAULT_VIEW === $this->get_preferred_view( 'options-general.php' ) ) { |
| 369 | $submenus_to_update['options-general.php'] = 'https://wordpress.com/settings/general/' . $this->domain; |
| 370 | } |
| 371 | |
| 372 | if ( self::DEFAULT_VIEW === $this->get_preferred_view( 'options-writing.php' ) ) { |
| 373 | $submenus_to_update['options-writing.php'] = 'https://wordpress.com/settings/writing/' . $this->domain; |
| 374 | } |
| 375 | |
| 376 | if ( self::DEFAULT_VIEW === $this->get_preferred_view( 'options-reading.php' ) |
| 377 | ) { |
| 378 | $submenus_to_update['options-reading.php'] = 'https://wordpress.com/settings/reading/' . $this->domain; |
| 379 | } |
| 380 | |
| 381 | if ( self::DEFAULT_VIEW === $this->get_preferred_view( 'options-discussion.php' ) ) { |
| 382 | $submenus_to_update['options-discussion.php'] = 'https://wordpress.com/settings/discussion/' . $this->domain; |
| 383 | } |
| 384 | |
| 385 | $this->update_submenus( 'options-general.php', $submenus_to_update ); |
| 386 | |
| 387 | add_submenu_page( 'options-general.php', esc_attr__( 'Newsletter', 'jetpack' ), __( 'Newsletter', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/newsletter/' . $this->domain, null, 7 ); |
| 388 | add_submenu_page( 'options-general.php', esc_attr__( 'Podcasting', 'jetpack' ), __( 'Podcasting', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/podcasting/' . $this->domain, null, 8 ); |
| 389 | add_submenu_page( 'options-general.php', esc_attr__( 'Performance', 'jetpack' ), __( 'Performance', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/performance/' . $this->domain, null, 9 ); |
| 390 | } |
| 391 | |
| 392 | /** |
| 393 | * Create Jetpack menu. |
| 394 | * |
| 395 | * @param int $position Menu position. |
| 396 | * @param bool $separator Whether to add a separator before the menu. |
| 397 | */ |
| 398 | public function create_jetpack_menu( $position = 50, $separator = true ) { |
| 399 | if ( $separator ) { |
| 400 | $this->add_admin_menu_separator( $position, 'manage_options' ); |
| 401 | ++$position; |
| 402 | } |
| 403 | |
| 404 | $icon = ( new Logo() )->get_base64_logo(); |
| 405 | $is_menu_updated = $this->update_menu( 'jetpack', null, null, null, $icon, $position ); |
| 406 | if ( ! $is_menu_updated ) { |
| 407 | add_menu_page( esc_attr__( 'Jetpack', 'jetpack' ), __( 'Jetpack', 'jetpack' ), 'manage_options', 'jetpack', null, $icon, $position ); |
| 408 | } |
| 409 | |
| 410 | add_submenu_page( 'jetpack', esc_attr__( 'Activity Log', 'jetpack' ), __( 'Activity Log', 'jetpack' ), 'manage_options', 'https://wordpress.com/activity-log/' . $this->domain, null, 2 ); |
| 411 | add_submenu_page( 'jetpack', esc_attr__( 'Backup', 'jetpack' ), __( 'Backup', 'jetpack' ), 'manage_options', 'https://wordpress.com/backup/' . $this->domain, null, 3 ); |
| 412 | |
| 413 | if ( self::DEFAULT_VIEW === $this->get_preferred_view( 'jetpack' ) ) { |
| 414 | $this->hide_submenu_page( 'jetpack', 'jetpack#/settings' ); |
| 415 | $this->hide_submenu_page( 'jetpack', 'stats' ); |
| 416 | $this->hide_submenu_page( 'jetpack', esc_url( Redirect::get_url( 'calypso-backups' ) ) ); |
| 417 | $this->hide_submenu_page( 'jetpack', esc_url( Redirect::get_url( 'calypso-scanner' ) ) ); |
| 418 | } |
| 419 | |
| 420 | if ( ! $is_menu_updated ) { |
| 421 | // Remove the submenu auto-created by Core just to be sure that there no issues on non-admin roles. |
| 422 | remove_submenu_page( 'jetpack', 'jetpack' ); |
| 423 | } |
| 424 | } |
| 425 | |
| 426 | /** |
| 427 | * Adds Jetpack menu. |
| 428 | */ |
| 429 | public function add_jetpack_menu() { |
| 430 | $this->create_jetpack_menu(); |
| 431 | } |
| 432 | |
| 433 | /** |
| 434 | * Add the calypso /woocommerce-installation/ menu item. |
| 435 | * |
| 436 | * @param array $current_plan The site's plan if they have one. This is passed from WPcom_Admin_Menu to prevent |
| 437 | * redundant database queries. |
| 438 | */ |
| 439 | public function add_woocommerce_installation_menu( $current_plan = null ) { |
| 440 | /** |
| 441 | * Whether to show the WordPress.com WooCommerce Installation menu. |
| 442 | * |
| 443 | * @use add_filter( 'jetpack_show_wpcom_woocommerce_installation_menu', '__return_true' ); |
| 444 | * @module masterbar |
| 445 | * @since 10.3.0 |
| 446 | * @param bool $jetpack_show_wpcom_woocommerce_installation_menu Load the WordPress.com WooCommerce Installation menu item. Default to false. |
| 447 | * @param array $current_plan Data about the current site's plan. |
| 448 | */ |
| 449 | if ( apply_filters( 'jetpack_show_wpcom_woocommerce_installation_menu', false, $current_plan ) ) { |
| 450 | $this->add_admin_menu_separator( 54, 'activate_plugins' ); |
| 451 | |
| 452 | $icon_url = 'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDI0IDEwMjQiPjxwYXRoIGZpbGw9IiNhMmFhYjIiIGQ9Ik02MTIuMTkyIDQyNi4zMzZjMC02Ljg5Ni0zLjEzNi01MS42LTI4LTUxLjYtMzcuMzYgMC00Ni43MDQgNzIuMjU2LTQ2LjcwNCA4Mi42MjQgMCAzLjQwOCAzLjE1MiA1OC40OTYgMjguMDMyIDU4LjQ5NiAzNC4xOTItLjAzMiA0Ni42NzItNzIuMjg4IDQ2LjY3Mi04OS41MnptMjAyLjE5MiAwYzAtNi44OTYtMy4xNTItNTEuNi0yOC4wMzItNTEuNi0zNy4yOCAwLTQ2LjYwOCA3Mi4yNTYtNDYuNjA4IDgyLjYyNCAwIDMuNDA4IDMuMDcyIDU4LjQ5NiAyNy45NTIgNTguNDk2IDM0LjE5Mi0uMDMyIDQ2LjY4OC03Mi4yODggNDYuNjg4LTg5LjUyek0xNDEuMjk2Ljc2OGMtNjguMjI0IDAtMTIzLjUwNCA1NS40ODgtMTIzLjUwNCAxMjMuOTJ2NjUwLjcyYzAgNjguNDMyIDU1LjI5NiAxMjMuOTIgMTIzLjUwNCAxMjMuOTJoMzM5LjgwOGwxMjMuNTA0IDEyMy45MzZWODk5LjMyOGgyNzguMDQ4YzY4LjIyNCAwIDEyMy41Mi01NS40NzIgMTIzLjUyLTEyMy45MnYtNjUwLjcyYzAtNjguNDMyLTU1LjI5Ni0xMjMuOTItMTIzLjUyLTEyMy45MmgtNzQxLjM2em01MjYuODY0IDQyMi4xNmMwIDU1LjA4OC0zMS4wODggMTU0Ljg4LTEwMi42NCAxNTQuODgtNi4yMDggMC0xOC40OTYtMy42MTYtMjUuNDI0LTYuMDE2LTMyLjUxMi0xMS4xNjgtNTAuMTkyLTQ5LjY5Ni01Mi4zNTItNjYuMjU2IDAgMC0zLjA3Mi0xNy43OTItMy4wNzItNDAuNzUyIDAtMjIuOTkyIDMuMDcyLTQ1LjMyOCAzLjA3Mi00NS4zMjggMTUuNTUyLTc1LjcyOCA0My41NTItMTA2LjczNiA5Ni40NDgtMTA2LjczNiA1OS4wNzItLjAzMiA4My45NjggNTguNTI4IDgzLjk2OCAxMTAuMjA4ek00ODYuNDk2IDMwMi40YzAgMy4zOTItNDMuNTUyIDE0MS4xNjgtNDMuNTUyIDIxMy40MjR2NzUuNzEyYy0yLjU5MiAxMi4wOC00LjE2IDI0LjE0NC0yMS44MjQgMjQuMTQ0LTQ2LjYwOCAwLTg4Ljg4LTE1MS40NzItOTIuMDE2LTE2MS44NC02LjIwOCA2Ljg5Ni02Mi4yNCAxNjEuODQtOTYuNDQ4IDE2MS44NC0yNC44NjQgMC00My41NTItMTEzLjY0OC00Ni42MDgtMTIzLjkzNkMxNzYuNzA0IDQzNi42NzIgMTYwIDMzNC4yMjQgMTYwIDMyNy4zMjhjMC0yMC42NzIgMS4xNTItMzguNzM2IDI2LjA0OC0zOC43MzYgNi4yMDggMCAyMS42IDYuMDY0IDIzLjcxMiAxNy4xNjggMTEuNjQ4IDYyLjAzMiAxNi42ODggMTIwLjUxMiAyOS4xNjggMTg1Ljk2OCAxLjg1NiAyLjkyOCAxLjUwNCA3LjAwOCA0LjU2IDEwLjQzMiAzLjE1Mi0xMC4yODggNjYuOTI4LTE2OC43ODQgOTQuOTYtMTY4Ljc4NCAyMi41NDQgMCAzMC40IDQ0LjU5MiAzMy41MzYgNjEuODI0IDYuMjA4IDIwLjY1NiAxMy4wODggNTUuMjE2IDIyLjQxNiA4Mi43NTIgMC0xMy43NzYgMTIuNDgtMjAzLjEyIDY1LjM5Mi0yMDMuMTIgMTguNTkyLjAzMiAyNi43MDQgNi45MjggMjYuNzA0IDI3LjU2OHpNODcwLjMyIDQyMi45MjhjMCA1NS4wODgtMzEuMDg4IDE1NC44OC0xMDIuNjQgMTU0Ljg4LTYuMTkyIDAtMTguNDQ4LTMuNjE2LTI1LjQyNC02LjAxNi0zMi40MzItMTEuMTY4LTUwLjE3Ni00OS42OTYtNTIuMjg4LTY2LjI1NiAwIDAtMy44ODgtMTcuOTItMy44ODgtNDAuODk2czMuODg4LTQ1LjE4NCAzLjg4OC00NS4xODRjMTUuNTUyLTc1LjcyOCA0My40ODgtMTA2LjczNiA5Ni4zODQtMTA2LjczNiA1OS4xMDQtLjAzMiA4My45NjggNTguNTI4IDgzLjk2OCAxMTAuMjA4eiIvPjwvc3ZnPg=='; |
| 453 | $menu_url = 'https://wordpress.com/woocommerce-installation/' . $this->domain; |
| 454 | |
| 455 | // Only show the menu if the user has the capability to activate_plugins. |
| 456 | add_menu_page( esc_attr__( 'WooCommerce', 'jetpack' ), esc_attr__( 'WooCommerce', 'jetpack' ), 'activate_plugins', $menu_url, null, $icon_url, 55 ); |
| 457 | } |
| 458 | } |
| 459 | |
| 460 | /** |
| 461 | * AJAX handler for retrieving the upsell nudge. |
| 462 | */ |
| 463 | public function wp_ajax_upsell_nudge_jitm() { |
| 464 | check_ajax_referer( 'upsell_nudge_jitm' ); |
| 465 | |
| 466 | $nudge = $this->get_upsell_nudge(); |
| 467 | if ( ! $nudge ) { |
| 468 | wp_die(); |
| 469 | } |
| 470 | |
| 471 | $link = $nudge['link']; |
| 472 | if ( str_starts_with( $link, '/' ) ) { |
| 473 | $link = 'https://wordpress.com' . $link; |
| 474 | } |
| 475 | ?> |
| 476 | <li class="wp-not-current-submenu menu-top menu-icon-generic toplevel_page_site-notices" id="toplevel_page_site-notices"> |
| 477 | <a href="<?php echo esc_url( $link ); ?>" class="wp-not-current-submenu menu-top menu-icon-generic toplevel_page_site-notices"> |
| 478 | <div class="wp-menu-arrow"> |
| 479 | <div></div> |
| 480 | </div> |
| 481 | <div class="wp-menu-image dashicons-before dashicons-admin-generic" aria-hidden="true"><br></div> |
| 482 | <div class="wp-menu-name"> |
| 483 | <div class="upsell_banner"> |
| 484 | <div class="banner__info"> |
| 485 | <div class="banner__title"> |
| 486 | <?php echo wp_kses( $nudge['content'], array() ); ?> |
| 487 | </div> |
| 488 | </div> |
| 489 | <div class="banner__action"> |
| 490 | <button type="button" class="button"> |
| 491 | <?php echo wp_kses( $nudge['cta'], array() ); ?> |
| 492 | </button> |
| 493 | </div> |
| 494 | <?php if ( $nudge['dismissible'] ) : ?> |
| 495 | <svg xmlns="http://www.w3.org/2000/svg" data-feature_class="<?php echo esc_attr( $nudge['feature_class'] ); ?>" data-feature_id="<?php echo esc_attr( $nudge['id'] ); ?>" viewBox="0 0 24 24" class="gridicon gridicons-cross dismissible-card__close-icon" height="24" width="24"><g><path d="M18.36 19.78L12 13.41l-6.36 6.37-1.42-1.42L10.59 12 4.22 5.64l1.42-1.42L12 10.59l6.36-6.36 1.41 1.41L13.41 12l6.36 6.36z"></path></g></svg> |
| 496 | <?php endif; ?> |
| 497 | </div> |
| 498 | </div> |
| 499 | </a> |
| 500 | </li> |
| 501 | <?php |
| 502 | wp_die(); |
| 503 | } |
| 504 | |
| 505 | /** |
| 506 | * Returns the first available upsell nudge. |
| 507 | * Needs to be implemented separately for each child menu class. |
| 508 | * Empty by default. |
| 509 | * |
| 510 | * @return array |
| 511 | */ |
| 512 | public function get_upsell_nudge() { |
| 513 | return array(); |
| 514 | } |
| 515 | } |
| 516 |