In a controller, what is the most appropriate way to call the action of another controller and also pass an array as parameter?
I know that you can use requestAction
CakePHP 2.X:
constructClasses(); //Call a method of Posts passing a parameter $Posts->aMethod($parameter); } }