Is it possible to get the filename of a phtml file that's been assign to Zend_View?
For instance,
i've got this on my controller
$this->view = new Zend_View();
$this->view->setScriptPath(APPLICATION_PATH . "/views/scripts/"); $this->view->render('email/xxx.phtml');
the question is,
how do I get 'email/xxx.phtml' from the object?