public function SessionProxy_Backend_Base::deleteCurrentSessionCookie in Session Proxy 7
Delete current session cookie
Overrides SessionProxy_Backend_Interface::deleteCurrentSessionCookie
3 calls to SessionProxy_Backend_Base::deleteCurrentSessionCookie()
- SessionProxy_Backend_Base::destroy in lib/SessionProxy/ Backend/ Base.php 
- Destroy session if any
- SessionProxy_Backend_Default::destroy in lib/SessionProxy/ Backend/ Default.php 
- Destroy session if any
- SessionProxy_Backend_Default::destroyProxy in lib/SessionProxy/ Backend/ Default.php 
- Session destroy will require us to update the current logged in user.
File
- lib/SessionProxy/ Backend/ Base.php, line 194 
Class
Code
public function deleteCurrentSessionCookie() {
  SessionProxy_Helper::deleteSessionCookie($this->sessionName);
  if ($this->httpsEnabled) {
    SessionProxy_Helper::deleteSessionCookie($this->sessionNameUnsecure);
  }
}