Home
last modified time | relevance | path

Searched refs:redirectUrl (Results 1 – 25 of 535) sorted by relevance

12345678910>>...22

/dports/www/gallery2/gallery2/
H A Dmain.php184 if ($redirectUrl === true) {
272 if (empty($redirectUrl)) {
291 if (!empty($redirectUrl)) {
475 $redirectUrl = $results['redirectUrl'];
622 $redirectUrl = $session->replaceTempSessionIdIfNecessary($redirectUrl);
631 $redirectUrl = GalleryUrlGenerator::appendParamsToUrl($redirectUrl,
640 $redirectUrl = str_replace('&', '&', $redirectUrl);
641 $redirectUrl = rtrim($redirectUrl, '&? ');
643 $redirectUrl = $urlGenerator->makeAbsoluteUrl($redirectUrl);
667 $redirectUrl .= (strpos($redirectUrl, '?') === false) ? '?' : '&';
[all …]
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/felogin/Classes/Redirect/
H A DRedirectModeHandler.php135 $redirectUrl = '';
137 $redirectUrl = $this->buildUriForPageUid($redirectPageLogin);
140 return $redirectUrl;
151 $redirectUrl = '';
157 return $redirectUrl ?? '';
169 $redirectUrl = '';
202 return $redirectUrl ?? '';
213 $redirectUrl = '';
218 return $redirectUrl;
229 $redirectUrl = '';
[all …]
H A DRedirectHandler.php73 $redirectUrl = '';
78 … $redirectUrl = $this->handleSuccessfulLogout($redirectMode, $configuration->getPageOnLogout());
81 if ($redirectUrl !== '') {
82 $redirectUrlList[] = $redirectUrl;
189 $redirectUrl = $this->redirectModeHandler->redirectModeGroupLogin();
192 $redirectUrl = $this->redirectModeHandler->redirectModeUserLogin();
195 $redirectUrl = $this->redirectModeHandler->redirectModeLogin($redirectPageLogin);
198 $redirectUrl = $this->requestHandler->getRedirectUrlRequestParam();
201 … $redirectUrl = $this->redirectModeHandler->redirectModeReferrer($redirectModeReferrer);
207 $redirectUrl = '';
[all …]
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/felogin/Classes/Redirect/
H A DRedirectModeHandler.php135 $redirectUrl = '';
137 $redirectUrl = $this->buildUriForPageUid($redirectPageLogin);
140 return $redirectUrl;
151 $redirectUrl = '';
157 return $redirectUrl ?? '';
169 $redirectUrl = '';
202 return $redirectUrl ?? '';
213 $redirectUrl = '';
218 return $redirectUrl;
229 $redirectUrl = '';
[all …]
H A DRedirectHandler.php73 $redirectUrl = '';
78 … $redirectUrl = $this->handleSuccessfulLogout($redirectMode, $configuration->getPageOnLogout());
81 if ($redirectUrl !== '') {
82 $redirectUrlList[] = $redirectUrl;
189 $redirectUrl = $this->redirectModeHandler->redirectModeGroupLogin();
192 $redirectUrl = $this->redirectModeHandler->redirectModeUserLogin();
195 $redirectUrl = $this->redirectModeHandler->redirectModeLogin($redirectPageLogin);
198 $redirectUrl = $this->requestHandler->getRedirectUrlRequestParam();
201 … $redirectUrl = $this->redirectModeHandler->redirectModeReferrer($redirectModeReferrer);
207 $redirectUrl = '';
[all …]
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/Icinga/Web/
H A DResponse.php41 protected $redirectUrl; variable in Icinga\\Web\\Response
139 return $this->redirectUrl;
149 * @param string|Url $redirectUrl
153 protected function setRedirectUrl($redirectUrl) argument
155 if (! $redirectUrl instanceof Url) {
156 $redirectUrl = Url::fromPath((string) $redirectUrl);
158 $redirectUrl->getParams()->setSeparator('&');
159 $this->redirectUrl = $redirectUrl;
287 $redirectUrl = $this->getRedirectUrl();
289 if ($redirectUrl !== null) {
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/plugins/orangehrmHelpPlugin/lib/processor/
H A DZendeskHelpProcessor.php114 $redirectUrl = $response['results'][0]['html_url'];
116 $redirectUrl = $this->getDefaultRedirectUrl();
118 return $redirectUrl;
176 $redirectUrl = $result['html_url'];
178 array_push($redirectUrls, array('name' => $name, 'url' => $redirectUrl));
198 $redirectUrl = $response['category']['html_url'];
200 $redirectUrl = $this->getDefaultRedirectUrl();
202 return $redirectUrl;
219 $redirectUrl = $category['html_url'];
223 array_push($categories, array('name' => $name, 'url' => $redirectUrl));
[all …]
/dports/net-im/libquotient/libQuotient-0.6.8/lib/csapi/
H A Dsso_login_redirect.cpp11 auto queryToRedirectToSSO(const QString& redirectUrl) in queryToRedirectToSSO() argument
14 addParam<>(_q, QStringLiteral("redirectUrl"), redirectUrl); in queryToRedirectToSSO()
18 QUrl RedirectToSSOJob::makeRequestUrl(QUrl baseUrl, const QString& redirectUrl) in makeRequestUrl() argument
23 queryToRedirectToSSO(redirectUrl)); in makeRequestUrl()
26 RedirectToSSOJob::RedirectToSSOJob(const QString& redirectUrl) in RedirectToSSOJob() argument
29 queryToRedirectToSSO(redirectUrl), {}, false) in RedirectToSSOJob()
/dports/net-im/spectral/libQuotient-58dfe74390ebdd8ec6611d3b8fecfe7d051ff955/lib/csapi/
H A Dsso_login_redirect.cpp15 BaseJob::Query queryToRedirectToSSO(const QString& redirectUrl) in queryToRedirectToSSO() argument
18 addParam<>(_q, QStringLiteral("redirectUrl"), redirectUrl); in queryToRedirectToSSO()
22 QUrl RedirectToSSOJob::makeRequestUrl(QUrl baseUrl, const QString& redirectUrl) in makeRequestUrl() argument
26 queryToRedirectToSSO(redirectUrl)); in makeRequestUrl()
31 RedirectToSSOJob::RedirectToSSOJob(const QString& redirectUrl) in RedirectToSSOJob() argument
34 queryToRedirectToSSO(redirectUrl), {}, false) in RedirectToSSOJob()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/chrome/browser/resources/gaia_auth_host/
H A Dpassword_change_authenticator_test.unitjs36 assertSuccess(postUrl, redirectUrl) {
37 assertTrue(this.detectSuccess(postUrl, redirectUrl));
40 assertNotSuccess(postUrl, redirectUrl) {
41 assertFalse(this.detectSuccess(postUrl, redirectUrl));
44 detectSuccess(postUrl, redirectUrl) {
46 redirectUrl =
47 (typeof redirectUrl == 'string') ? new URL(redirectUrl) : redirectUrl;
49 redirectUrl);
/dports/www/nextcloud/nextcloud/lib/private/Authentication/Login/
H A DLoginResult.php37 private $redirectUrl; variable in OC\\Authentication\\Login\\LoginResult
48 $this->redirectUrl = $url;
55 public static function success(LoginData $data, ?string $redirectUrl = null) { argument
57 if ($redirectUrl !== null) {
58 $result->setRedirectUrl($redirectUrl);
76 return $this->redirectUrl;
H A DLoginData.php44 private $redirectUrl; variable in OC\\Authentication\\Login\\LoginData
61 string $redirectUrl = null, argument
67 $this->redirectUrl = $redirectUrl;
89 return $this->redirectUrl;
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/felogin/Classes/Event/
H A DBeforeRedirectEvent.php33 private $redirectUrl; variable in TYPO3\\CMS\\FrontendLogin\\Event\\BeforeRedirectEvent
35 public function __construct(string $loginType, string $redirectUrl) argument
38 $this->redirectUrl = $redirectUrl;
48 return $this->redirectUrl;
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/felogin/Classes/Event/
H A DBeforeRedirectEvent.php33 private $redirectUrl; variable in TYPO3\\CMS\\FrontendLogin\\Event\\BeforeRedirectEvent
35 public function __construct(string $loginType, string $redirectUrl) argument
38 $this->redirectUrl = $redirectUrl;
48 return $this->redirectUrl;
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/backend/Classes/Controller/
H A DLogoutController.php44 … $redirectUrl = $request->getParsedBody()['redirect'] ?? $request->getQueryParams()['redirect'];
45 $redirectUrl = GeneralUtility::sanitizeLocalUrl($redirectUrl);
46 if (empty($redirectUrl)) {
48 … $redirectUrl = (string)$uriBuilder->buildUriFromRoute('login', [], $uriBuilder::ABSOLUTE_URL);
50 return new RedirectResponse(GeneralUtility::locationHeaderUrl($redirectUrl), 303);
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/resources/gaia_auth_host/
H A Dpassword_change_authenticator_test.unitjs41 assertSuccess(postUrl, redirectUrl) {
42 assertTrue(this.detectSuccess(postUrl, redirectUrl));
45 assertNotSuccess(postUrl, redirectUrl) {
46 assertFalse(this.detectSuccess(postUrl, redirectUrl));
49 detectSuccess(postUrl, redirectUrl) {
51 redirectUrl =
52 (typeof redirectUrl == 'string') ? new URL(redirectUrl) : redirectUrl;
54 redirectUrl);
/dports/www/pear-HTTP_Client/HTTP_Client-1.2.1/
H A DClient.php415 if (null === ($redirectUrl = $this->_redirectUrl($request->_url, $location))) {
421 $redirectUrl = $this->_getMetaRedirect($request);
424 if (!empty($redirectUrl)) {
430 $this->_notify('httpRedirect', $redirectUrl);
438 return $this->get($redirectUrl);
444 return $this->post($redirectUrl, $request->_postData, true, $postFiles);
446 return $this->post($redirectUrl, $request->_body, true);
449 return (303 == $code? $this->get($redirectUrl): $this->head($redirectUrl));
452 return $this->get($redirectUrl);
655 $redirectUrl = $this->_redirectUrl($request->_url, html_entity_decode($url));
[all …]
/dports/www/guacamole-client/guacamole-client-1.3.0/guacamole-ext/src/main/java/org/apache/guacamole/form/
H A DRedirectField.java35 private final URI redirectUrl; field in RedirectField
57 public RedirectField(String name, URI redirectUrl, in RedirectField() argument
64 this.redirectUrl = redirectUrl; in RedirectField()
78 return redirectUrl.toString(); in getRedirectUrl()
/dports/net-im/nextcloud-talk/spreed/lib/Events/
H A DVerifyRoomPasswordEvent.php35 protected $redirectUrl = ''; variable in OCA\\Talk\\Events\\VerifyRoomPasswordEvent
56 public function setRedirectUrl(string $redirectUrl): void { argument
57 $this->redirectUrl = $redirectUrl;
61 return $this->redirectUrl;
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/backend/Classes/Controller/
H A DLogoutController.php49 … $redirectUrl = $request->getParsedBody()['redirect'] ?? $request->getQueryParams()['redirect'];
50 $redirectUrl = GeneralUtility::sanitizeLocalUrl($redirectUrl);
51 if (empty($redirectUrl)) {
53 … $redirectUrl = (string)$uriBuilder->buildUriFromRoute('login', [], $uriBuilder::ABSOLUTE_URL);
55 return new RedirectResponse(GeneralUtility::locationHeaderUrl($redirectUrl), 303);
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/backend/Classes/Controller/
H A DLogoutController.php49 …$redirectUrl = $request->getParsedBody()['redirect'] ?? $request->getQueryParams()['redirect'] ?? …
50 $redirectUrl = GeneralUtility::sanitizeLocalUrl($redirectUrl);
51 if (empty($redirectUrl)) {
53 … $redirectUrl = (string)$uriBuilder->buildUriFromRoute('login', [], $uriBuilder::ABSOLUTE_URL);
55 return new RedirectResponse(GeneralUtility::locationHeaderUrl($redirectUrl), 303);
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/AdSenseHost/
H A DAssociationSession.php25 public $redirectUrl; variable in Google_Service_AdSenseHost_AssociationSession
63 public function setRedirectUrl($redirectUrl) argument
65 $this->redirectUrl = $redirectUrl;
69 return $this->redirectUrl;
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/AdSenseHost/
H A DAssociationSession.php25 public $redirectUrl; variable in Google_Service_AdSenseHost_AssociationSession
63 public function setRedirectUrl($redirectUrl) argument
65 $this->redirectUrl = $redirectUrl;
69 return $this->redirectUrl;
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.WebPages.Administration/Framework/
H A DSiteAdmin.cs211 internal static string GetRedirectUrl(string redirectUrl) in GetRedirectUrl() argument
214 return GetRedirectUrl(request, redirectUrl, VirtualPathUtility.ToAppRelative); in GetRedirectUrl()
217 …internal static string GetRedirectUrl(HttpRequestBase request, string redirectUrl, Func<string, st… in GetRedirectUrl() argument
224 redirectUrl = GetVirtualPath(redirectUrl); in GetRedirectUrl()
227 redirectUrl += "?" + ReturnUrlQueryString + "=" + HttpUtility.UrlEncode(returnUrl); in GetRedirectUrl()
229 return redirectUrl; in GetRedirectUrl()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/lib/gwt/2.8.1/samples/MobileWebApp/src/main/java/com/google/gwt/sample/gaerequest/server/
H A DGaeAuthFilter.java50 String redirectUrl = request.getHeader(GaeHelper.REDIRECT_URL_HTTP_HEADER_NAME); in doFilter() local
51 if (redirectUrl == null || redirectUrl.length() == 0) { in doFilter()
53 redirectUrl = "/"; in doFilter()
55 response.setHeader("login", userService.createLoginURL(redirectUrl)); in doFilter()

12345678910>>...22