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
DetailsZend_Loader_PluginLoader_Interface $_pluginLoader = ''
DetailsZend_Controller_Action_HelperBroker_PriorityStack $_stack = 'null'$_helpers - Helper array
Details__call(
string $method, array $args
)
:
mixedMethod overloading
Details__construct(
Zend_Controller_Action $actionController
)
:
voidConstructor
Details__get(
string $name
)
:
Zend_Controller_Action_Helper_AbstractRetrieve helper by name as object property
Details_loadHelper(
string $name
)
:
voidLoad a helper
Details_normalizeHelperName(
string $name
)
:
stringNormalize helper name for lookups
DetailsaddHelper(
Zend_Controller_Action_Helper_Abstract $helper
)
:
voidaddHelper() - Add helper objects
DetailsaddPath(
string $path, string $prefix
=
Zend_Controller_Action_Helper
)
:
voidaddPath() - Add path to repositories where Action_Helpers could be found.
DetailsaddPrefix(
string $prefix
)
:
addPrefix() - Add repository of helpers by prefix
DetailsgetExistingHelper(
string $name
)
:
Zend_Controller_Action_Helper_AbstractgetExistingHelper() - 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.
DetailsgetExistingHelpers(
)
:
arrayReturn all registered helpers as helper => object pairs
DetailsgetHelper(
string $name
)
:
Zend_Controller_Action_Helper_AbstractgetHelper() - get helper by name
DetailsgetPluginLoader(
)
:
Zend_Loader_PluginLoaderRetrieve PluginLoader
DetailsgetStack(
)
:
Zend_Controller_Action_HelperBroker_PriorityStackLazy load the priority stack and return it
DetailsgetStaticHelper(
string $name
)
:
Zend_Controller_Action_Helper_AbstractRetrieve 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.
DetailshasHelper(
string $name
)
:
booleanIs a particular helper loaded in the broker?
DetailsnotifyPostDispatch(
)
:
voidnotifyPostDispatch() - called by action controller dispatch method
DetailsnotifyPreDispatch(
)
:
voidnotifyPreDispatch() - called by action controller dispatch method
DetailsremoveHelper(
string $name
)
:
booleanRemove a particular helper from the broker
DetailsresetHelpers(
)
:
voidresetHelpers()
DetailssetPluginLoader(
Zend_Loader_PluginLoader_Interface $loader
)
:
voidSet PluginLoader for use with broker
Details