PATH:
home
/
letacommog
/
letacommunication
/
wp-content
/
plugins
/
google-site-kit
/
includes
/
Core
/
Admin
<?php /** * Class Google\Site_Kit\Core\Admin\Screens * * @package Google\Site_Kit * @copyright 2021 Google LLC * @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://sitekit.withgoogle.com */ namespace Google\Site_Kit\Core\Admin; use Google\Site_Kit\Context; use Google\Site_Kit\Core\Assets\Assets; use Google\Site_Kit\Core\Authentication\Authentication; use Google\Site_Kit\Core\Modules\Modules; use Google\Site_Kit\Core\Permissions\Permissions; /** * Class managing admin screens. * * @since 1.0.0 * @access private * @ignore */ final class Screens { const PREFIX = 'googlesitekit-'; /** * Plugin context. * * @since 1.0.0 * @var Context */ private $context; /** * Assets API instance. * * @since 1.0.0 * @var Assets */ private $assets; /** * Modules instance. * * @since 1.7.0 * @var Modules */ private $modules; /** * Associative array of $hook_suffix => $screen pairs. * * @since 1.0.0 * @var array */ private $screens = array(); /** * Constructor. * * @since 1.0.0 * * @param Context $context Plugin context. * @param Assets $assets Optional. Assets API instance. Default is a new instance. * @param Modules $modules Optional. Modules instance. Default is a new instance. */ public function __construct( Context $context, Assets $assets = null, Modules $modules = null ) { $this->context = $context; $this->assets = $assets ?: new Assets( $this->context ); $this->modules = $modules ?: new Modules( $this->context ); } /** * Registers functionality through WordPress hooks. * * @since 1.0.0 */ public function register() { if ( $this->context->is_network_mode() ) { add_action( 'network_admin_menu', function() { $this->add_screens(); } ); } add_action( 'admin_menu', function() { $this->add_screens(); } ); add_action( 'admin_enqueue_scripts', function( $hook_suffix ) { $this->enqueue_screen_assets( $hook_suffix ); } ); // Redirect dashboard to splash if no dashboard access (yet). add_action( 'admin_page_access_denied', function() { $this->no_access_redirect_dashboard_to_splash(); } ); // Ensure the menu icon always is rendered correctly, without enqueueing a global CSS file. add_action( 'admin_head', function() { ?> <style type="text/css"> #adminmenu .toplevel_page_googlesitekit-dashboard img { width: 16px; } #adminmenu .toplevel_page_googlesitekit-dashboard.current img, #adminmenu .toplevel_page_googlesitekit-dashboard.wp-has-current-submenu img { opacity: 1; } </style> <?php } ); $remove_notices_callback = function() { global $hook_suffix; if ( empty( $hook_suffix ) ) { return; } if ( isset( $this->screens[ $hook_suffix ] ) ) { remove_all_actions( current_action() ); } }; add_action( 'admin_notices', $remove_notices_callback, -9999 ); add_action( 'network_admin_notices', $remove_notices_callback, -9999 ); add_action( 'all_admin_notices', $remove_notices_callback, -9999 ); add_filter( 'custom_menu_order', '__return_true' ); add_filter( 'menu_order', function( array $menu_order ) { // Move the Site Kit dashboard menu item to be one after the index.php item if it exists. $dashboard_index = array_search( 'index.php', $menu_order, true ); $sitekit_index = false; foreach ( $menu_order as $key => $value ) { if ( strpos( $value, self::PREFIX ) === 0 ) { $sitekit_index = $key; $sitekit_value = $value; break; } } if ( false === $dashboard_index || false === $sitekit_index ) { return $menu_order; } unset( $menu_order[ $sitekit_index ] ); array_splice( $menu_order, $dashboard_index + 1, 0, $sitekit_value ); return $menu_order; } ); } /** * Gets the Screen instance for a given hook suffix. * * @since 1.11.0 * * @param string $hook_suffix The hook suffix associated with the screen to retrieve. * @return Screen|null Screen instance if available, otherwise null; */ public function get_screen( $hook_suffix ) { return isset( $this->screens[ $hook_suffix ] ) ? $this->screens[ $hook_suffix ] : null; } /** * Adds all screens to the admin. * * @since 1.0.0 */ private function add_screens() { $screens = $this->get_screens(); array_walk( $screens, array( $this, 'add_screen' ) ); } /** * Adds the given screen to the admin. * * @since 1.0.0 * * @param Screen $screen Screen to add. */ private function add_screen( Screen $screen ) { $hook_suffix = $screen->add( $this->context ); if ( empty( $hook_suffix ) ) { return; } add_action( "load-{$hook_suffix}", function() use ( $screen ) { $screen->initialize( $this->context ); } ); $this->screens[ $hook_suffix ] = $screen; } /** * Enqueues assets if a plugin screen matches the given hook suffix. * * @since 1.0.0 * * @param string $hook_suffix Hook suffix for the current admin screen. */ private function enqueue_screen_assets( $hook_suffix ) { if ( ! isset( $this->screens[ $hook_suffix ] ) ) { return; } $this->screens[ $hook_suffix ]->enqueue_assets( $this->assets ); $this->modules->enqueue_assets(); } /** * Redirects from the dashboard to the splash screen if permissions to access the dashboard are currently not met. * * Dashboard permission access is conditional based on whether the user has successfully authenticated. When * e.g. accessing the dashboard manually or having it open in a separate tab while disconnecting in the other tab, * it is a better user experience to redirect to the splash screen so that the user can re-authenticate. * * The only time the dashboard should fail with the regular WordPress permissions error is when the current user is * not eligible for accessing Site Kit entirely, i.e. if they are not allowed to authenticate. * * @since 1.12.0 */ private function no_access_redirect_dashboard_to_splash() { global $plugin_page; // At this point, our preferred `$hook_suffix` is not set, and the dashboard page will not even be registered, // so we need to rely on the `$plugin_page` global here. if ( ! isset( $plugin_page ) || self::PREFIX . 'dashboard' !== $plugin_page ) { return; } // Redirect to splash screen if user is allowed to authenticate. if ( current_user_can( Permissions::AUTHENTICATE ) ) { wp_safe_redirect( $this->context->admin_url( 'splash' ) ); exit; } } /** * Gets available admin screens. * * @since 1.0.0 * * @return array List of Screen instances. */ private function get_screens() { $screens = array( new Screen( self::PREFIX . 'dashboard', array( 'title' => __( 'Dashboard', 'google-site-kit' ), 'capability' => Permissions::VIEW_DASHBOARD, 'enqueue_callback' => function( Assets $assets ) { if ( $this->context->input()->filter( INPUT_GET, 'permaLink' ) ) { $assets->enqueue_asset( 'googlesitekit-dashboard-details' ); } else { $assets->enqueue_asset( 'googlesitekit-dashboard' ); } }, 'render_callback' => function( Context $context ) { if ( $context->input()->filter( INPUT_GET, 'permaLink' ) ) { ?> <div id="js-googlesitekit-dashboard-details" class="googlesitekit-page"></div> <?php } else { ?> <div id="js-googlesitekit-dashboard" class="googlesitekit-page"></div> <?php } }, ) ), ); // Wrap this simply to save some unnecessary filter firing and screen instantiation. if ( current_user_can( Permissions::VIEW_MODULE_DETAILS ) ) { /** * Filters the admin screens for modules. * * By default this is an empty array, but can be expanded. * * @since 1.0.0 * * @param array $module_screens List of Screen instances. */ $module_screens = apply_filters( 'googlesitekit_module_screens', array() ); $screens = array_merge( $screens, $module_screens ); } $screens[] = new Screen( self::PREFIX . 'settings', array( 'title' => __( 'Settings', 'google-site-kit' ), 'capability' => Permissions::MANAGE_OPTIONS, 'enqueue_callback' => function( Assets $assets ) { $assets->enqueue_asset( 'googlesitekit-settings' ); }, 'render_callback' => function( Context $context ) { ?> <div id="googlesitekit-settings-wrapper" class="googlesitekit-page"></div> <?php }, ) ); $show_splash_in_menu = ! current_user_can( Permissions::VIEW_DASHBOARD ) && ! current_user_can( Permissions::VIEW_MODULE_DETAILS ) && ! current_user_can( Permissions::MANAGE_OPTIONS ); $screens[] = new Screen( self::PREFIX . 'splash', array( 'title' => __( 'Dashboard', 'google-site-kit' ), 'capability' => Permissions::AUTHENTICATE, 'parent_slug' => $show_splash_in_menu ? Screen::MENU_SLUG : null, // This callback will redirect to the dashboard on successful authentication. 'initialize_callback' => function( Context $context ) { $splash_context = $context->input()->filter( INPUT_GET, 'googlesitekit_context' ); $reset_session = $context->input()->filter( INPUT_GET, 'googlesitekit_reset_session', FILTER_VALIDATE_BOOLEAN ); $authentication = new Authentication( $context ); // If the user is authenticated, redirect them to the disconnect URL and then send them back here. if ( ! $reset_session && 'revoked' === $splash_context && $authentication->is_authenticated() ) { $authentication->disconnect(); wp_safe_redirect( add_query_arg( array( 'googlesitekit_reset_session' => 1 ) ) ); exit; } // Don't consider redirect if the current user cannot access the dashboard (yet). if ( ! current_user_can( Permissions::VIEW_DASHBOARD ) ) { return; } $notification = $context->input()->filter( INPUT_GET, 'notification' ); $error = $context->input()->filter( INPUT_GET, 'error' ); // Redirect to dashboard if success parameter indicator. if ( 'authentication_success' === $notification && empty( $error ) ) { wp_safe_redirect( $context->admin_url( 'dashboard', array( 'notification' => 'authentication_success', ) ) ); exit; } }, 'enqueue_callback' => function( Assets $assets ) { $assets->enqueue_asset( 'googlesitekit-dashboard-splash' ); }, 'render_callback' => function( Context $context ) { ?> <div id="js-googlesitekit-dashboard-splash" class="googlesitekit-page"></div> <?php }, ) ); $screens[] = new Screen( self::PREFIX . 'user-input', array( 'title' => __( 'User Input', 'google-site-kit' ), 'capability' => Permissions::MANAGE_OPTIONS, 'parent_slug' => null, 'enqueue_callback' => function( Assets $assets ) { $assets->enqueue_asset( 'googlesitekit-user-input' ); }, 'render_callback' => function( Context $context ) { ?> <div id="js-googlesitekit-user-input" class="googlesitekit-page"></div> <?php }, ) ); return $screens; } }
[+]
..
[-] Plugin_Row_Meta.php
[edit]
[-] Notices.php
[edit]
[-] Screens.php
[edit]
[-] Screen.php
[edit]
[-] Notice.php
[edit]
[-] Available_Tools.php
[edit]
[-] Dashboard.php
[edit]
[-] Standalone.php
[edit]