interface AuthDataHandlerInterface in Open Social 8.4
Same name and namespace in other branches
- 8.9 modules/custom/social_auth_extra/src/AuthDataHandlerInterface.php \Drupal\social_auth_extra\AuthDataHandlerInterface
- 8 modules/custom/social_auth_extra/src/AuthDataHandlerInterface.php \Drupal\social_auth_extra\AuthDataHandlerInterface
- 8.2 modules/custom/social_auth_extra/src/AuthDataHandlerInterface.php \Drupal\social_auth_extra\AuthDataHandlerInterface
- 8.3 modules/custom/social_auth_extra/src/AuthDataHandlerInterface.php \Drupal\social_auth_extra\AuthDataHandlerInterface
- 8.5 modules/custom/social_auth_extra/src/AuthDataHandlerInterface.php \Drupal\social_auth_extra\AuthDataHandlerInterface
- 8.6 modules/custom/social_auth_extra/src/AuthDataHandlerInterface.php \Drupal\social_auth_extra\AuthDataHandlerInterface
- 8.7 modules/custom/social_auth_extra/src/AuthDataHandlerInterface.php \Drupal\social_auth_extra\AuthDataHandlerInterface
- 8.8 modules/custom/social_auth_extra/src/AuthDataHandlerInterface.php \Drupal\social_auth_extra\AuthDataHandlerInterface
Interface AuthDataHandlerInterface.
@package Drupal\social_auth_extra
Hierarchy
- interface \Drupal\social_auth_extra\AuthDataHandlerInterface
Expanded class hierarchy of AuthDataHandlerInterface
All classes that implement AuthDataHandlerInterface
File
- modules/
custom/ social_auth_extra/ src/ AuthDataHandlerInterface.php, line 10
Namespace
Drupal\social_auth_extraView source
interface AuthDataHandlerInterface {
/**
* Set a key which will be used as prefix for keys in the storage.
*
* @param string $prefix
* Key to use as a prefix in the storage.
*
* @return null
* Returns null.
*/
public function setPrefix($prefix);
/**
* Get a value from a persistent data store.
*
* @param string $key
* A key to request data for.
*
* @return mixed
* Value in the data store.
*/
public function get($key);
/**
* Set a value in the persistent data store.
*
* @param string $key
* The key to store the value by.
* @param mixed $value
* The value to store.
*
* @return null
* Returns null.
*/
public function set($key, $value);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AuthDataHandlerInterface:: |
public | function | Get a value from a persistent data store. | 1 |
AuthDataHandlerInterface:: |
public | function | Set a value in the persistent data store. | 1 |
AuthDataHandlerInterface:: |
public | function | Set a key which will be used as prefix for keys in the storage. | 1 |