interface LinkedInAuthSettingsInterface in Open Social 8
Same name and namespace in other branches
- 8.9 modules/custom/social_auth_linkedin/src/Settings/LinkedInAuthSettingsInterface.php \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettingsInterface
- 8.2 modules/custom/social_auth_linkedin/src/Settings/LinkedInAuthSettingsInterface.php \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettingsInterface
- 8.3 modules/custom/social_auth_linkedin/src/Settings/LinkedInAuthSettingsInterface.php \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettingsInterface
- 8.4 modules/custom/social_auth_linkedin/src/Settings/LinkedInAuthSettingsInterface.php \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettingsInterface
- 8.5 modules/custom/social_auth_linkedin/src/Settings/LinkedInAuthSettingsInterface.php \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettingsInterface
- 8.6 modules/custom/social_auth_linkedin/src/Settings/LinkedInAuthSettingsInterface.php \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettingsInterface
- 8.7 modules/custom/social_auth_linkedin/src/Settings/LinkedInAuthSettingsInterface.php \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettingsInterface
- 8.8 modules/custom/social_auth_linkedin/src/Settings/LinkedInAuthSettingsInterface.php \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettingsInterface
Defines an interface for Social Auth LinkedIn settings.
Hierarchy
- interface \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettingsInterface
Expanded class hierarchy of LinkedInAuthSettingsInterface
All classes that implement LinkedInAuthSettingsInterface
File
- modules/custom/ social_auth_linkedin/ src/ Settings/ LinkedInAuthSettingsInterface.php, line 8 
Namespace
Drupal\social_auth_linkedin\SettingsView source
interface LinkedInAuthSettingsInterface {
  /**
   * Gets the client ID.
   *
   * @return string
   *   The client ID.
   */
  public function getClientId();
  /**
   * Gets the client secret.
   *
   * @return string
   *   The client secret.
   */
  public function getClientSecret();
  /**
   * Returns status of social network.
   *
   * @return bool
   *   The status of the social network.
   */
  public function isActive();
  /**
   * Returns key-name of a social network.
   *
   * @return string
   *   The key-name of a social network.
   */
  public static function getSocialNetworkKey();
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| LinkedInAuthSettingsInterface:: | public | function | Gets the client ID. | 1 | 
| LinkedInAuthSettingsInterface:: | public | function | Gets the client secret. | 1 | 
| LinkedInAuthSettingsInterface:: | public static | function | Returns key-name of a social network. | 1 | 
| LinkedInAuthSettingsInterface:: | public | function | Returns status of social network. | 1 | 
