PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/tiktechtok.org/wp-content/plugins/jetpack/_inc/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : //home/trave494/tiktechtok.org/wp-content/plugins/jetpack/_inc/jetpack-server-sandbox.php

<?php
/**
 * This feature is only useful for Automattic developers.
 * It configures Jetpack to talk to staging/sandbox servers
 * on WordPress.com instead of production servers.
 *
 * @package automattic/jetpack
 */

/**
 * Provides sandbox request parameters.
 *
 * @param string $sandbox Sandbox domain.
 * @param string $url URL of request about to be made.
 * @param array  $headers Headers of request about to be made.
 * @return array [ 'url' => new URL, 'host' => new Host ].
 */
function jetpack_server_sandbox_request_parameters( $sandbox, $url, $headers ) {
	_deprecated_function( __METHOD__, 'jetpack-10.2', 'Automattic\\Jetpack\\Server_Sandbox::server_sandbox_request_parameters' );

	return ( new Automattic\Jetpack\Server_Sandbox() )->server_sandbox_request_parameters( $sandbox, $url, $headers );
}

/**
 * Modifies parameters of request in order to send the request to the
 * server specified by `JETPACK__SANDBOX_DOMAIN`.
 *
 * Attached to the `requests-requests.before_request` filter.
 *
 * @param string $url URL of request about to be made.
 * @param array  $headers Headers of request about to be made.
 * @return void
 */
function jetpack_server_sandbox( &$url, &$headers ) {
	_deprecated_function( __METHOD__, 'jetpack-10.2', 'Automattic\\Jetpack\\Server_Sandbox::server_sandbox' );

	( new Automattic\Jetpack\Server_Sandbox() )->server_sandbox( $url, $headers );
}