You are here

public function AuthManager::getRedirectUrl in Open Social 8

Same name and namespace in other branches
  1. 8.9 modules/custom/social_auth_extra/src/AuthManager.php \Drupal\social_auth_extra\AuthManager::getRedirectUrl()
  2. 8.2 modules/custom/social_auth_extra/src/AuthManager.php \Drupal\social_auth_extra\AuthManager::getRedirectUrl()
  3. 8.3 modules/custom/social_auth_extra/src/AuthManager.php \Drupal\social_auth_extra\AuthManager::getRedirectUrl()
  4. 8.4 modules/custom/social_auth_extra/src/AuthManager.php \Drupal\social_auth_extra\AuthManager::getRedirectUrl()
  5. 8.5 modules/custom/social_auth_extra/src/AuthManager.php \Drupal\social_auth_extra\AuthManager::getRedirectUrl()
  6. 8.6 modules/custom/social_auth_extra/src/AuthManager.php \Drupal\social_auth_extra\AuthManager::getRedirectUrl()
  7. 8.7 modules/custom/social_auth_extra/src/AuthManager.php \Drupal\social_auth_extra\AuthManager::getRedirectUrl()
  8. 8.8 modules/custom/social_auth_extra/src/AuthManager.php \Drupal\social_auth_extra\AuthManager::getRedirectUrl()

Returns URL to authorize/registration depending on type.

Parameters

string $type: Type of action. "login" or "register".

Return value

\Drupal\Core\GeneratedUrl|string A generated URL or a string containing an URL.

Overrides AuthManagerInterface::getRedirectUrl

6 calls to AuthManager::getRedirectUrl()
FacebookAuthManager::getAccessToken in modules/custom/social_auth_facebook/src/FacebookAuthManager.php
Reads user's access token from social network.
FacebookAuthManager::getAuthenticationUrl in modules/custom/social_auth_facebook/src/FacebookAuthManager.php
Returns the login URL where user will be redirected for authentication.
GoogleAuthManager::getAccessToken in modules/custom/social_auth_google/src/GoogleAuthManager.php
Reads user's access token from social network.
GoogleAuthManager::getAuthenticationUrl in modules/custom/social_auth_google/src/GoogleAuthManager.php
Returns the login URL where user will be redirected for authentication.
LinkedInAuthManager::getAuthenticationUrl in modules/custom/social_auth_linkedin/src/LinkedInAuthManager.php
Returns the login URL where user will be redirected for authentication.

... See full list

File

modules/custom/social_auth_extra/src/AuthManager.php, line 54

Class

AuthManager
Class AuthManager.

Namespace

Drupal\social_auth_extra

Code

public function getRedirectUrl($type) {
  $key = $this
    ->getSocialNetworkKey();
  return $this->urlGenerator
    ->generateFromRoute("social_auth_{$key}.user_{$type}_callback", [], [
    'absolute' => TRUE,
  ]);
}