Zend Framework  1.12
Public Attributes | Static Protected Member Functions | Static Protected Attributes | List of all members
Zend_Session_Abstract Class Reference

Public Attributes

const _THROW_NOT_WRITABLE_MSG = 'Zend_Session is currently marked as read-only.'
 Error message thrown when an action requires modification, but current Zend_Session has been marked as read-only.
 
const _THROW_NOT_READABLE_MSG = 'Zend_Session is not marked as readable.'
 Error message thrown when an action requires reading session data, but current Zend_Session is not marked as readable.
 

Static Protected Member Functions

static _namespaceIsset ($namespace, $name=null)
 namespaceIsset() - check to see if a namespace or a variable within a namespace is set
 
static _namespaceUnset ($namespace, $name=null)
 namespaceUnset() - unset a namespace or a variable within a namespace
 
static & _namespaceGet ($namespace, $name=null)
 namespaceGet() - Get $name variable from $namespace, returning by reference.
 
static _namespaceGetAll ($namespace)
 namespaceGetAll() - Get an array containing $namespace, including expiring data.
 

Static Protected Attributes

static $_writable = false
 
static $_readable = false
 
static $_expiringData = array()
 

Member Function Documentation

static& _namespaceGet (   $namespace,
  $name = null 
)
staticprotected

namespaceGet() - Get $name variable from $namespace, returning by reference.

Parameters
string$namespace
string$name
Returns
mixed
See Also
Zend_Session_Exception
static _namespaceGetAll (   $namespace)
staticprotected

namespaceGetAll() - Get an array containing $namespace, including expiring data.

Parameters
string$namespace
string$name
Returns
mixed
static _namespaceIsset (   $namespace,
  $name = null 
)
staticprotected

namespaceIsset() - check to see if a namespace or a variable within a namespace is set

Parameters
string$namespace
string$name
Returns
bool
See Also
Zend_Session_Exception
static _namespaceUnset (   $namespace,
  $name = null 
)
staticprotected

namespaceUnset() - unset a namespace or a variable within a namespace

Parameters
string$namespace
string$name
Exceptions
Zend_Session_Exception
Returns
void
See Also
Zend_Session_Exception

Member Data Documentation

$_expiringData = array()
staticprotected
$_readable = false
staticprotected
$_writable = false
staticprotected
const _THROW_NOT_READABLE_MSG = 'Zend_Session is not marked as readable.'

Error message thrown when an action requires reading session data, but current Zend_Session is not marked as readable.

const _THROW_NOT_WRITABLE_MSG = 'Zend_Session is currently marked as read-only.'

Error message thrown when an action requires modification, but current Zend_Session has been marked as read-only.