'capability_here' * To add a page to the network admin (wp-admin/network), use: 'network_admin_menu' => 'capability_here' * To add a page to the user (wp-admin/user) admin, use: 'user_admin_menu' => 'capability_here' * * @since 2.0.0 * @var array */ protected $supported_panels = [ 'admin_menu' => 'exist', 'user_admin_menu' => 'exist', ]; /** * The current customer instance. * * @since 2.0.0 * @var \WP_Ultimo\Models\Customer */ protected $customer; /** * The current site instance. * * @since 2.2.0 * @var \WP_Ultimo\Models\Site */ public $current_site; /** * The current membership instance. * * @since 2.2.0 * @var \WP_Ultimo\Models\Membership|false */ public $current_membership; /** * Checks if we need to add this page. * * @since 2.0.0 */ public function __construct() { $this->current_site = wu_get_current_site(); $this->current_membership = $this->current_site->get_membership(); $this->register_page_settings(); if ($this->current_site->get_type() === 'customer_owned') { parent::__construct(); add_action('admin_menu', [$this, 'unset_default_my_sites_menu']); add_action('admin_bar_menu', [$this, 'change_my_sites_link'], 90); add_action('current_screen', [$this, 'force_screen_options']); } } /** * Loads the current site and membership. * * @since 1.8.2 * @return void */ public function page_loaded(): void { $this->customer = wu_get_current_customer(); } /** * Allow child classes to add hooks to be run once the page is loaded. * * @see https://codex.wordpress.org/Plugin_API/Action_Reference/load-(page) * @since 1.8.2 * @return void */ public function hooks() {} /** * Remove the default my sites link. * * @since 2.0.0 * @return void */ public function unset_default_my_sites_menu(): void { global $submenu; unset($submenu['index.php'][5]); } /** * Update the my sites link on the top-bar. * * @since 2.0.0 * * @param object $wp_admin_bar The admin bar object. * @return void */ public function change_my_sites_link($wp_admin_bar): void { $my_sites = $wp_admin_bar->get_node('my-sites'); if (empty($my_sites)) { return; } $args = [ 'page' => 'sites', ]; $my_sites->href = add_query_arg($args, admin_url('admin.php')); $wp_admin_bar->add_node($my_sites); } /** * Force the screen options so our customize options show up. * * @since 2.0.0 * @return void */ public function force_screen_options(): void { if (get_current_screen()->id !== 'toplevel_page_sites') { return; } // Forces Screen options so we can add our links. add_screen_option( 'wu_fix', [ 'option' => 'test', 'value' => true, ] ); } /** * Allow child classes to add screen options; Useful for pages that have list tables. * * @since 1.8.2 * @return void */ public function screen_options() {} /** * Allow child classes to register widgets, if they need them. * * @since 1.8.2 * @return void */ public function register_widgets(): void { \WP_Ultimo\UI\Login_Form_Element::get_instance()->as_inline_content(get_current_screen()->id, 'wu_dash_before_metaboxes'); \WP_Ultimo\UI\Simple_Text_Element::get_instance()->as_inline_content(get_current_screen()->id, 'wu_dash_before_metaboxes'); \WP_Ultimo\UI\My_Sites_Element::get_instance()->as_inline_content(get_current_screen()->id, 'wu_dash_before_metaboxes'); } /** * Returns the title of the page. * * @since 2.0.0 * @return string Title of the page. */ public function get_title() { return __('My Sites', 'wp-ultimo'); } /** * Returns the title of menu for this page. * * @since 2.0.0 * @return string Menu label of the page. */ public function get_menu_title() { return __('My Sites', 'wp-ultimo'); } /** * Allows admins to rename the sub-menu (first item) for a top-level page. * * @since 2.0.0 * @return string False to use the title menu or string with sub-menu title. */ public function get_submenu_title() { return __('My Sites', 'wp-ultimo'); } /** * Every child class should implement the output method to display the contents of the page. * * @since 1.8.2 * @return void */ public function output(): void { /* * Renders the base edit page layout, with the columns and everything else =) */ wu_get_template( 'base/dash', [ 'screen' => get_current_screen(), 'page' => $this, 'has_full_position' => false, ] ); } }