AutorÃa | Ultima modificación | Ver Log |
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
namespace core\route\shim;
use core\param;
use core\router\route;
use core\router\schema\parameters\query_parameter;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
/**
* Redirect requests for /error/index.php and /error to the page_not_found_controller.
*
* @package core
* @copyright Andrew Lyons <andrew@nicols.co.uk>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class error_controller {
/**
* Shim /error/index.php to /core/error
*
* @param ServerRequestInterface $request
* @param ResponseInterface $response
* @return ResponseInterface
*/
#[route(
path: '/error[/index.php]',
queryparams: [
new query_parameter(
name: 'code',
type: param::INT,
description: 'The HTTP Code',
),
],
)]
public function administer_course(
ServerRequestInterface $request,
ResponseInterface $response,
): ResponseInterface {
$params = $request->getQueryParams();
return \core\router\util::redirect_to_callable(
$request,
$response,
[\core\route\controller\page_not_found_controller::class, 'page_not_found_handler'],
);
}
}