up vote 1 down vote favorite
share [g+] share [fb]

Here is what i'm trying to do

<?php
class My_Controller_Plugin_SomePlugin extends Zend_Controller_Plugin_Abstract
{

    public function preDispatch(Zend_Controller_Request_Abstract $request)
    {
             $this->_helper->layout()->disableLayout();
    }
}

but it doesn't work, any ideas on how could i disable the layout inside a plugin ?

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

This should be enough if you are using Zend_Layout::startMvc()

Zend_Layout::getMvcInstance()->disableLayout();
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.