You are here

interface GoogleAuthSettingsInterface in Open Social 8.3

Same name and namespace in other branches
  1. 8.9 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface
  2. 8 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface
  3. 8.2 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface
  4. 8.4 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface
  5. 8.5 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface
  6. 8.6 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface
  7. 8.7 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface
  8. 8.8 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface

Defines an interface for Social Auth Google settings.

Hierarchy

Expanded class hierarchy of GoogleAuthSettingsInterface

All classes that implement GoogleAuthSettingsInterface

File

modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php, line 8

Namespace

Drupal\social_auth_google\Settings
View source
interface GoogleAuthSettingsInterface {

  /**
   * 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
GoogleAuthSettingsInterface::getClientId public function Gets the client ID. 1
GoogleAuthSettingsInterface::getClientSecret public function Gets the client secret. 1
GoogleAuthSettingsInterface::getSocialNetworkKey public static function Returns key-name of a social network. 1
GoogleAuthSettingsInterface::isActive public function Returns status of social network. 1