/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Routing/Route
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Routing/Route/RedirectRoute.php (4117B)
value array or a CakePHP array URL.
* @param array
$options Array of additional options for the Route
*/
public function __construct(string $template, array $defaults = [], array $options = [])
{
parent::__construct($template, $defaults, $options);
if (isset($defaults['redirect'])) {
$defaults = (array)$defaults['redirect'];
}
$this->redirect = $defaults;
}
/**
* Parses a string URL into an array. Parsed URLs will result in an automatic
* redirection.
*
* @param string $url The URL to parse.
* @param string $method The HTTP method being used.
* @return array|null Null on failure. An exception is raised on a successful match. Array return type is unused.
* @throws \Cake\Http\Exception\RedirectException An exception is raised on successful match.
* This is used to halt route matching and signal to the middleware that a redirect should happen.
*/
public function parse(string $url, string $method = ''): ?array
{
$params = parent::parse($url, $method);
if (!$params) {
return null;
}
$redirect = $this->redirect;
if ($this->redirect && count($this->redirect) === 1 && !isset($this->redirect['controller'])) {
$redirect = $this->redirect[0];
}
if (isset($this->options['persist']) && is_array($redirect)) {
$redirect += ['pass' => $params['pass'], 'url' => []];
if (is_array($this->options['persist'])) {
foreach ($this->options['persist'] as $elem) {
if (isset($params[$elem])) {
$redirect[$elem] = $params[$elem];
}
}
}
$redirect = Router::reverseToArray($redirect);
}
$status = 301;
if (isset($this->options['status']) && ($this->options['status'] >= 300 && $this->options['status'] < 400)) {
$status = $this->options['status'];
}
throw new RedirectException(Router::url($redirect, true), $status);
}
/**
* There is no reverse routing redirection routes.
*
* @param array $url Array of parameters to convert to a string.
* @param array $context Array of request context parameters.
* @return string|null Always null, string return result unused.
*/
public function match(array $url, array $context = []): ?string
{
return null;
}
/**
* Sets the HTTP status
*
* @param int $status The status code for this route
* @return $this
*/
public function setStatus(int $status)
{
$this->options['status'] = $status;
return $this;
}
}