GoogleAuthSettingsInterface.php in Open Social 8.9
Same filename and directory in other branches
- 8 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php
- 8.2 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php
- 8.3 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php
- 8.4 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php
- 8.5 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php
- 8.6 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php
- 8.7 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php
- 8.8 modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.php
Namespace
Drupal\social_auth_google\SettingsFile
modules/custom/social_auth_google/src/Settings/GoogleAuthSettingsInterface.phpView source
<?php
namespace Drupal\social_auth_google\Settings;
/**
* Defines an interface for Social Auth Google settings.
*/
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();
}
Interfaces
Name | Description |
---|---|
GoogleAuthSettingsInterface | Defines an interface for Social Auth Google settings. |