Inheritance diagram for Component:

Public Member Functions | |
| _loadComponents (&$object, $parent=null) | |
| beforeRedirect (&$controller, $url, $status=null, $exit=true) | |
| beforeRender (&$controller) | |
| init (&$controller) | |
| initialize (&$controller) | |
| shutdown (&$controller) | |
| startup (&$controller) | |
Public Attributes | |
| $__controllerVars = array('plugin' => null, 'name' => null, 'base' => null) | |
| $__settings = array() | |
| $_loaded = array() | |
| $_primary = array() | |
Definition at line 31 of file component.php.
| Component::_loadComponents | ( | &$ | object, | |
| $ | parent = null | |||
| ) |
Loads components used by this component.
| object | $object Object with a Components array | |
| object | $parent the parent of the current object |
Definition at line 178 of file component.php.
References $config, Object::cakeError(), App::import(), Set::merge(), name(), Set::normalize(), and underscore().
Referenced by init().
| Component::beforeRedirect | ( | &$ | controller, | |
| $ | url, | |||
| $ | status = null, |
|||
| $ | exit = true | |||
| ) |
Called before Controller::redirect().
| object | $controller Controller with components to beforeRedirect |
Definition at line 139 of file component.php.
References $url.
| Component::beforeRender | ( | &$ | controller | ) |
Called after the Controller::beforeRender(), after the view class is loaded, and before the Controller::render()
| object | $controller Controller with components to beforeRender |
Definition at line 124 of file component.php.
| Component::init | ( | &$ | controller | ) |
Used to initialize the components for current controller.
| object | $controller Controller with components to load |
Definition at line 68 of file component.php.
References _loadComponents(), and name().
| Component::initialize | ( | &$ | controller | ) |
Called before the Controller::beforeFilter().
| object | $controller Controller with components to initialize |
Definition at line 87 of file component.php.
| Component::shutdown | ( | &$ | controller | ) |
Called after Controller::render() and before the output is printed to the browser.
| object | $controller Controller with components to shutdown |
Definition at line 162 of file component.php.
| Component::startup | ( | &$ | controller | ) |
Called after the Controller::beforeFilter() and before the controller action
| object | $controller Controller with components to startup |
Definition at line 108 of file component.php.
| Component::$__controllerVars = array('plugin' => null, 'name' => null, 'base' => null) |
Definition at line 38 of file component.php.
| Component::$__settings = array() |
Definition at line 60 of file component.php.
| Component::$_loaded = array() |
Definition at line 45 of file component.php.
| Component::$_primary = array() |
Definition at line 53 of file component.php.
1.4.7