Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Zend_Controller_Action $_actionController = ''
$_actionController - ActionController reference
Zend_Loader_PluginLoader_Interface $_pluginLoader = ''
Zend_Controller_Action_HelperBroker_PriorityStack $_stack = 'null'
$_helpers - Helper array
__call(
string $method, array $args
)
:
mixed
Method overloading
__construct(
Zend_Controller_Action $actionController
)
:
void
Constructor
__get(
string $name
)
:
Zend_Controller_Action_Helper_Abstract
Retrieve helper by name as object property
_loadHelper(
string $name
)
:
void
Load a helper
_normalizeHelperName(
string $name
)
:
string
Normalize helper name for lookups
addHelper(
Zend_Controller_Action_Helper_Abstract $helper
)
:
void
addHelper() - Add helper objects
addPath(
string $path, string $prefix
=
Zend_Controller_Action_Helper
)
:
void
addPath() - Add path to repositories where Action_Helpers could be found.
addPrefix(
string $prefix
)
:
addPrefix() - Add repository of helpers by prefix
getExistingHelper(
string $name
)
:
Zend_Controller_Action_Helper_Abstract
getExistingHelper() - get helper by name
Static method to retrieve helper object. Only retrieves helpers already initialized with the broker (either via addHelper() or on-demand loading via getHelper()).
Throws an exception if the referenced helper does not exist in the stack; use {@link hasHelper()} to check if the helper is registered prior to retrieving it.
getExistingHelpers(
)
:
array
Return all registered helpers as helper => object pairs
getHelper(
string $name
)
:
Zend_Controller_Action_Helper_Abstract
getHelper() - get helper by name
getPluginLoader(
)
:
Zend_Loader_PluginLoader
Retrieve PluginLoader
getStack(
)
:
Zend_Controller_Action_HelperBroker_PriorityStack
Lazy load the priority stack and return it
getStaticHelper(
string $name
)
:
Zend_Controller_Action_Helper_Abstract
Retrieve or initialize a helper statically
Retrieves a helper object statically, loading on-demand if the helper does not already exist in the stack. Always returns a helper, unless the helper class cannot be found.
hasHelper(
string $name
)
:
boolean
Is a particular helper loaded in the broker?
notifyPostDispatch(
)
:
void
notifyPostDispatch() - called by action controller dispatch method
notifyPreDispatch(
)
:
void
notifyPreDispatch() - called by action controller dispatch method
removeHelper(
string $name
)
:
boolean
Remove a particular helper from the broker
resetHelpers(
)
:
void
resetHelpers()
setPluginLoader(
Zend_Loader_PluginLoader_Interface $loader
)
:
void
Set PluginLoader for use with broker