Class DatabaseSession
DatabaseSession provides methods to be used with Session.
- Cake\Http\Session\DatabaseSession implements SessionHandlerInterface uses Cake\ORM\Locator\LocatorAwareTrait
Properties summary
-
$_table
protected -
$_timeout
protectedNumber of seconds to mark the session as expiredinteger
Inherited Properties
Method Summary
- __construct() public
Constructor. Looks at Session configuration information and sets up the session model.
- close() publicMethod called on close of a database session.
- destroy() publicMethod called on the destruction of a database session.
- gc() publicHelper function called on gc for database sessions.
- open() publicMethod called on open of a database session.
- read() publicMethod used to read from a database session.
- setTimeout() publicSet the timeout value for sessions.
- write() publicHelper function called on write for database sessions.
Method Detail
__construct()source public
__construct( array $config = [] )
Constructor. Looks at Session configuration information and sets up the session model.
Parameters
- array
$config
optional [] The configuration for this engine. It requires the 'model' key to be present corresponding to the Table to use for managing the sessions.
close()source public
close( )
Method called on close of a database session.
Returns
booleanSuccess
Implementation of
SessionHandlerInterface::close()
destroy()source public
destroy( string|integer $id )
Method called on the destruction of a database session.
Parameters
- string|integer
$id
- ID that uniquely identifies session in database.
Returns
booleanTrue for successful delete, false otherwise.
Implementation of
SessionHandlerInterface::destroy()
gc()source public
gc( integer $maxlifetime )
Helper function called on gc for database sessions.
Parameters
- integer
$maxlifetime
- Sessions that have not updated for the last maxlifetime seconds will be removed.
Returns
booleanTrue on success, false on failure.
Implementation of
SessionHandlerInterface::gc()
open()source public
open( string $savePath , string $name )
Method called on open of a database session.
Parameters
- string
$savePath
- The path where to store/retrieve the session.
- string
$name
- The session name.
Returns
booleanSuccess
Implementation of
SessionHandlerInterface::open()
read()source public
read( string|integer $id )
Method used to read from a database session.
Parameters
- string|integer
$id
- ID that uniquely identifies session in database.
Returns
stringSession data or empty string if it does not exist.
Implementation of
SessionHandlerInterface::read()
setTimeout()source public
setTimeout( integer $timeout )
Set the timeout value for sessions.
Primarily used in testing.
Parameters
- integer
$timeout
- The timeout duration.
Returns
$this
write()source public
write( string|integer $id , mixed $data )
Helper function called on write for database sessions.
Parameters
- string|integer
$id
- ID that uniquely identifies session in database.
- mixed
$data
- The data to be saved.
Returns
booleanTrue for successful write, false otherwise.
Implementation of
SessionHandlerInterface::write()
Methods used from Cake\ORM\Locator\LocatorAwareTrait
getTableLocator()source public
getTableLocator( )
Gets the table locator.
Returns
Cake\ORM\Locator\LocatorInterface
setTableLocator()source public
setTableLocator( Cake\ORM\Locator\LocatorInterface $tableLocator )
Sets the table locator.
Parameters
-
Cake\ORM\Locator\LocatorInterface
$tableLocator
- LocatorInterface instance.
Returns
$this
tableLocator()source public deprecated
tableLocator( Cake\ORM\Locator\LocatorInterface $tableLocator = null )
Sets the table locator. If no parameters are passed, it will return the currently used locator.
Deprecated
3.5.0 Use getTableLocator()/setTableLocator() instead.Parameters
-
Cake\ORM\Locator\LocatorInterface
$tableLocator
optional null - LocatorInterface instance.
Returns
Cake\ORM\Locator\LocatorInterface
Properties detail
© 2005–present The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
https://api.cakephp.org/3.7/class-Cake.Http.Session.DatabaseSession.html