Problem getting Params in injected controller Zend Framework
- by simple
I have a layout 'profile'
<div>
<div> $this->action(action1, controller1, module1)<div>
<div> $this->layout()->content </div>
<div> $this->action(someotheraction, soController,soModule );
</div
And the problem starts when I want to get the $request-Params() from the action1 , controller1 module1 , it is empty.
I looked at the code of a helper Action , it does accept as a 4th parameter Params, but then I will have to set it somewhere in the layout - which is not good.
Basically what are the recommendations of guru people that are pretty professional with zend Framework. Maybe I should do some work around or should change the concept of how I am injecting additional Controller(module) actions