How to call Controller action in another controller in cakephp?

chetanspeed511987 picture chetanspeed511987 · Jul 7, 2011 · Viewed 11.7k times · Source

I want to use "getpoll" ,which is action of users controller ,in another controller(events controller).

How can i use it?

in advance thanks...to all...

Answer

Headshota picture Headshota · Jul 7, 2011

You can use requestAction method of the controller:

$this->requestAction('/comments/latest');

you can call it differently depending on your needs for details look for the link:

Link to CookBook: Controller requestAction Method