Server IP : 66.29.132.124 / Your IP : 3.138.137.114 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/diixadigital.com/wp-content/plugins/jetpack/_inc/ |
Upload File : |
<?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 ); }