I want to set the title of a web page in Bootstrap. I do something like this in Bootstrap.php:
protected function _initViewHelpers() {
$view = Zend_Layout::getMvcInstance()->getView();
$view->headTitle( 'My Title' );
}
I am getting following error:
Fatal error: Call to a member function getView() on a non-object in /var/www/student/application/Bootstrap.php on line 7
How can I get the view? I have also tried this.