interface GoogleAuthSettingsInterface in Open Social 8.5
Same name and namespace in other branches
- 8.9 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface
- 8 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface
- 8.2 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface
- 8.3 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface
- 8.4 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface
- 8.6 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface
- 8.7 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface
- 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
- interface \Drupal\social_auth_google\Settings\GoogleAuthSettingsInterface
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\SettingsView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
GoogleAuthSettingsInterface:: |
public | function | Gets the client ID. | 1 |
GoogleAuthSettingsInterface:: |
public | function | Gets the client secret. | 1 |
GoogleAuthSettingsInterface:: |
public static | function | Returns key-name of a social network. | 1 |
GoogleAuthSettingsInterface:: |
public | function | Returns status of social network. | 1 |