SessionsSchema Class Reference

Inheritance diagram for SessionsSchema:

CakeSchema CakeSchema Object Object

List of all members.


Public Member Functions

 after ($event=array())
 after ($event=array())
 before ($event=array())
 before ($event=array())

Public Attributes

 $cake_sessions
 $name = 'Sessions'

Detailed Description

Definition at line 36 of file sessions.php.


Member Function Documentation

SessionsSchema::after ( event = array()  ) 

After callback to be implemented in subclasses

Parameters:
array $events schema object properties public

Reimplemented from CakeSchema.

Definition at line 44 of file sessions.php.

SessionsSchema::after ( event = array()  ) 

After callback to be implemented in subclasses

Parameters:
array $events schema object properties public

Reimplemented from CakeSchema.

Definition at line 44 of file sessions.php.

SessionsSchema::before ( event = array()  ) 

Before callback to be implemented in subclasses

Parameters:
array $events schema object properties
Returns:
boolean Should process continue public

Reimplemented from CakeSchema.

Definition at line 40 of file sessions.php.

SessionsSchema::before ( event = array()  ) 

Before callback to be implemented in subclasses

Parameters:
array $events schema object properties
Returns:
boolean Should process continue public

Reimplemented from CakeSchema.

Definition at line 40 of file sessions.php.


Member Data Documentation

SessionsSchema::$cake_sessions

Initial value:

 array(
            'id' => array('type'=>'string', 'null' => false, 'key' => 'primary'),
            'data' => array('type'=>'text', 'null' => true, 'default' => NULL),
            'expires' => array('type'=>'integer', 'null' => true, 'default' => NULL),
            'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1))
        )

Definition at line 47 of file sessions.php.

SessionsSchema::$name = 'Sessions'

Reimplemented from CakeSchema.

Definition at line 38 of file sessions.php.


The documentation for this class was generated from the following files: