Zend Framework
1.12
|
Public Member Functions | |
__get ($helperName) | |
Magic property overloading for returning helper by name. | |
__isset ($helperName) | |
Magic property overloading for returning if helper is set by name. | |
__unset ($helperName) | |
Magic property overloading for unsetting if helper is exists by name. | |
push (Zend_Controller_Action_Helper_Abstract $helper) | |
push helper onto the stack | |
getIterator () | |
Return something iterable. | |
offsetExists ($priorityOrHelperName) | |
offsetExists() | |
offsetGet ($priorityOrHelperName) | |
offsetGet() | |
offsetSet ($priority, $helper) | |
offsetSet() | |
offsetUnset ($priorityOrHelperName) | |
offsetUnset() | |
count () | |
return the count of helpers | |
getNextFreeHigherPriority ($indexPriority=null) | |
Find the next free higher priority. | |
getNextFreeLowerPriority ($indexPriority=null) | |
Find the next free lower priority. | |
getHighestPriority () | |
return the highest priority | |
getLowestPriority () | |
return the lowest priority | |
getHelpersByName () | |
return the helpers referenced by name | |
Protected Attributes | |
$_helpersByPriority = array() | |
$_helpersByNameRef = array() | |
$_nextDefaultPriority = 1 | |
__get | ( | $helperName | ) |
Magic property overloading for returning helper by name.
string | $helperName | The helper name |
__isset | ( | $helperName | ) |
Magic property overloading for returning if helper is set by name.
string | $helperName | The helper name |
__unset | ( | $helperName | ) |
Magic property overloading for unsetting if helper is exists by name.
string | $helperName | The helper name |
count | ( | ) |
return the count of helpers
getHelpersByName | ( | ) |
return the helpers referenced by name
getHighestPriority | ( | ) |
return the highest priority
getIterator | ( | ) |
Return something iterable.
getLowestPriority | ( | ) |
return the lowest priority
getNextFreeHigherPriority | ( | $indexPriority = null | ) |
Find the next free higher priority.
If an index is given, it will find the next free highest priority after it.
int | $indexPriority | OPTIONAL |
getNextFreeLowerPriority | ( | $indexPriority = null | ) |
Find the next free lower priority.
If an index is given, it will find the next free lower priority before it.
int | $indexPriority |
offsetExists | ( | $priorityOrHelperName | ) |
int | string | $priorityOrHelperName |
offsetGet | ( | $priorityOrHelperName | ) |
int | string | $priorityOrHelperName |
offsetSet | ( | $priority, | |
$helper | |||
) |
int | $priority | |
Zend_Controller_Action_Helper_Abstract | $helper |
offsetUnset | ( | $priorityOrHelperName | ) |
int | string | $priorityOrHelperName | Priority integer or the helper name |
push | ( | Zend_Controller_Action_Helper_Abstract | $helper | ) |
push helper onto the stack
Zend_Controller_Action_Helper_Abstract | $helper |
|
protected |
|
protected |
|
protected |