public function SessionProxy_Backend_Base::isStarted in Session Proxy 7
Is session started.
Return value
bool
Overrides SessionProxy_Backend_Interface::isStarted
1 call to SessionProxy_Backend_Base::isStarted()
- SessionProxy_Backend_Base::commit in lib/
SessionProxy/ Backend/ Base.php - Called during shutdown hook time, this allows you to perform additional operations outside of the core PHP session handling at the end of request.
File
- lib/
SessionProxy/ Backend/ Base.php, line 126
Class
Code
public function isStarted() {
return $this->started;
}