In Zend Framework we can change the file extension of view files from phtml to php by adding following code to controller.

$this->getHelper('viewRenderer')->setViewSuffix('php');

But how to change the file extension for layout files?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Untested, but likely through

Try

$this->getHelper('layout')->getLayoutInstance()->setViewSuffix('php');

You can also try

Zend_Layout::getMvcInstance()->setViewSuffix('php');

There is also Zend_Application_Resource_Layout, so you can likely setup the viewSuffix from your application.ini as well when using Zend_Application, e.g. something like

resources.layout.viewSuffix = php;
link|improve this answer
Thanks, $this->getHelper('layout')->setViewSuffix('php'); it worked for me. – Imran Naqvi Sep 30 '10 at 12:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.