I have a login.phtml view that would like to put in a common path and get it accessed by any module through the application.
For sidebars rendered by $this->render('common/sidebar.phtnl')
it works since my layout is a single one for all modules.
But when it comes to the content $this->layout()->content
, if I add a helper to the result view like $this->login()
Zend keeps looking for it on the module scripts path.
How can it be possible to make my content view render another common view througth a helper even if my flow is a result of a module?