is_api_request ) {
add_filter( 'submenu_file', array( $this, 'override_the_theme_installer' ), 10, 2 );
}
add_action(
'admin_menu',
function () {
remove_action( 'admin_menu', 'gutenberg_menu', 9 );
},
0
);
}
/**
* Dequeues unnecessary scripts.
*/
public function dequeue_scripts() {
wp_dequeue_script( 'a8c_wpcom_masterbar_overrides' ); // Initially loaded in modules/masterbar/masterbar/class-masterbar.php.
}
/**
* 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() {
parent::reregister_menu_items();
$this->add_my_home_menu();
$this->add_inbox_menu();
// Not needed outside of wp-admin.
if ( ! $this->is_api_request ) {
$this->add_browse_sites_link();
$this->add_site_card_menu();
$nudge = $this->get_upsell_nudge();
if ( $nudge ) {
parent::add_upsell_nudge( $nudge );
}
$this->add_new_site_link();
}
$this->add_beta_testing_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 ) {
// Plugins and Export on Atomic sites are always managed on WP Admin.
if ( in_array( $screen, array( 'plugins.php', 'export.php' ), true ) ) {
return self::CLASSIC_VIEW;
}
/**
* When Jetpack SSO is disabled, we need to force Calypso because it might create confusion to be redirected to WP-Admin.
* Furthermore, because we don't display the quick switcher, users having an WP-Admin interface by default won't be able to go back to the Calyso version.
*/
if ( ! \Jetpack::is_module_active( 'sso' ) ) {
return self::DEFAULT_VIEW;
}
return parent::get_preferred_view( $screen, $fallback_global_preference );
}
/**
* Adds the site switcher link if user has more than one site.
*/
public function add_browse_sites_link() {
$site_count = get_user_option( 'wpcom_site_count' );
if ( ! $site_count || $site_count < 2 ) {
return;
}
// Add the menu item.
add_menu_page( __( 'site-switcher', 'jetpack' ), __( 'Browse sites', 'jetpack' ), 'read', 'https://wordpress.com/home', null, 'dashicons-arrow-left-alt2', 0 );
add_filter( 'add_menu_classes', array( $this, 'set_browse_sites_link_class' ) );
}
/**
* Adds a custom element class for Site Switcher menu item.
*
* @param array $menu Associative array of administration menu items.
*
* @return array
*/
public function set_browse_sites_link_class( array $menu ) {
foreach ( $menu as $key => $menu_item ) {
if ( 'site-switcher' !== $menu_item[3] ) {
continue;
}
$menu[ $key ][4] = add_cssclass( 'site-switcher', $menu_item[4] );
break;
}
return $menu;
}
/**
* Adds a link to the menu to create a new site.
*/
public function add_new_site_link() {
$site_count = get_user_option( 'wpcom_site_count' );
if ( $site_count && $site_count > 1 ) {
return;
}
$this->add_admin_menu_separator();
add_menu_page( __( 'Add New Site', 'jetpack' ), __( 'Add New Site', 'jetpack' ), 'read', 'https://wordpress.com/start?ref=calypso-sidebar', null, 'dashicons-plus-alt' );
}
/**
* Adds site card component.
*/
public function add_site_card_menu() {
$default = 'data:image/svg+xml,' . rawurlencode( '' );
$icon = get_site_icon_url( 32, $default );
$blog_name = get_option( 'blogname' ) !== '' ? get_option( 'blogname' ) : $this->domain;
$is_coming_soon = ( function_exists( 'site_is_coming_soon' ) && site_is_coming_soon() ) || (bool) get_option( 'wpcom_public_coming_soon' );
$badge = '';
if ( ( function_exists( 'site_is_private' ) && site_is_private() ) || $is_coming_soon ) {
$badge .= sprintf(
'%s',
$is_coming_soon ? esc_html__( 'Coming Soon', 'jetpack' ) : esc_html__( 'Private', 'jetpack' )
);
}
$site_card = '
%1$s
%2$s
%3$s
';
$site_card = sprintf(
$site_card,
$blog_name,
$this->domain,
$badge
);
add_menu_page( 'site-card', $site_card, 'read', get_home_url(), null, $icon, 1 );
add_filter( 'add_menu_classes', array( $this, 'set_site_card_menu_class' ) );
}
/**
* Adds a custom element class and id for Site Card's menu item.
*
* @param array $menu Associative array of administration menu items.
*
* @return array
*/
public function set_site_card_menu_class( array $menu ) {
foreach ( $menu as $key => $menu_item ) {
if ( 'site-card' !== $menu_item[3] ) {
continue;
}
$classes = ' toplevel_page_site-card';
// webclip.png is the default on WoA sites. Anything other than that means we have a custom site icon.
if ( has_site_icon() && 'https://s0.wp.com/i/webclip.png' !== get_site_icon_url( 512 ) ) {
$classes .= ' has-site-icon';
}
$menu[ $key ][4] = $menu_item[4] . $classes;
$menu[ $key ][5] = 'toplevel_page_site_card';
break;
}
return $menu;
}
/**
* Returns the first available upsell nudge.
*
* @return array
*/
public function get_upsell_nudge() {
$jitm = \Automattic\Jetpack\JITMS\JITM::get_instance();
$message_path = 'calypso:sites:sidebar_notice';
$message = $jitm->get_messages( $message_path, wp_json_encode( array( 'message_path' => $message_path ) ), false );
if ( isset( $message[0] ) ) {
$message = $message[0];
return array(
'content' => $message->content->message,
'cta' => $message->CTA->message, // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase
'link' => $message->CTA->link, // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase
'tracks_impression_event_name' => $message->tracks->display->name,
'tracks_impression_cta_name' => $message->tracks->display->props->cta_name,
'tracks_click_event_name' => $message->tracks->click->name,
'tracks_click_cta_name' => $message->tracks->click->props->cta_name,
);
}
}
/**
* Adds Upgrades menu.
*
* @param string $plan The current WPCOM plan of the blog.
*/
public function add_upgrades_menu( $plan = null ) {
$products = Jetpack_Plan::get();
if ( array_key_exists( 'product_name_short', $products ) ) {
$plan = $products['product_name_short'];
}
parent::add_upgrades_menu( $plan );
$last_upgrade_submenu_position = $this->get_submenu_item_count( 'paid-upgrades.php' );
add_submenu_page( 'paid-upgrades.php', __( 'Domains', 'jetpack' ), __( 'Domains', 'jetpack' ), 'manage_options', 'https://wordpress.com/domains/manage/' . $this->domain, null, $last_upgrade_submenu_position - 1 );
/**
* Whether to show the WordPress.com Emails submenu under the main Upgrades menu.
*
* @use add_filter( 'jetpack_show_wpcom_upgrades_email_menu', '__return_true' );
* @module masterbar
*
* @since 9.7.0
*
* @param bool $show_wpcom_upgrades_email_menu Load the WordPress.com Emails submenu item. Default to false.
*/
if ( apply_filters( 'jetpack_show_wpcom_upgrades_email_menu', false ) ) {
add_submenu_page( 'paid-upgrades.php', __( 'Emails', 'jetpack' ), __( 'Emails', 'jetpack' ), 'manage_options', 'https://wordpress.com/email/' . $this->domain, null, $last_upgrade_submenu_position );
}
}
/**
* Adds Settings menu.
*/
public function add_options_menu() {
parent::add_options_menu();
if ( Jetpack_Plan::supports( 'security-settings' ) ) {
add_submenu_page(
'options-general.php',
esc_attr__( 'Security', 'jetpack' ),
__( 'Security', 'jetpack' ),
'manage_options',
'https://wordpress.com/settings/security/' . $this->domain,
null,
2
);
}
add_submenu_page( 'options-general.php', esc_attr__( 'Hosting Configuration', 'jetpack' ), __( 'Hosting Configuration', 'jetpack' ), 'manage_options', 'https://wordpress.com/hosting-config/' . $this->domain, null, 11 );
add_submenu_page( 'options-general.php', esc_attr__( 'Jetpack', 'jetpack' ), __( 'Jetpack', 'jetpack' ), 'manage_options', 'https://wordpress.com/settings/jetpack/' . $this->domain, null, 12 );
// Page Optimize is active by default on all Atomic sites and registers a Settings > Performance submenu which
// would conflict with our own Settings > Performance that links to Calypso, so we hide it it since the Calypso
// performance settings already have a link to Page Optimize settings page.
$this->hide_submenu_page( 'options-general.php', 'page-optimize' );
}
/**
* Override the global submenu_file for theme-install.php page so the WP Admin menu item gets highlighted correctly.
*
* @param string $submenu_file The current pages $submenu_file global variable value.
* @return string | null
*/
public function override_the_theme_installer( $submenu_file ) {
global $pagenow;
if ( 'themes.php' === $submenu_file && 'theme-install.php' === $pagenow ) {
return null;
}
return $submenu_file;
}
/**
* Also remove the Gutenberg plugin menu.
*/
public function add_gutenberg_menus() {
// Always remove the Gutenberg menu.
remove_menu_page( 'gutenberg' );
parent::add_gutenberg_menus();
}
/**
* Saves the sidebar state ( expanded / collapsed ) via an ajax request.
*/
public function ajax_sidebar_state() {
$expanded = filter_var( $_REQUEST['expanded'], FILTER_VALIDATE_BOOLEAN ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended
Client::wpcom_json_api_request_as_user(
'/me/preferences',
'2',
array(
'method' => 'POST',
),
(object) array( 'calypso_preferences' => (object) array( 'sidebarCollapsed' => ! $expanded ) ),
'wpcom'
);
wp_die();
}
}