Why use resources.view.basePath = APPLICATION_PATH "/views" in an application configuration file?

Placing the following code in global Bootstrap.php seems to do the same things - and more:
protected function _initBaseUrl() {
        $this->bootstrap("frontController");
        $front=$this->getResource("frontController");
        $request=new Zend_Controller_Request_Http();
        $front->setRequest($request);
}

If I remove the resources.view.basePath from the configuration file it doesn't seem to make any difference - except for some reason I haven't worked out yet the application seems to load a bit faster.

The project, which is for experimentation, uses multiple modules.

TIA...

Mike A.

Reply via email to