You are here

interface GoogleAuthSettingsInterface in Social Auth Google 8

Same name and namespace in other branches
  1. 8.2 src/Settings/GoogleAuthSettingsInterface.php \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface
  2. 3.x 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

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();

  /**
   * Gets the Restricted domain.
   *
   * @return string
   *   The Restricted domain.
   */
  public function getRestrictedDomain();

}

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::getRestrictedDomain public function Gets the Restricted domain. 1