Here is the code I have:
$this->getView()->setScriptPath($templatePath);
$this->_helper->viewRenderer($page);
This code is processed in an action of the form Core_PageController. The problem that I see now is that the view object is looking for my script files in $templatePath/page, since the page is the controller. I would like the view object to look only at the directory path $templatePath(without the page directory);
Thanks for the help!
source
share