You are here

protected function SessionProxy_Storage_Cache::getCid in Session Proxy 7

Get session CID.

3 calls to SessionProxy_Storage_Cache::getCid()
SessionProxy_Storage_Cache::destroy in lib/SessionProxy/Storage/Cache.php
SessionProxy_Storage_Cache::read in lib/SessionProxy/Storage/Cache.php
SessionProxy_Storage_Cache::write in lib/SessionProxy/Storage/Cache.php

File

lib/SessionProxy/Storage/Cache.php, line 22

Class

SessionProxy_Storage_Cache
Storage implementation based upon a specific cache backend.

Code

protected function getCid($sessionId) {
  return $this->prefix . $sessionId;
}