You are here

interface LinkedInAuthSettingsInterface in Open Social 8.7

Same name and namespace in other branches
  1. 8.9 modules/custom/social_auth_linkedin/src/Settings/LinkedInAuthSettingsInterface.php \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettingsInterface
  2. 8 modules/custom/social_auth_linkedin/src/Settings/LinkedInAuthSettingsInterface.php \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettingsInterface
  3. 8.2 modules/custom/social_auth_linkedin/src/Settings/LinkedInAuthSettingsInterface.php \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettingsInterface
  4. 8.3 modules/custom/social_auth_linkedin/src/Settings/LinkedInAuthSettingsInterface.php \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettingsInterface
  5. 8.4 modules/custom/social_auth_linkedin/src/Settings/LinkedInAuthSettingsInterface.php \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettingsInterface
  6. 8.5 modules/custom/social_auth_linkedin/src/Settings/LinkedInAuthSettingsInterface.php \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettingsInterface
  7. 8.6 modules/custom/social_auth_linkedin/src/Settings/LinkedInAuthSettingsInterface.php \Drupal\social_auth_linkedin\Settings\LinkedInAuthSettingsInterface
  8. 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

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\Settings
View 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

Namesort descending Modifiers Type Description Overrides
LinkedInAuthSettingsInterface::getClientId public function Gets the client ID. 1
LinkedInAuthSettingsInterface::getClientSecret public function Gets the client secret. 1
LinkedInAuthSettingsInterface::getSocialNetworkKey public static function Returns key-name of a social network. 1
LinkedInAuthSettingsInterface::isActive public function Returns status of social network. 1