up vote 20 down vote favorite
7
share [g+] share [fb]

I'm sure it's a simple one-liner, but I can't seem to find it.

How can I use a different layout file for a particular action?

Update: This worked for me, thanks!

// Within controller
$this->_helper->_layout->setLayout('other-layout') //other-layout.phtml

//Within view script
<?php $this->layout()->setLayout('other-layout'); ?>
link|improve this question

68% accept rate
Can someone fix _helper_layout it should be _helper->layout – MitMaro Aug 13 '10 at 13:21
got it. thanks! – Andrew Aug 14 '10 at 22:13
feedback

2 Answers

up vote 22 down vote accepted

From inside a Controller:

$this->_helper->layout->setLayout('/path/to/your/layout_script');

(via these docs)

EDIT: I should mention that the path is relative to whatever your layout directory is (by default, it's application/layouts/scripts/)

link|improve this answer
4  
Or, if the layoutpath is set correctly ($layout->setLayoutPath('application/layouts/scripts')), use $this->_helper_layout->setLayout('alternative_layout') to reference application/layouts/scripts/alternative_layout.phtml. – chelmertz Oct 23 '09 at 21:29
From inside a view: <?php $this->layout()->setLayout('/path/to/your/layout_script') ?> – Travis Oct 23 '09 at 22:05
@Travis: I wouldn't want that kind of logic in a view script unless you only got a really small number of view scripts so you know where to debug for these application critical settings. – chelmertz Oct 23 '09 at 22:52
Do you know how to switch this from the bootstrap class instead. – Starx May 13 '11 at 6:42
feedback

You can also use like this

// Within controller
Zend_Layout::getMvcInstance()->setLayout('layout_name');

//Within view script

<?php $this->layout()->setLayout('layout_name'); ?>

Your layout must be in /layouts/scripts/ folder, otherwise you need to specify the path also. No need to write .phtml, just name of the layout

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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