1

Is there a simple way of just enable a layout for the actions of a controller, instead of disabling it in all other actions of other controllers in Zend?

Cristiano Santos
  • 2,157
  • 2
  • 35
  • 53

1 Answers1

3
class IndexController extends Zend_Controller_Action
{
    public function init()
    {
        // For all actions
        Zend_Layout::getMvcInstance()->disableLayout();
    }

    public function myAction()
    {
        // For specific action
        Zend_Layout::getMvcInstance()->setLayout('my');
    }
    // ...
}
Alex Pliutau
  • 21,392
  • 27
  • 113
  • 143