![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/framework/App/Response/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\App\Response; /** * Interface \Magento\Framework\App\Response\RedirectInterface * * @api */ interface RedirectInterface { const PARAM_NAME_REFERER_URL = 'referer_url'; const PARAM_NAME_ERROR_URL = 'error_url'; const PARAM_NAME_SUCCESS_URL = 'success_url'; /** * Identify referer url via all accepted methods (HTTP_REFERER, regular or base64-encoded request param) * * @return string */ public function getRefererUrl(); /** * Set referer url for redirect in response * * @param string $defaultUrl * @return string */ public function getRedirectUrl($defaultUrl = null); /** * Redirect to error page * * @param string $defaultUrl * @return string */ public function error($defaultUrl); /** * Redirect to success page * * @param string $defaultUrl * @return string */ public function success($defaultUrl); /** * Update path params for url builder * * @param array $arguments * @return array */ public function updatePathParams(array $arguments); /** * Set redirect into response * * @param \Magento\Framework\App\ResponseInterface $response * @param string $path * @param array $arguments * @return void */ public function redirect(\Magento\Framework\App\ResponseInterface $response, $path, $arguments = []); }