I want to set the title of a webpage in Bootstrap. I am doing something similar in Bootstrap.php:
protected function _initViewHelpers() {
$view = Zend_Layout::getMvcInstance()->getView();
$view->headTitle( 'My Title' );
}
I get the 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 an idea? I also tried this .
source
share