Home
last modified time | relevance | path

Searched refs:returnTo (Results 1 – 25 of 120) sorted by relevance

12345

/dports/deskutils/egroupware/egroupware/vendor/simplesamlphp/simplesamlphp/lib/SimpleSAML/Utils/
H A DAuth.php20 …* @param string|NULL $returnTo The URL the user should arrive on after admin authentication. Defau…
25 public static function getAdminLoginURL($returnTo = null) argument
27 if (!(is_string($returnTo) || is_null($returnTo))) {
31 if ($returnTo === null) {
32 $returnTo = HTTP::getSelfURL();
35 return Module::getModuleURL('core/login-admin.php', ['ReturnTo' => $returnTo]);
42 …* @param string|NULL $returnTo The URL the user should arrive on after admin authentication. Defau…
47 public static function getAdminLogoutURL($returnTo = null) argument
49 if (!(is_string($returnTo) || is_null($returnTo))) {
54 return $as->getLogoutURL($returnTo = null);
/dports/deskutils/egroupware/egroupware/vendor/simplesamlphp/simplesamlphp/lib/SimpleSAML/Auth/
H A DSimple.php147 $returnTo = Utils\HTTP::getPOSTRedirectURL($returnTo, $_POST);
319 public function getLoginURL($returnTo = null) argument
321 assert($returnTo === null || is_string($returnTo));
323 if ($returnTo === null) {
324 $returnTo = Utils\HTTP::getSelfURL();
329 'ReturnTo' => $returnTo,
344 public function getLogoutURL($returnTo = null) argument
346 assert($returnTo === null || is_string($returnTo));
348 if ($returnTo === null) {
349 $returnTo = Utils\HTTP::getSelfURL();
[all …]
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/simplesamlphp/simplesamlphp/lib/SimpleSAML/Auth/
H A DSimple.php136 $returnTo = HTTP::getSelfURL();
141 $returnTo = HTTP::getPOSTRedirectURL($returnTo, $_POST);
317 public function getLoginURL($returnTo = null) argument
319 assert($returnTo === null || is_string($returnTo));
321 if ($returnTo === null) {
322 $returnTo = HTTP::getSelfURL();
327 'ReturnTo' => $returnTo,
344 assert($returnTo === null || is_string($returnTo));
346 if ($returnTo === null) {
347 $returnTo = HTTP::getSelfURL();
[all …]
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/simplesamlphp/simplesamlphp/lib/SimpleSAML/Utils/
H A DAuth.php17 …* @param string|NULL $returnTo The URL the user should arrive on after admin authentication. Defau…
22 public static function getAdminLoginURL($returnTo = null) argument
24 if (!(is_string($returnTo) || is_null($returnTo))) {
28 if ($returnTo === null) {
29 $returnTo = HTTP::getSelfURL();
32 return Module::getModuleURL('core/login-admin.php', array('ReturnTo' => $returnTo));
/dports/databases/phpmyadmin/phpMyAdmin-4.9.7-all-languages/examples/
H A Dopenid.php101 $returnTo = $base . dirname($_SERVER['PHP_SELF']); variable
102 if ($returnTo[strlen($returnTo) - 1] != '/') {
103 $returnTo .= '/';
105 $returnTo .= 'openid.php';
131 $o = new OpenID_RelyingParty($returnTo, $realm, $identifier);
/dports/www/mediawiki135/mediawiki-1.35.5/includes/specials/helpers/
H A DLoginHelper.php64 * @param string $returnTo
70 $type, $returnTo = '', $returnToQuery = '', $stickHTTPS = false argument
74 $returnTo = $config->get( 'RedirectOnLogin' );
81 $this->getHookRunner()->onPostLoginRedirect( $returnTo, $returnToQuery, $type );
83 $returnToTitle = Title::newFromText( $returnTo ) ?: Title::newMainPage();
/dports/www/mediawiki137/mediawiki-1.37.1/includes/specials/helpers/
H A DLoginHelper.php64 * @param string $returnTo
70 $type, $returnTo = '', $returnToQuery = '', $stickHTTPS = false argument
74 $returnTo = $config->get( 'RedirectOnLogin' );
81 $this->getHookRunner()->onPostLoginRedirect( $returnTo, $returnToQuery, $type );
83 $returnToTitle = Title::newFromText( $returnTo ) ?: Title::newMainPage();
/dports/www/mediawiki136/mediawiki-1.36.3/includes/specials/helpers/
H A DLoginHelper.php64 * @param string $returnTo
70 $type, $returnTo = '', $returnToQuery = '', $stickHTTPS = false argument
74 $returnTo = $config->get( 'RedirectOnLogin' );
81 $this->getHookRunner()->onPostLoginRedirect( $returnTo, $returnToQuery, $type );
83 $returnToTitle = Title::newFromText( $returnTo ) ?: Title::newMainPage();
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/simplesamlphp/simplesamlphp/modules/cdc/lib/
H A DClient.php54 * @param string $returnTo The URL we should return to afterwards.
58 public function sendRequest($returnTo, $op, array $params = array()) argument
60 assert(is_string($returnTo));
64 $params['return'] = $returnTo;
/dports/deskutils/egroupware/egroupware/vendor/simplesamlphp/simplesamlphp/modules/cdc/lib/
H A DClient.php57 * @param string $returnTo The URL we should return to afterwards.
62 public function sendRequest($returnTo, $op, array $params = []) argument
64 assert(is_string($returnTo));
68 $params['return'] = $returnTo;
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/simplesamlphp/simplesamlphp/modules/exampleauth/www/
H A Dauthpage.php16 $returnTo = \SimpleSAML\Utils\HTTP::checkURLAllowed($_REQUEST['ReturnTo']); variable
29 if (!preg_match('@State=(.*)@', $returnTo, $matches)) {
88 \SimpleSAML\Utils\HTTP::redirectTrustedURL($returnTo);
117 <input type="hidden" name="ReturnTo" value="<?php echo htmlspecialchars($returnTo); ?>">
/dports/deskutils/egroupware/egroupware/vendor/simplesamlphp/simplesamlphp/modules/exampleauth/www/
H A Dauthpage.php16 $returnTo = \SimpleSAML\Utils\HTTP::checkURLAllowed($_REQUEST['ReturnTo']); variable
27 if (!preg_match('@State=(.*)@', $returnTo, $matches)) {
77 \SimpleSAML\Utils\HTTP::redirectTrustedURL($returnTo);
85 $t->data['returnTo'] = $returnTo;
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/simplesamlphp/simplesamlphp/modules/core/www/
H A Dcleardiscochoices.php29 $returnTo = \SimpleSAML\Utils\HTTP::checkURLAllowed($_REQUEST['ReturnTo']); variable
32 $returnTo = $cookiePath; variable
36 \SimpleSAML\Utils\HTTP::redirectTrustedURL($returnTo);
/dports/deskutils/egroupware/egroupware/vendor/simplesamlphp/simplesamlphp/modules/core/www/
H A Dcleardiscochoices.php28 $returnTo = \SimpleSAML\Utils\HTTP::checkURLAllowed($_REQUEST['ReturnTo']); variable
31 $returnTo = $cookiePath; variable
35 \SimpleSAML\Utils\HTTP::redirectTrustedURL($returnTo);
/dports/www/mediawiki135/mediawiki-1.35.5/includes/actions/
H A DMarkpatrolledAction.php107 $returnTo = 'Newpages';
109 $returnTo = 'Newfiles';
111 $returnTo = 'Recentchanges';
113 $return = SpecialPage::getTitleFor( $returnTo );
/dports/www/mediawiki136/mediawiki-1.36.3/includes/actions/
H A DMarkpatrolledAction.php107 $returnTo = 'Newpages';
109 $returnTo = 'Newfiles';
111 $returnTo = 'Recentchanges';
113 $return = SpecialPage::getTitleFor( $returnTo );
/dports/www/mediawiki137/mediawiki-1.37.1/includes/actions/
H A DMarkpatrolledAction.php124 $returnTo = 'Newpages';
126 $returnTo = 'Newfiles';
128 $returnTo = 'Recentchanges';
130 $return = SpecialPage::getTitleFor( $returnTo );
/dports/www/seahub/seahub-8.0.7-server/thirdpart/termsandconditions/
H A Dviews.py66 returnTo = self.request.GET.get('returnTo', '/')
68 return {'terms': terms, 'returnTo': returnTo}
106 returnTo = self.request.GET.get('returnTo', '/')
108 return {'terms': terms, 'returnTo': returnTo}
/dports/net-mgmt/zabbix5-java/zabbix-5.0.19/ui/vendor/php-saml/src/Saml2/
H A DAuth.php528 … * @param string|null $returnTo The target URL the user should be returned to after login.
540 …public function login($returnTo = null, array $parameters = array(), $forceAuthn = false, $isPassi… argument
550 if (!empty($returnTo)) {
551 $parameters['RelayState'] = $returnTo;
568 …* @param string|null $returnTo The target URL the user should be returned to after logo…
580 …public function logout($returnTo = null, array $parameters = array(), $nameId = null, $sessionInde… argument
605 if (!empty($returnTo)) {
606 $parameters['RelayState'] = $returnTo;
/dports/net-mgmt/zabbix5-agent/zabbix-5.0.19/ui/vendor/php-saml/src/Saml2/
H A DAuth.php528 … * @param string|null $returnTo The target URL the user should be returned to after login.
540 …public function login($returnTo = null, array $parameters = array(), $forceAuthn = false, $isPassi… argument
550 if (!empty($returnTo)) {
551 $parameters['RelayState'] = $returnTo;
568 …* @param string|null $returnTo The target URL the user should be returned to after logo…
580 …public function logout($returnTo = null, array $parameters = array(), $nameId = null, $sessionInde… argument
605 if (!empty($returnTo)) {
606 $parameters['RelayState'] = $returnTo;
/dports/net-mgmt/zabbix54-java/zabbix-5.4.9/ui/vendor/php-saml/src/Saml2/
H A DAuth.php528 … * @param string|null $returnTo The target URL the user should be returned to after login.
540 …public function login($returnTo = null, array $parameters = array(), $forceAuthn = false, $isPassi… argument
550 if (!empty($returnTo)) {
551 $parameters['RelayState'] = $returnTo;
568 …* @param string|null $returnTo The target URL the user should be returned to after logo…
580 …public function logout($returnTo = null, array $parameters = array(), $nameId = null, $sessionInde… argument
605 if (!empty($returnTo)) {
606 $parameters['RelayState'] = $returnTo;
/dports/net-mgmt/zabbix54-server/zabbix-5.4.9/ui/vendor/php-saml/src/Saml2/
H A DAuth.php528 … * @param string|null $returnTo The target URL the user should be returned to after login.
540 …public function login($returnTo = null, array $parameters = array(), $forceAuthn = false, $isPassi… argument
550 if (!empty($returnTo)) {
551 $parameters['RelayState'] = $returnTo;
568 …* @param string|null $returnTo The target URL the user should be returned to after logo…
580 …public function logout($returnTo = null, array $parameters = array(), $nameId = null, $sessionInde… argument
605 if (!empty($returnTo)) {
606 $parameters['RelayState'] = $returnTo;
/dports/net-mgmt/zabbix5-frontend/zabbix-5.0.19/ui/vendor/php-saml/src/Saml2/
H A DAuth.php528 … * @param string|null $returnTo The target URL the user should be returned to after login.
540 …public function login($returnTo = null, array $parameters = array(), $forceAuthn = false, $isPassi… argument
550 if (!empty($returnTo)) {
551 $parameters['RelayState'] = $returnTo;
568 …* @param string|null $returnTo The target URL the user should be returned to after logo…
580 …public function logout($returnTo = null, array $parameters = array(), $nameId = null, $sessionInde… argument
605 if (!empty($returnTo)) {
606 $parameters['RelayState'] = $returnTo;
/dports/net-mgmt/zabbix5-server/zabbix-5.0.19/ui/vendor/php-saml/src/Saml2/
H A DAuth.php528 … * @param string|null $returnTo The target URL the user should be returned to after login.
540 …public function login($returnTo = null, array $parameters = array(), $forceAuthn = false, $isPassi… argument
550 if (!empty($returnTo)) {
551 $parameters['RelayState'] = $returnTo;
568 …* @param string|null $returnTo The target URL the user should be returned to after logo…
580 …public function logout($returnTo = null, array $parameters = array(), $nameId = null, $sessionInde… argument
605 if (!empty($returnTo)) {
606 $parameters['RelayState'] = $returnTo;
/dports/net-mgmt/zabbix5-proxy/zabbix-5.0.19/ui/vendor/php-saml/src/Saml2/
H A DAuth.php528 … * @param string|null $returnTo The target URL the user should be returned to after login.
540 …public function login($returnTo = null, array $parameters = array(), $forceAuthn = false, $isPassi… argument
550 if (!empty($returnTo)) {
551 $parameters['RelayState'] = $returnTo;
568 …* @param string|null $returnTo The target URL the user should be returned to after logo…
580 …public function logout($returnTo = null, array $parameters = array(), $nameId = null, $sessionInde… argument
605 if (!empty($returnTo)) {
606 $parameters['RelayState'] = $returnTo;

12345