i am wondering what does adding ...
resources.view[] =
... init application.ini actually do?
i know it allows me to access the view from bootstrap by
$this->bootstrap('view');
$view = $this->getResource('view');
but i wonder how does zf know resources.view = zend view? i guess doing that and accessing $view by getResource('view') will create a view initialized using the zend view plugin?
if i dont add the line resources.view[] = my app still has a zend view right? so why is that line required, just to get the view resource?