how to get the information in cakephp 2.3 which was in $this->params in cakephp 1.3 ?
So, the following array with the information of, say, controller, action, arguments, url etc.
Array
(
[controller] => posts
[action] => view
[named] => Array
(
)
[pass] => Array
(
[0] => 3
)
[plugin] =>
[form] => Array
(
)
[url] => Array
(
[url] => posts/view/3
)
[isAjax] =>
)
debugging $this->request and $this->params inside beforeFilter() in my AppController it just shows null for both of them.
Cake version 2.3.1
EDITED
Thanks