To get the view object
- witin view script
$view = $this;
- within action controller
$view = $this->view;
- within bootstrap
$this->bootstrap(‘view’); $view = $this->getResource(‘view’);
- within resource plugin
$this->getBootstrap()->bootstrap('view'); $view = $this->getBootstrap()->getResource('view');