public function AuthSessionDataHandler::get in Open Social 8.5
Same name and namespace in other branches
- 8.9 modules/custom/social_auth_extra/src/AuthSessionDataHandler.php \Drupal\social_auth_extra\AuthSessionDataHandler::get()
- 8 modules/custom/social_auth_extra/src/AuthSessionDataHandler.php \Drupal\social_auth_extra\AuthSessionDataHandler::get()
- 8.2 modules/custom/social_auth_extra/src/AuthSessionDataHandler.php \Drupal\social_auth_extra\AuthSessionDataHandler::get()
- 8.3 modules/custom/social_auth_extra/src/AuthSessionDataHandler.php \Drupal\social_auth_extra\AuthSessionDataHandler::get()
- 8.4 modules/custom/social_auth_extra/src/AuthSessionDataHandler.php \Drupal\social_auth_extra\AuthSessionDataHandler::get()
- 8.6 modules/custom/social_auth_extra/src/AuthSessionDataHandler.php \Drupal\social_auth_extra\AuthSessionDataHandler::get()
- 8.7 modules/custom/social_auth_extra/src/AuthSessionDataHandler.php \Drupal\social_auth_extra\AuthSessionDataHandler::get()
- 8.8 modules/custom/social_auth_extra/src/AuthSessionDataHandler.php \Drupal\social_auth_extra\AuthSessionDataHandler::get()
Get a value from a persistent data store.
Parameters
string $key: A key to request data for.
Return value
mixed Value in the data store.
Overrides AuthDataHandlerInterface::get
File
- modules/
custom/ social_auth_extra/ src/ AuthSessionDataHandler.php, line 41
Class
- AuthSessionDataHandler
- Class AuthSessionDataHandler.
Namespace
Drupal\social_auth_extraCode
public function get($key) {
return $this->session
->get($this->sessionPrefix . $key);
}