| 1 |
<?php |
| 2 |
/** |
| 3 |
* Admin Menu loader. |
| 4 |
* |
| 5 |
* @package Jetpack |
| 6 |
*/ |
| 7 |
|
| 8 |
namespace Automattic\Jetpack\Dashboard_Customizations; |
| 9 |
|
| 10 |
use Automattic\Jetpack\Status\Host; |
| 11 |
use Automattic\Jetpack\Tracking; |
| 12 |
|
| 13 |
/** |
| 14 |
* Checks whether the navigation customizations should be performed for the given class. |
| 15 |
* |
| 16 |
* @param string $admin_menu_class Class name. |
| 17 |
* |
| 18 |
* @return bool |
| 19 |
*/ |
| 20 |
function should_customize_nav( $admin_menu_class ) { |
| 21 |
// Make sure the class extends the base admin menu class. |
| 22 |
if ( ! is_subclass_of( $admin_menu_class, Base_Admin_Menu::class ) ) { |
| 23 |
return false; |
| 24 |
} |
| 25 |
|
| 26 |
$is_api_request = defined( 'REST_REQUEST' ) && REST_REQUEST || isset( $_SERVER['REQUEST_URI'] ) && 0 === strpos( filter_var( wp_unslash( $_SERVER['REQUEST_URI'] ) ), '/?rest_route=%2Fwpcom%2Fv2%2Fadmin-menu' ); |
| 27 |
|
| 28 |
// No nav customizations on WP Admin of Atomic sites when SSO is disabled. |
| 29 |
if ( is_a( $admin_menu_class, Atomic_Admin_Menu::class, true ) && ! $is_api_request && ! \Jetpack::is_module_active( 'sso' ) ) { |
| 30 |
return false; |
| 31 |
} |
| 32 |
|
| 33 |
// No nav customizations on WP Admin of Jetpack sites. |
| 34 |
if ( is_a( $admin_menu_class, Jetpack_Admin_Menu::class, true ) && ! $is_api_request ) { |
| 35 |
return false; |
| 36 |
} |
| 37 |
|
| 38 |
return true; |
| 39 |
} |
| 40 |
|
| 41 |
/** |
| 42 |
* Gets the name of the class that customizes the admin menu. |
| 43 |
* |
| 44 |
* @return string Class name. |
| 45 |
*/ |
| 46 |
function get_admin_menu_class() { |
| 47 |
// WordPress.com Atomic sites. |
| 48 |
if ( ( new Host() )->is_woa_site() ) { |
| 49 |
|
| 50 |
// DIFM Lite In Progress Atomic Sites. Uses the same menu used for domain-only sites. |
| 51 |
// Ignore this check if we are in a support session. |
| 52 |
$is_difm_lite_in_progress = wpcomsh_is_site_sticker_active( 'difm-lite-in-progress' ); |
| 53 |
$is_support_session = defined( 'WPCOM_SUPPORT_SESSION' ) && WPCOM_SUPPORT_SESSION; |
| 54 |
if ( $is_difm_lite_in_progress && ! $is_support_session ) { |
| 55 |
require_once __DIR__ . '/class-domain-only-admin-menu.php'; |
| 56 |
return Domain_Only_Admin_Menu::class; |
| 57 |
} |
| 58 |
|
| 59 |
require_once __DIR__ . '/class-atomic-admin-menu.php'; |
| 60 |
return Atomic_Admin_Menu::class; |
| 61 |
} |
| 62 |
|
| 63 |
// WordPress.com Simple sites. |
| 64 |
if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { |
| 65 |
$blog_id = get_current_blog_id(); |
| 66 |
|
| 67 |
// Domain-only sites. |
| 68 |
$blog_options = get_blog_option( $blog_id, 'options' ); |
| 69 |
$is_domain_only = ! empty( $blog_options['is_domain_only'] ); |
| 70 |
if ( $is_domain_only ) { |
| 71 |
require_once __DIR__ . '/class-domain-only-admin-menu.php'; |
| 72 |
return Domain_Only_Admin_Menu::class; |
| 73 |
} |
| 74 |
|
| 75 |
// DIFM Lite In Progress Sites. Uses the same menu used for domain-only sites. |
| 76 |
// Ignore this check if we are in a support session. |
| 77 |
$is_difm_lite_in_progress = has_blog_sticker( 'difm-lite-in-progress' ); |
| 78 |
$is_support_session = defined( 'WPCOM_SUPPORT_SESSION' ) && WPCOM_SUPPORT_SESSION; |
| 79 |
if ( $is_difm_lite_in_progress && ! $is_support_session ) { |
| 80 |
require_once __DIR__ . '/class-domain-only-admin-menu.php'; |
| 81 |
return Domain_Only_Admin_Menu::class; |
| 82 |
} |
| 83 |
|
| 84 |
// P2 sites. |
| 85 |
require_once WP_CONTENT_DIR . '/lib/wpforteams/functions.php'; |
| 86 |
if ( \WPForTeams\is_wpforteams_site( $blog_id ) ) { |
| 87 |
require_once __DIR__ . '/class-p2-admin-menu.php'; |
| 88 |
return P2_Admin_Menu::class; |
| 89 |
} |
| 90 |
|
| 91 |
// Rest of simple sites. |
| 92 |
require_once __DIR__ . '/class-wpcom-admin-menu.php'; |
| 93 |
return WPcom_Admin_Menu::class; |
| 94 |
} |
| 95 |
|
| 96 |
// Jetpack sites. |
| 97 |
require_once __DIR__ . '/class-jetpack-admin-menu.php'; |
| 98 |
return Jetpack_Admin_Menu::class; |
| 99 |
} |
| 100 |
|
| 101 |
/** |
| 102 |
* Filters the name of the class that customizes the admin menu. It should extends the `Base_Admin_Menu` class. |
| 103 |
* |
| 104 |
* @module masterbar |
| 105 |
* |
| 106 |
* @since 9.6.0 |
| 107 |
* |
| 108 |
* @param string $admin_menu_class Class name. |
| 109 |
*/ |
| 110 |
$admin_menu_class = apply_filters( 'jetpack_admin_menu_class', get_admin_menu_class() ); |
| 111 |
if ( should_customize_nav( $admin_menu_class ) ) { |
| 112 |
/** The admin menu singleton instance. @var Base_Admin_Menu $instance */ |
| 113 |
$admin_menu_class::get_instance(); |
| 114 |
|
| 115 |
/** |
| 116 |
* Trigger an event when the user uses the dashboard quick switcher. |
| 117 |
* |
| 118 |
* @param string $screen The current screen. |
| 119 |
* @param string $view The view the user choosed to go to. |
| 120 |
*/ |
| 121 |
function dashboard_quick_switcher_record_usage( $screen, $view ) { |
| 122 |
require_once __DIR__ . '/class-dashboard-switcher-tracking.php'; |
| 123 |
|
| 124 |
$tracking = new Dashboard_Switcher_Tracking( |
| 125 |
new Tracking( Dashboard_Switcher_Tracking::get_jetpack_tracking_product() ), |
| 126 |
array( Dashboard_Switcher_Tracking::class, 'wpcom_tracks_record_event' ), |
| 127 |
Dashboard_Switcher_Tracking::get_plan() |
| 128 |
); |
| 129 |
|
| 130 |
$tracking->record_switch_event( $screen, $view ); |
| 131 |
} |
| 132 |
|
| 133 |
\add_action( 'jetpack_dashboard_switcher_changed_view', __NAMESPACE__ . '\dashboard_quick_switcher_record_usage', 10, 2 ); |
| 134 |
} else { |
| 135 |
\add_filter( 'jetpack_load_admin_menu_class', '__return_false' ); |
| 136 |
} |
| 137 |
|