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-dashboard-switcher-tracking.php
2 years ago
class-domain-only-admin-menu.php
2 years ago
class-jetpack-admin-menu.php
2 years ago
class-p2-admin-menu.php
2 years ago
class-wpcom-admin-menu.php
2 years ago
class-wpcom-email-subscription-checker.php
2 years ago
dashicon-set.php
2 years ago
globe-icon.svg
2 years ago
load.php
2 years ago
menu-mappings.php
2 years ago
class-jetpack-admin-menu.php
227 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Jetpack Admin Menu file. |
| 4 | * |
| 5 | * @deprecated 13.7 Use Automattic\Jetpack\Masterbar\Jetpack_Admin_Menu instead. |
| 6 | * |
| 7 | * @package Jetpack |
| 8 | */ |
| 9 | |
| 10 | namespace Automattic\Jetpack\Dashboard_Customizations; |
| 11 | |
| 12 | use Automattic\Jetpack\Masterbar\Jetpack_Admin_Menu as Masterbar_Jetpack_Admin_Menu; |
| 13 | |
| 14 | /** |
| 15 | * Class Jetpack_Admin_Menu. |
| 16 | */ |
| 17 | class Jetpack_Admin_Menu extends Masterbar_Jetpack_Admin_Menu { |
| 18 | |
| 19 | /** |
| 20 | * Ensure that instantiating this class will trigger a deprecation warning. |
| 21 | * |
| 22 | * @since 13.7 |
| 23 | */ |
| 24 | public function __construct() { |
| 25 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::__construct' ); |
| 26 | parent::__construct(); |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * Determines whether the current locale is right-to-left (RTL). |
| 31 | * |
| 32 | * Performs the check against the current locale set on the WordPress.com's account settings. |
| 33 | * See `Masterbar::__construct` in `modules/masterbar/masterbar/class-masterbar.php`. |
| 34 | * |
| 35 | * @deprecated 13.7 |
| 36 | */ |
| 37 | public function is_rtl() { |
| 38 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::is_rtl' ); |
| 39 | return parent::is_rtl(); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Create the desired menu output. |
| 44 | * |
| 45 | * @deprecated 13.7 |
| 46 | */ |
| 47 | public function reregister_menu_items() { |
| 48 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::reregister_menu_items' ); |
| 49 | parent::reregister_menu_items(); |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Get the preferred view for the given screen. |
| 54 | * |
| 55 | * @deprecated 13.7 |
| 56 | * |
| 57 | * @param string $screen Screen identifier. |
| 58 | * @param bool $fallback_global_preference (Optional) Whether the global preference for all screens should be used |
| 59 | * as fallback if there is no specific preference for the given screen. |
| 60 | * Default: true. |
| 61 | * @return string |
| 62 | */ |
| 63 | public function get_preferred_view( $screen, $fallback_global_preference = true ) { |
| 64 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::get_preferred_view' ); |
| 65 | return parent::get_preferred_view( $screen, $fallback_global_preference ); |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Get the Calypso or wp-admin link to CPT page. |
| 70 | * |
| 71 | * @deprecated 13.7 |
| 72 | * |
| 73 | * @param object $ptype_obj The post type object. |
| 74 | * @return string The link to Calypso if SSO is enabled and the post_type |
| 75 | * supports rest or to WP Admin if SSO is disabled. |
| 76 | */ |
| 77 | public function get_cpt_menu_link( $ptype_obj ) { |
| 78 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::get_cpt_menu_link' ); |
| 79 | return parent::get_cpt_menu_link( $ptype_obj ); |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * Adds Posts menu. |
| 84 | * |
| 85 | * @deprecated 13.7 |
| 86 | */ |
| 87 | public function add_posts_menu() { |
| 88 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_posts_menu' ); |
| 89 | parent::add_posts_menu(); |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Adds Media menu. |
| 94 | * |
| 95 | * @deprecated 13.7 |
| 96 | */ |
| 97 | public function add_media_menu() { |
| 98 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_media_menu' ); |
| 99 | parent::add_media_menu(); |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * Adds Page menu. |
| 104 | * |
| 105 | * @deprecated 13.7 |
| 106 | */ |
| 107 | public function add_page_menu() { |
| 108 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_page_menu' ); |
| 109 | parent::add_page_menu(); |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Adds a custom post type menu. |
| 114 | * |
| 115 | * @deprecated 13.7 |
| 116 | * |
| 117 | * @param string $post_type Custom post type. |
| 118 | * @param int|null $position Optional. Position where to display the menu item. Default null. |
| 119 | */ |
| 120 | public function add_custom_post_type_menu( $post_type, $position = null ) { |
| 121 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_custom_post_type_menu' ); |
| 122 | parent::add_custom_post_type_menu( $post_type, $position ); |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * Adds Comments menu. |
| 127 | * |
| 128 | * @deprecated 13.7 |
| 129 | */ |
| 130 | public function add_comments_menu() { |
| 131 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_comments_menu' ); |
| 132 | parent::add_comments_menu(); |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * Adds Feedback menu. |
| 137 | * |
| 138 | * @deprecated 13.7 |
| 139 | */ |
| 140 | public function add_feedback_menu() { |
| 141 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_feedback_menu' ); |
| 142 | parent::add_feedback_menu(); |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * Adds CPT menu items |
| 147 | * |
| 148 | * @deprecated 13.7 |
| 149 | */ |
| 150 | public function add_cpt_menus() { |
| 151 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_cpt_menus' ); |
| 152 | parent::add_cpt_menus(); |
| 153 | } |
| 154 | |
| 155 | /** |
| 156 | * Adds Jetpack menu. |
| 157 | * |
| 158 | * @deprecated 13.7 |
| 159 | */ |
| 160 | public function add_jetpack_menu() { |
| 161 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_jetpack_menu' ); |
| 162 | parent::add_jetpack_menu(); |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * Adds Appearance menu. |
| 167 | * |
| 168 | * @deprecated 13.7 |
| 169 | * |
| 170 | * @return string The Customizer URL. |
| 171 | */ |
| 172 | public function add_appearance_menu() { |
| 173 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_appearance_menu' ); |
| 174 | return parent::add_appearance_menu(); |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * Adds Plugins menu. |
| 179 | * |
| 180 | * @deprecated 13.7 |
| 181 | */ |
| 182 | public function add_plugins_menu() { |
| 183 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_plugins_menu' ); |
| 184 | parent::add_plugins_menu(); |
| 185 | } |
| 186 | |
| 187 | /** |
| 188 | * Adds Users menu. |
| 189 | * |
| 190 | * @deprecated 13.7 |
| 191 | */ |
| 192 | public function add_users_menu() { |
| 193 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_users_menu' ); |
| 194 | parent::add_users_menu(); |
| 195 | } |
| 196 | |
| 197 | /** |
| 198 | * Adds Tools menu. |
| 199 | * |
| 200 | * @deprecated 13.7 |
| 201 | */ |
| 202 | public function add_tools_menu() { |
| 203 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_tools_menu' ); |
| 204 | parent::add_tools_menu(); |
| 205 | } |
| 206 | |
| 207 | /** |
| 208 | * Adds Settings menu. |
| 209 | * |
| 210 | * @deprecated 13.7 |
| 211 | */ |
| 212 | public function add_options_menu() { |
| 213 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_options_menu' ); |
| 214 | parent::add_options_menu(); |
| 215 | } |
| 216 | |
| 217 | /** |
| 218 | * Adds WP Admin menu. |
| 219 | * |
| 220 | * @deprecated 13.7 |
| 221 | */ |
| 222 | public function add_wp_admin_menu() { |
| 223 | _deprecated_function( __METHOD__, 'jetpack-13.7', 'Automattic\\Jetpack\\Masterbar\\Jetpack_Admin_Menu::add_wp_admin_menu' ); |
| 224 | parent::add_wp_admin_menu(); |
| 225 | } |
| 226 | } |
| 227 |