D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
homehopshortterm
/
www
/
wp-content
/
plugins
/
worker
/
src
/
MWP
/
Http
/
Filename :
RedirectResponse.php
back
Copy
<?php /* * This file is part of the ManageWP Worker plugin. * * (c) ManageWP LLC <contact@managewp.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ class MWP_Http_RedirectResponse extends MWP_Http_Response { public function __construct($url, $statusCode = 302, array $headers = array()) { $headers['location'] = $url; parent::__construct($url, $statusCode, $headers); } public function getContentAsString() { return sprintf('<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <meta http-equiv="refresh" content="1;url=%1$s" /> <title>Redirecting to %1$s</title> </head> <body> Redirecting to <a href="%1$s">%1$s</a>. </body> </html>', htmlspecialchars($this->content, ENT_QUOTES, 'UTF-8')); } }