?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/google-site-kit/includes/Core/Golinks/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/google-site-kit/includes/Core

?? Viewing: Dashboard_Golink_Handler.php

<?php
/**
 * Class Google\Site_Kit\Core\Golinks\Dashboard_Golink_Handler
 *
 * @package   Google\Site_Kit\Core\Golinks
 * @copyright 2026 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\Golinks;

use Google\Site_Kit\Context;

/**
 * Golink handler for the Site Kit dashboard URL.
 *
 * @since 1.174.0
 * @access private
 * @ignore
 */
class Dashboard_Golink_Handler implements Golink_Handler_Interface {

	/**
	 * Builds the dashboard destination URL.
	 *
	 * @since 1.174.0
	 *
	 * @param Context $context Plugin context.
	 * @return string Destination URL.
	 */
	public function handle( Context $context ) {
		$dashboard_url = $context->admin_url( 'dashboard' );
		$permalink     = (string) $context->input()->filter( INPUT_GET, 'permaLink', FILTER_DEFAULT );

		return add_query_arg(
			array(
				'permaLink' => esc_url_raw( wp_unslash( $permalink ) ) ?: false,
			),
			$dashboard_url
		);
	}
}


??

??