Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some action and I don't want to use usual layout for it. Can I indicate in action that I want to use different layout then the default one? How can I do it?

share|improve this question

1 Answer

up vote 3 down vote accepted

Check out the Zend Documentation for layouts.

Change Layout:

$this->_helper->layout->setLayout('foobaz');

Disable Layout:

$this->_helper->layout->disableLayout();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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