interface TwitterAuthSettingsInterface in Open Social 8.9
Same name and namespace in other branches
- 8 modules/custom/social_auth_twitter/src/Settings/TwitterAuthSettingsInterface.php \Drupal\social_auth_twitter\Settings\TwitterAuthSettingsInterface
- 8.2 modules/custom/social_auth_twitter/src/Settings/TwitterAuthSettingsInterface.php \Drupal\social_auth_twitter\Settings\TwitterAuthSettingsInterface
- 8.3 modules/custom/social_auth_twitter/src/Settings/TwitterAuthSettingsInterface.php \Drupal\social_auth_twitter\Settings\TwitterAuthSettingsInterface
- 8.4 modules/custom/social_auth_twitter/src/Settings/TwitterAuthSettingsInterface.php \Drupal\social_auth_twitter\Settings\TwitterAuthSettingsInterface
- 8.5 modules/custom/social_auth_twitter/src/Settings/TwitterAuthSettingsInterface.php \Drupal\social_auth_twitter\Settings\TwitterAuthSettingsInterface
- 8.6 modules/custom/social_auth_twitter/src/Settings/TwitterAuthSettingsInterface.php \Drupal\social_auth_twitter\Settings\TwitterAuthSettingsInterface
- 8.7 modules/custom/social_auth_twitter/src/Settings/TwitterAuthSettingsInterface.php \Drupal\social_auth_twitter\Settings\TwitterAuthSettingsInterface
- 8.8 modules/custom/social_auth_twitter/src/Settings/TwitterAuthSettingsInterface.php \Drupal\social_auth_twitter\Settings\TwitterAuthSettingsInterface
Defines an interface for Social Auth Twitter settings.
Hierarchy
- interface \Drupal\social_auth_twitter\Settings\TwitterAuthSettingsInterface
Expanded class hierarchy of TwitterAuthSettingsInterface
All classes that implement TwitterAuthSettingsInterface
File
- modules/
custom/ social_auth_twitter/ src/ Settings/ TwitterAuthSettingsInterface.php, line 8
Namespace
Drupal\social_auth_twitter\SettingsView source
interface TwitterAuthSettingsInterface {
/**
* Gets the consumer key.
*
* @return string
* The consumer key.
*/
public function getConsumerKey();
/**
* Gets the consumer secret.
*
* @return string
* The consumer secret.
*/
public function getConsumerSecret();
/**
* 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 |
---|---|---|---|---|
TwitterAuthSettingsInterface:: |
public | function | Gets the consumer key. | 1 |
TwitterAuthSettingsInterface:: |
public | function | Gets the consumer secret. | 1 |
TwitterAuthSettingsInterface:: |
public static | function | Returns key-name of a social network. | 1 |
TwitterAuthSettingsInterface:: |
public | function | Returns status of social network. | 1 |