Zend_RegistryGeneric storage class helps to manage global data.
Located in /Registry.php (line 30)
ArrayObject | --Zend_Registry
static get (line 141)
getter method, basically same as offsetGet().
This method can be called from an object of type Zend_Registry, or it can be called statically. In the latter case, it uses the default static instance stored in the class.
static getInstance (line 49)
Retrieves the default registry instance.
static init (line 82)
Initialize the default registry instance.
static isRegistered (line 178)
Returns TRUE if the $index is a named value in the registry, or FALSE if $index was not found in the registry.
static set (line 165)
setter method, basically same as offsetSet().
This method can be called from an object of type Zend_Registry, or it can be called statically. In the latter case, it uses the default static instance stored in the class.
static setClassName (line 97)
Set the class name to use for the default registry instance.
Does not affect the currently initialized instance, it only applies for the next time you instantiate.
static setInstance (line 66)
Set the default registry instance to a specified instance.
static _unsetInstance (line 125)
Unset the default registry instance.
Primarily used in tearDown() in unit tests.
Constructor __construct (line 193)
Constructs a parent ArrayObject with default ARRAY_AS_PROPS to allow acces as an object
offsetExists (line 204)
Inherited From ArrayObject (Internal Class)
constructor __construct ( $array )
append ( $value )
asort ( )
count ( )
exchangeArray ( $array )
getArrayCopy ( )
getFlags ( )
getIterator ( )
getIteratorClass ( )
ksort ( )
natcasesort ( )
natsort ( )
offsetExists ( $index )
offsetGet ( $index )
offsetSet ( $index, $newval )
offsetUnset ( $index )
setFlags ( $flags )
setIteratorClass ( $iteratorClass )
uasort ( $cmp_function )
uksort ( $cmp_function )
Documentation generated on Mon, 21 Jun 2010 15:41:44 -0400 by phpDocumentor 1.4.3