You are here

class LinkedInAuthSettings in Social Auth LinkedIn 8.2

Same name and namespace in other branches
  1. 8 src/Settings/LinkedinAuthSettings.php \Drupal\social_auth_linkedin\Settings\LinkedinAuthSettings
  2. 3.x src/Settings/LinkedInAuthSettings.php \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettings

Defines methods to get Social Auth LinkedIn settings.

Hierarchy

Expanded class hierarchy of LinkedInAuthSettings

1 file declares its use of LinkedInAuthSettings
LinkedInAuth.php in src/Plugin/Network/LinkedInAuth.php

File

src/Settings/LinkedInAuthSettings.php, line 10

Namespace

Drupal\social_auth_linkedin\Settings
View source
class LinkedInAuthSettings extends SettingsBase implements LinkedInAuthSettingsInterface {

  /**
   * Client ID.
   *
   * @var string
   */
  protected $clientId;

  /**
   * Client secret.
   *
   * @var string
   */
  protected $clientSecret;

  /**
   * {@inheritdoc}
   */
  public function getClientId() {
    if (!$this->clientId) {
      $this->clientId = $this->config
        ->get('client_id');
    }
    return $this->clientId;
  }

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

}

Members