Home
last modified time | relevance | path

Searched refs:sessionBackend (Results 1 – 18 of 18) sorted by relevance

/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/Session/
H A DUserSessionManager.php53 protected SessionBackendInterface $sessionBackend; variable in TYPO3\\CMS\\Core\\Session\\UserSessionManager
59 * @param SessionBackendInterface $sessionBackend
66 $this->sessionBackend = $sessionBackend;
126 $sessionRecord = $this->sessionBackend->get($sessionId);
194 $this->sessionBackend->remove($sessionId);
236 $this->sessionBackend->set($newSessionId, $existingSessionRecord);
237 $this->sessionBackend->remove($sessionId);
254 $this->sessionBackend->update($session->getIdentifier(), []);
267 $this->sessionBackend->remove($session->getIdentifier());
280 $this->sessionBackend->collectGarbage(
[all …]
H A DSessionManager.php60 … $sessionBackend = $this->createSessionBackendFromConfiguration($identifier, $configuration);
63 $sessionBackend->validateConfiguration();
64 $this->sessionBackends[$identifier] = $sessionBackend;
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/beuser/Classes/Domain/Repository/
H A DBackendUserSessionRepository.php30 protected SessionBackendInterface $sessionBackend; variable in TYPO3\\CMS\\Beuser\\Domain\\Repository\\BackendUserSessionRepository
34 …$this->sessionBackend = GeneralUtility::makeInstance(SessionManager::class)->getSessionBackend('BE…
44 $allSessions = $this->sessionBackend->getAll();
88 if ($this->sessionBackend instanceof HashableSessionBackendInterface) {
89 $currentSessionId = $this->sessionBackend->hash($currentSessionId);
96 return $this->sessionBackend->remove($sessionIdentifier);
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Documentation/Changelog/8.7.x/
H A DImportant-87298-DestroySessionsOnPasswordChange.rst30 $sessionBackend = $sessionManager->getSessionBackend('BE');
31 $sessionManager->invalidateAllSessionsByUserId($sessionBackend, (int)$id);
35 $sessionBackend = $sessionManager->getSessionBackend('FE');
36 $sessionManager->invalidateAllSessionsByUserId($sessionBackend, (int)$id);
40 $sessionBackend = $sessionManager->getSessionBackend('BE');
41 $sessionManager->invalidateAllSessionsByUserId($sessionBackend, (int)$id, $GLOBALS['BE_USER']);
45 $sessionBackend = $sessionManager->getSessionBackend('FE');
46 …$sessionManager->invalidateAllSessionsByUserId($sessionBackend, (int)$id, $GLOBALS['TSFE']->fe_use…
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/core/Documentation/Changelog/8.7.x/
H A DImportant-87298-DestroySessionsOnPasswordChange.rst30 $sessionBackend = $sessionManager->getSessionBackend('BE');
31 $sessionManager->invalidateAllSessionsByUserId($sessionBackend, (int)$id);
35 $sessionBackend = $sessionManager->getSessionBackend('FE');
36 $sessionManager->invalidateAllSessionsByUserId($sessionBackend, (int)$id);
40 $sessionBackend = $sessionManager->getSessionBackend('BE');
41 $sessionManager->invalidateAllSessionsByUserId($sessionBackend, (int)$id, $GLOBALS['BE_USER']);
45 $sessionBackend = $sessionManager->getSessionBackend('FE');
46 …$sessionManager->invalidateAllSessionsByUserId($sessionBackend, (int)$id, $GLOBALS['TSFE']->fe_use…
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Documentation/Changelog/8.7.x/
H A DImportant-87298-DestroySessionsOnPasswordChange.rst30 $sessionBackend = $sessionManager->getSessionBackend('BE');
31 $sessionManager->invalidateAllSessionsByUserId($sessionBackend, (int)$id);
35 $sessionBackend = $sessionManager->getSessionBackend('FE');
36 $sessionManager->invalidateAllSessionsByUserId($sessionBackend, (int)$id);
40 $sessionBackend = $sessionManager->getSessionBackend('BE');
41 $sessionManager->invalidateAllSessionsByUserId($sessionBackend, (int)$id, $GLOBALS['BE_USER']);
45 $sessionBackend = $sessionManager->getSessionBackend('FE');
46 …$sessionManager->invalidateAllSessionsByUserId($sessionBackend, (int)$id, $GLOBALS['TSFE']->fe_use…
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/beuser/Classes/Domain/Repository/
H A DBackendUserSessionRepository.php38 $sessionBackend = $this->getSessionBackend();
39 $allSessions = $sessionBackend->getAll();
87 $sessionBackend = $this->getSessionBackend();
89 $sessionBackend->update(
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/beuser/Classes/Domain/Repository/
H A DBackendUserSessionRepository.php37 $sessionBackend = $this->getSessionBackend();
38 $allSessions = $sessionBackend->getAll();
86 $sessionBackend = $this->getSessionBackend();
88 $sessionBackend->update(
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/core/Classes/Session/
H A DSessionManager.php58 … $sessionBackend = $this->createSessionBackendFromConfiguration($identifier, $configuration);
61 $sessionBackend->validateConfiguration();
62 $this->sessionBackends[$identifier] = $sessionBackend;
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Classes/Session/
H A DSessionManager.php60 … $sessionBackend = $this->createSessionBackendFromConfiguration($identifier, $configuration);
63 $sessionBackend->validateConfiguration();
64 $this->sessionBackends[$identifier] = $sessionBackend;
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/beuser/Classes/Controller/
H A DBackendUserController.php192 $sessionBackend = $this->getSessionBackend();
193 if ($sessionBackend instanceof HashableSessionBackendInterface) {
194 $currentSessionId = $sessionBackend->hash($currentSessionId);
253 $sessionBackend = $this->getSessionBackend();
254 $success = $sessionBackend->remove($sessionId);
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/backend/Classes/Controller/
H A DSwitchUserController.php44 protected SessionBackendInterface $sessionBackend; variable in TYPO3\\CMS\\Backend\\Controller\\SwitchUserController
54 …$this->sessionBackend = GeneralUtility::makeInstance(SessionManager::class)->getSessionBackend('BE…
96 $this->sessionBackend->update($sessionObject->getIdentifier(), $sessionRecord);
129 $this->sessionBackend->update($sessionObject->getIdentifier(), $sessionRecord);
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/beuser/Classes/Controller/
H A DBackendUserController.php177 $sessionBackend = $this->getSessionBackend();
178 if ($sessionBackend instanceof HashableSessionBackendInterface) {
179 $currentSessionId = $sessionBackend->hash($currentSessionId);
307 $sessionBackend = $this->getSessionBackend();
308 $success = $sessionBackend->remove($sessionId);
/dports/databases/soci/soci-4.0.1/include/soci/postgresql/
H A Dsoci-postgresql.h62 postgresql_session_backend & sessionBackend, in postgresql_result() argument
64 : sessionBackend_(sessionBackend) in postgresql_result()
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Classes/Authentication/
H A DAbstractUserAuthentication.php313 protected $sessionBackend; variable in TYPO3\\CMS\\Core\\Authentication\\AbstractUserAuthentication
1538 if (!isset($this->sessionBackend)) {
1539 …$this->sessionBackend = GeneralUtility::makeInstance(SessionManager::class)->getSessionBackend($th…
1541 return $this->sessionBackend;
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/core/Classes/Authentication/
H A DAbstractUserAuthentication.php342 protected $sessionBackend; variable in TYPO3\\CMS\\Core\\Authentication\\AbstractUserAuthentication
1669 if (!isset($this->sessionBackend)) {
1670 …$this->sessionBackend = GeneralUtility::makeInstance(SessionManager::class)->getSessionBackend($th…
1672 return $this->sessionBackend;
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/felogin/Classes/Controller/
H A DFrontendLoginController.php1141 $sessionBackend = $sessionManager->getSessionBackend('FE');
1142 …$sessionManager->invalidateAllSessionsByUserId($sessionBackend, $userId, $this->frontendController…
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/felogin/Classes/Controller/
H A DFrontendLoginController.php1123 $sessionBackend = $sessionManager->getSessionBackend('FE');
1124 …$sessionManager->invalidateAllSessionsByUserId($sessionBackend, $userId, $this->frontendController…