Searched refs:returnTo (Results 1 – 3 of 3) sorted by relevance
/plugin/adfs/phpsaml/lib/Saml/ |
H A D | AuthRequest.php | 26 * @param string|null $returnTo 32 public function getRedirectUrl($returnTo = null) argument 37 if (!empty($returnTo)) { 38 $parameters['RelayState'] = $returnTo;
|
/plugin/adfs/phpsaml/lib/Saml2/ |
H A D | Auth.php | 491 * @param string|null $returnTo The target URL the user should be returned to after login. 503 …public function login($returnTo = null, $parameters = array(), $forceAuthn = false, $isPassive = f… argument 515 if (!empty($returnTo)) { 516 $parameters['RelayState'] = $returnTo; 533 …* @param string|null $returnTo The target URL the user should be returned to after logo… 545 …public function logout($returnTo = null, $parameters = array(), $nameId = null, $sessionIndex = nu… argument 572 if (!empty($returnTo)) { 573 $parameters['RelayState'] = $returnTo;
|
/plugin/adfs/phpsaml/ |
H A D | README.md | 671 We can set a `'returnTo'` url to change the workflow and redirect the user to the other PHP file. 1015 * `$returnTo` - The target URL the user should be returned to after logout. 1034 We can set an `'returnTo'` url to change the workflow and redirect the user 1045 $returnTo = null; 1068 $auth->logout($returnTo, $paramters, $nameId, $sessionIndex, false, $nameIdFormat, $nameIdNameQuali… 1105 $returnTo = $spBaseUrl.'/demo1/attrs.php'; // but set a custom RelayState URL 1106 $auth->login($returnTo); 1277 * `getRedirectUrl($returnTo)` - Obtains the SSO URL containing the AuthRequest
|