class Mynamespace_Catalog_ProductController extends Mage_Catalog_ProductController { public function editoAction() { $this->_initProduct(); $this->loadLayout(); $this->renderLayout(); } }
And that’s it, just create your template phtml files and update your xml layouts.
If you want to write PDF files (which was my case) don’t use loadLayout() and renderLayout() in you action controller.