admin-menu-rtl.css
2 years ago
admin-menu-rtl.min.css
2 years ago
admin-menu.css
2 years ago
admin-menu.js
3 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
3 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
3 years ago
menu-mappings.php
3 years ago
class-p2-admin-menu.php
201 lines
| 1 | <?php |
| 2 | /** |
| 3 | * P2 Admin Menu file. |
| 4 | * |
| 5 | * @package Jetpack |
| 6 | */ |
| 7 | |
| 8 | namespace Automattic\Jetpack\Dashboard_Customizations; |
| 9 | |
| 10 | require_once __DIR__ . '/class-wpcom-admin-menu.php'; |
| 11 | |
| 12 | /** |
| 13 | * Class P2_Admin_Menu. |
| 14 | */ |
| 15 | class P2_Admin_Menu extends WPcom_Admin_Menu { |
| 16 | |
| 17 | /** |
| 18 | * Slug for the "Appearance" menu item. |
| 19 | * |
| 20 | * @var string |
| 21 | */ |
| 22 | private $appearance_slug = 'themes.php'; |
| 23 | |
| 24 | /** |
| 25 | * Slug for the "Jetpack" menu item. |
| 26 | * |
| 27 | * @var string |
| 28 | */ |
| 29 | private $jetpack_slug = 'jetpack'; |
| 30 | |
| 31 | /** |
| 32 | * Slug for the "Upgrades" menu item. |
| 33 | * |
| 34 | * @var string |
| 35 | */ |
| 36 | private $upgrades_slug = 'paid-upgrades.php'; |
| 37 | |
| 38 | /** |
| 39 | * Slug for the "Plugins" menu item. |
| 40 | * |
| 41 | * @var string |
| 42 | */ |
| 43 | private $plugins_slug = 'plugins.php'; |
| 44 | |
| 45 | /** |
| 46 | * Slug for the "Tools" menu item. |
| 47 | * |
| 48 | * @var string |
| 49 | */ |
| 50 | private $tools_slug = 'tools.php'; |
| 51 | |
| 52 | /** |
| 53 | * Whether or not the P2 is a hub. |
| 54 | * |
| 55 | * @var bool |
| 56 | */ |
| 57 | private $is_hub = false; |
| 58 | |
| 59 | /** |
| 60 | * Whether or not the P2 has a paid plan. |
| 61 | * |
| 62 | * @var bool |
| 63 | */ |
| 64 | private $is_paid = false; |
| 65 | |
| 66 | /** |
| 67 | * P2_Admin_Menu constructor. |
| 68 | */ |
| 69 | protected function __construct() { |
| 70 | parent::__construct(); |
| 71 | |
| 72 | if ( |
| 73 | defined( 'IS_WPCOM' ) && IS_WPCOM && |
| 74 | function_exists( 'require_lib' ) |
| 75 | ) { |
| 76 | require_lib( 'wpforteams' ); |
| 77 | |
| 78 | $current_blog_id = get_current_blog_id(); |
| 79 | $this->is_hub = \WPForTeams\Workspace\is_workspace_hub( $current_blog_id ); |
| 80 | $this->is_paid = \WPForTeams\has_p2_plus_plan( \WPForTeams\Workspace\get_hub_blog_id_from_blog_id( $current_blog_id ) ); |
| 81 | } |
| 82 | // Appearance -> AMP. This needs to be called here in the constructor. |
| 83 | // Running it from reregister_menu_items is not early enough. |
| 84 | remove_action( 'admin_menu', 'amp_add_customizer_link' ); |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Create the desired menu output. |
| 89 | */ |
| 90 | public function reregister_menu_items() { |
| 91 | parent::reregister_menu_items(); |
| 92 | |
| 93 | if ( ! $this->is_hub ) { |
| 94 | $this->remove_menus_for_p2_space(); |
| 95 | } else { |
| 96 | $this->remove_menus_for_hub(); |
| 97 | } |
| 98 | |
| 99 | $this->remove_menus_for_all_p2s(); |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * Remove menu items that are not applicable for P2 workspace sites. |
| 104 | */ |
| 105 | private function remove_menus_for_p2_space() { |
| 106 | // Non-hub P2s can't have plans at all. |
| 107 | remove_menu_page( $this->upgrades_slug ); |
| 108 | // Jetpack -> Backup. |
| 109 | remove_submenu_page( $this->jetpack_slug, 'https://wordpress.com/backup/' . $this->domain ); |
| 110 | // Appearance -> Themes. |
| 111 | remove_submenu_page( $this->appearance_slug, 'https://wordpress.com/themes/' . $this->domain ); |
| 112 | // Appearance -> Additional CSS. |
| 113 | $customize_custom_css_url = add_query_arg( |
| 114 | array( 'autofocus' => array( 'section' => 'css_nudge' ) ), |
| 115 | 'https://wordpress.com/customize/' . $this->domain |
| 116 | ); |
| 117 | remove_submenu_page( $this->appearance_slug, $customize_custom_css_url ); |
| 118 | |
| 119 | // Tools |
| 120 | remove_submenu_page( $this->tools_slug, 'https://wordpress.com/marketing/tools/' . $this->domain ); |
| 121 | remove_submenu_page( $this->tools_slug, 'https://wordpress.com/earn/' . $this->domain ); |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Remove menu items that are not applicable for P2 hubs. |
| 126 | */ |
| 127 | private function remove_menus_for_hub() { |
| 128 | // Hubs can have plans, but not domain and email products. |
| 129 | remove_submenu_page( $this->upgrades_slug, 'https://wordpress.com/domains/manage/' . $this->domain ); |
| 130 | remove_submenu_page( $this->upgrades_slug, 'https://wordpress.com/email/' . $this->domain ); |
| 131 | // Stats. |
| 132 | remove_menu_page( 'https://wordpress.com/stats/day/' . $this->domain ); |
| 133 | // Hide posts. |
| 134 | remove_menu_page( 'edit.php' ); |
| 135 | // Hide pages. |
| 136 | remove_menu_page( 'edit.php?post_type=page' ); |
| 137 | // Hide media. |
| 138 | remove_menu_page( 'https://wordpress.com/media/' . $this->domain ); |
| 139 | // Hide comments. |
| 140 | remove_menu_page( 'https://wordpress.com/comments/all/' . $this->domain ); |
| 141 | // Hide appearance. |
| 142 | remove_menu_page( $this->appearance_slug ); |
| 143 | // Tools. |
| 144 | remove_submenu_page( $this->tools_slug, 'https://wordpress.com/marketing/tools/' . $this->domain ); |
| 145 | remove_submenu_page( $this->tools_slug, 'https://wordpress.com/earn/' . $this->domain ); |
| 146 | remove_submenu_page( $this->tools_slug, 'https://wordpress.com/import/' . $this->domain ); |
| 147 | remove_submenu_page( $this->tools_slug, 'https://wordpress.com/export/' . $this->domain ); |
| 148 | add_submenu_page( $this->tools_slug, __( 'Integrations', 'jetpack' ), __( 'Integrations', 'jetpack' ), 'manage_options', 'https://wordpress.com/marketing/connections/' . $this->domain, null, 0 ); |
| 149 | // Hide settings. |
| 150 | remove_submenu_page( 'options-general.php', 'options-reading.php' ); |
| 151 | remove_submenu_page( 'options-general.php', 'options-writing.php' ); |
| 152 | remove_submenu_page( 'options-general.php', 'options-discussion.php' ); |
| 153 | } |
| 154 | |
| 155 | /** |
| 156 | * Remove menu items that are not applicable for all P2s. |
| 157 | */ |
| 158 | private function remove_menus_for_all_p2s() { |
| 159 | // Remove Jetpack menu item. |
| 160 | remove_menu_page( $this->jetpack_slug ); |
| 161 | |
| 162 | // The following menu items are hidden for both hubs and P2 sites. |
| 163 | remove_menu_page( 'link-manager.php' ); |
| 164 | remove_menu_page( 'feedback' ); |
| 165 | remove_menu_page( $this->plugins_slug ); |
| 166 | remove_menu_page( 'https://wordpress.com/plugins/' . $this->domain ); |
| 167 | remove_menu_page( 'https://wordpress.com/inbox/' . $this->domain ); |
| 168 | |
| 169 | remove_submenu_page( 'https://wordpress.com/settings/general/' . $this->domain, 'sharing' ); |
| 170 | remove_submenu_page( 'https://wordpress.com/settings/general/' . $this->domain, 'polls&action=options' ); |
| 171 | remove_submenu_page( 'https://wordpress.com/settings/general/' . $this->domain, 'ratings&action=options' ); |
| 172 | remove_submenu_page( |
| 173 | 'options-general.php', |
| 174 | 'https://wordpress.com/hosting-config/' . $this->domain |
| 175 | ); |
| 176 | remove_submenu_page( |
| 177 | 'https://wordpress.com/settings/general/' . $this->domain, |
| 178 | 'https://wordpress.com/marketing/sharing-buttons/' . $this->domain |
| 179 | ); |
| 180 | |
| 181 | /** This action is documented in `wp-content/plugins/p2-editor/classes/p2-editor-admin.php` */ |
| 182 | if ( apply_filters( 'p2tenberg_admin_patterns', apply_filters( 'p2editor_admin_patterns', true ) ) !== true ) { |
| 183 | remove_menu_page( 'edit.php?post_type=p2_pattern' ); |
| 184 | } |
| 185 | remove_submenu_page( |
| 186 | 'edit.php?post_type=p2_pattern', |
| 187 | 'edit-tags.php?taxonomy=post_tag&post_type=p2_pattern' |
| 188 | ); |
| 189 | |
| 190 | // Hide performance settings. |
| 191 | remove_submenu_page( 'options-general.php', 'https://wordpress.com/settings/performance/' . $this->domain ); |
| 192 | } |
| 193 | |
| 194 | /** |
| 195 | * Override, don't add the woocommerce installation menu on any p2s. |
| 196 | * |
| 197 | * @param array|null $current_plan The site's plan. |
| 198 | */ |
| 199 | public function add_woocommerce_installation_menu( $current_plan = null ) {} // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
| 200 | } |
| 201 |