PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 13.5
Jetpack – WP Security, Backup, Speed, & Growth v13.5
16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 All 501 releases
jetpack / modules / masterbar / admin-menu / load.php

load.php in Jetpack – WP Security, Backup, Speed, & Growth 13.5, at modules/masterbar/admin-menu/load.php

170 lines 5.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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'] ) && str_starts_with( 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 * Hides the Customizer menu items when the block theme is active by removing the dotcom-specific actions.
43 * They are not needed for block themes.
44 *
45 * @see https://github.com/Automattic/jetpack/pull/36017
46 */
47 function hide_customizer_menu_on_block_theme() {
48 add_action(
49 'init',
50 function () {
51 if ( wp_is_block_theme() && ! is_customize_preview() ) {
52 remove_action( 'customize_register', 'add_logotool_button', 20 );
53 remove_action( 'customize_register', 'footercredits_register', 99 );
54 remove_action( 'customize_register', 'wpcom_disable_customizer_site_icon', 20 );
55
56 if ( class_exists( '\Jetpack_Fonts' ) ) {
57 $jetpack_fonts_instance = \Jetpack_Fonts::get_instance();
58 remove_action( 'customize_register', array( $jetpack_fonts_instance, 'register_controls' ) );
59 remove_action( 'customize_register', array( $jetpack_fonts_instance, 'maybe_prepopulate_option' ), 0 );
60 }
61
62 remove_action( 'customize_register', array( 'Jetpack_Fonts_Typekit', 'maybe_override_for_advanced_mode' ), 20 );
63
64 remove_action( 'customize_register', 'Automattic\Jetpack\Dashboard_Customizations\register_css_nudge_control' );
65
66 remove_action( 'customize_register', array( 'Jetpack_Custom_CSS_Enhancements', 'customize_register' ) );
67 }
68 }
69 );
70 }
71
72 /**
73 * Gets the name of the class that customizes the admin menu.
74 *
75 * @return string Class name.
76 */
77 function get_admin_menu_class() {
78 hide_customizer_menu_on_block_theme();
79
80 // WordPress.com Atomic sites.
81 if ( ( new Host() )->is_woa_site() ) {
82
83 // DIFM Lite In Progress Atomic Sites. Uses the same menu used for domain-only sites.
84 // Ignore this check if we are in a support session.
85 $is_difm_lite_in_progress = wpcomsh_is_site_sticker_active( 'difm-lite-in-progress' );
86 $is_support_session = defined( 'WPCOM_SUPPORT_SESSION' ) && WPCOM_SUPPORT_SESSION;
87 if ( $is_difm_lite_in_progress && ! $is_support_session ) {
88 require_once __DIR__ . '/class-domain-only-admin-menu.php';
89 return Domain_Only_Admin_Menu::class;
90 }
91
92 require_once __DIR__ . '/class-atomic-admin-menu.php';
93 return Atomic_Admin_Menu::class;
94 }
95
96 // WordPress.com Simple sites.
97 if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) {
98 $blog_id = get_current_blog_id();
99
100 // Domain-only sites.
101 $blog_options = get_blog_option( $blog_id, 'options' );
102 $is_domain_only = ! empty( $blog_options['is_domain_only'] );
103 if ( $is_domain_only ) {
104 require_once __DIR__ . '/class-domain-only-admin-menu.php';
105 return Domain_Only_Admin_Menu::class;
106 }
107
108 // DIFM Lite In Progress Sites. Uses the same menu used for domain-only sites.
109 // Ignore this check if we are in a support session.
110 $is_difm_lite_in_progress = has_blog_sticker( 'difm-lite-in-progress' );
111 $is_support_session = defined( 'WPCOM_SUPPORT_SESSION' ) && WPCOM_SUPPORT_SESSION;
112 if ( $is_difm_lite_in_progress && ! $is_support_session ) {
113 require_once __DIR__ . '/class-domain-only-admin-menu.php';
114 return Domain_Only_Admin_Menu::class;
115 }
116
117 // P2 sites.
118 require_once WP_CONTENT_DIR . '/lib/wpforteams/functions.php';
119 if ( \WPForTeams\is_wpforteams_site( $blog_id ) ) {
120 require_once __DIR__ . '/class-p2-admin-menu.php';
121 return P2_Admin_Menu::class;
122 }
123
124 // Rest of simple sites.
125 require_once __DIR__ . '/class-wpcom-admin-menu.php';
126 return WPcom_Admin_Menu::class;
127 }
128
129 // Jetpack sites.
130 require_once __DIR__ . '/class-jetpack-admin-menu.php';
131 return Jetpack_Admin_Menu::class;
132 }
133
134 /**
135 * Filters the name of the class that customizes the admin menu. It should extends the `Base_Admin_Menu` class.
136 *
137 * @module masterbar
138 *
139 * @since 9.6.0
140 *
141 * @param string $admin_menu_class Class name.
142 */
143 $admin_menu_class = apply_filters( 'jetpack_admin_menu_class', get_admin_menu_class() );
144 if ( should_customize_nav( $admin_menu_class ) ) {
145 /** The admin menu singleton instance. @var Base_Admin_Menu $instance */
146 $admin_menu_class::get_instance();
147
148 /**
149 * Trigger an event when the user uses the dashboard quick switcher.
150 *
151 * @param string $screen The current screen.
152 * @param string $view The view the user choosed to go to.
153 */
154 function dashboard_quick_switcher_record_usage( $screen, $view ) {
155 require_once __DIR__ . '/class-dashboard-switcher-tracking.php';
156
157 $tracking = new Dashboard_Switcher_Tracking(
158 new Tracking( Dashboard_Switcher_Tracking::get_jetpack_tracking_product() ),
159 array( Dashboard_Switcher_Tracking::class, 'wpcom_tracks_record_event' ),
160 Dashboard_Switcher_Tracking::get_plan()
161 );
162
163 $tracking->record_switch_event( $screen, $view );
164 }
165
166 \add_action( 'jetpack_dashboard_switcher_changed_view', __NAMESPACE__ . '\dashboard_quick_switcher_record_usage', 10, 2 );
167 } else {
168 \add_filter( 'jetpack_load_admin_menu_class', '__return_false' );
169 }
170