CakePHP
  • Documentation
    • Book
    • API
    • Videos
    • Reporting Security Issues
    • Privacy Policy
    • Logos & Trademarks
  • Business Solutions
  • Swag
  • Road Trip
  • Team
  • Community
    • Community
    • Get Involved
    • Issues (GitHub)
    • Bakery
    • Featured Resources
    • Training
    • Meetups
    • My CakePHP
    • CakeFest
    • Newsletter
    • Linkedin
    • YouTube
    • Facebook
    • Twitter
    • Mastodon
    • Help & Support
    • Forum
    • Stack Overflow
    • Slack
    • Paid Support
CakePHP

C CakePHP 2.4 API

  • Overview
  • Tree
  • Deprecated
  • Version:
    • 2.4
      • 4.2
      • 4.1
      • 4.0
      • 3.9
      • 3.8
      • 3.7
      • 3.6
      • 3.5
      • 3.4
      • 3.3
      • 3.2
      • 3.1
      • 3.0
      • 2.10
      • 2.9
      • 2.8
      • 2.7
      • 2.6
      • 2.5
      • 2.4
      • 2.3
      • 2.2
      • 2.1
      • 2.0
      • 1.3
      • 1.2

Packages

  • Cake
    • Cache
      • Engine
    • Configure
    • Console
      • Command
        • Task
    • Controller
      • Component
        • Acl
        • Auth
    • Core
    • Error
    • Event
    • I18n
    • Log
      • Engine
    • Model
      • Behavior
      • Datasource
        • Database
        • Session
      • Validator
    • Network
      • Email
      • Http
    • Routing
      • Filter
      • Route
    • TestSuite
      • Coverage
      • Fixture
      • Reporter
    • Utility
    • View
      • Helper

Classes

  • CacheSession
  • DatabaseSession

Interfaces

  • CakeSessionHandlerInterface
 1: <?php
 2: /**
 3:  * Cache Session save handler. Allows saving session information into Cache.
 4:  *
 5:  * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
 6:  * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
 7:  *
 8:  * Licensed under The MIT License
 9:  * For full copyright and license information, please see the LICENSE.txt
10:  * Redistributions of files must retain the above copyright notice.
11:  *
12:  * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
13:  * @link          http://cakephp.org CakePHP(tm) Project
14:  * @package       Cake.Model.Datasource.Session
15:  * @since         CakePHP(tm) v 2.0
16:  * @license       http://www.opensource.org/licenses/mit-license.php MIT License
17:  */
18: 
19: App::uses('Cache', 'Cache');
20: App::uses('CakeSessionHandlerInterface', 'Model/Datasource/Session');
21: 
22: /**
23:  * CacheSession provides method for saving sessions into a Cache engine. Used with CakeSession
24:  *
25:  * @package       Cake.Model.Datasource.Session
26:  * @see CakeSession for configuration information.
27:  */
28: class CacheSession implements CakeSessionHandlerInterface {
29: 
30: /**
31:  * Method called on open of a database session.
32:  *
33:  * @return boolean Success
34:  */
35:     public function open() {
36:         return true;
37:     }
38: 
39: /**
40:  * Method called on close of a database session.
41:  *
42:  * @return boolean Success
43:  */
44:     public function close() {
45:         return true;
46:     }
47: 
48: /**
49:  * Method used to read from a database session.
50:  *
51:  * @param string $id The key of the value to read
52:  * @return mixed The value of the key or false if it does not exist
53:  */
54:     public function read($id) {
55:         return Cache::read($id, Configure::read('Session.handler.config'));
56:     }
57: 
58: /**
59:  * Helper function called on write for database sessions.
60:  *
61:  * @param integer $id ID that uniquely identifies session in database
62:  * @param mixed $data The value of the data to be saved.
63:  * @return boolean True for successful write, false otherwise.
64:  */
65:     public function write($id, $data) {
66:         return Cache::write($id, $data, Configure::read('Session.handler.config'));
67:     }
68: 
69: /**
70:  * Method called on the destruction of a database session.
71:  *
72:  * @param integer $id ID that uniquely identifies session in cache
73:  * @return boolean True for successful delete, false otherwise.
74:  */
75:     public function destroy($id) {
76:         return Cache::delete($id, Configure::read('Session.handler.config'));
77:     }
78: 
79: /**
80:  * Helper function called on gc for cache sessions.
81:  *
82:  * @param integer $expires Timestamp (defaults to current time)
83:  * @return boolean Success
84:  */
85:     public function gc($expires = null) {
86:         return Cache::gc(Configure::read('Session.handler.config'), $expires);
87:     }
88: 
89: }
90: 
OpenHub
Rackspace
Rackspace
  • Business Solutions
  • Showcase
  • Documentation
  • Book
  • API
  • Videos
  • Reporting Security Issues
  • Privacy Policy
  • Logos & Trademarks
  • Community
  • Get Involved
  • Issues (GitHub)
  • Bakery
  • Featured Resources
  • Training
  • Meetups
  • My CakePHP
  • CakeFest
  • Newsletter
  • Linkedin
  • YouTube
  • Facebook
  • Twitter
  • Mastodon
  • Help & Support
  • Forum
  • Stack Overflow
  • Slack
  • Paid Support

Generated using CakePHP API Docs