You are here

public function LinkedInAuthSettings::getClientSecret in Open Social 8.3

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

Gets the client secret.

Return value

string The client secret.

Overrides LinkedInAuthSettingsInterface::getClientSecret

File

modules/custom/social_auth_linkedin/src/Settings/LinkedInAuthSettings.php, line 40

Class

LinkedInAuthSettings
Defines methods to get Social Auth LinkedIn app settings.

Namespace

Drupal\social_auth_linkedin\Settings

Code

public function getClientSecret() {
  if (!$this->clientSecret) {
    $this->clientSecret = $this->config
      ->get('client_secret');
  }
  return $this->clientSecret;
}