I'm using various modules and a parent controller to keep consistancy.
My parent controller has a bunch of common actions that each of the subsequent child controllers need to have access to. I'm finding it difficult to make this default action render a correct view.
I do NOT want to have to add the same view to each of my modules - that would defeat the object - but i would like to have a default view somewhere.
I have tried:
$this->_forward('commonaction', 'baselayout', 'default');
This doesnt work for me - as it tries to process the action again - when i've already populated the variables needed within my parent controller.
Any help would be awesom.
UPDATE:
To clarify i want to be able to use a common view from a different module. All exampels and solutions currently assume a common module. THis doesnt work for me.