Im creating a behavior tha need to log the current controller. How can I get the current controller from model in cakephp?
feedback
|
|
One of PHP's Magic Constants is http://php.net/manual/en/language.constants.predefined.php Magic Constants and Methods are fun. | |||||||||||
feedback
|
will give you the controller name | |||
|
feedback
|
|
Try this. if u only need the name of the controller.
| |||||||
feedback
|
|
I found a solution, it's not pretty but worked for me. I just use the $_REQUEST['url'] and catch de controller name by url. The downside of this solution, is that if you have a route different for default, this solution will not work... anyone have a better approach ? | |||
|
feedback
|
|
I know this question is pretty old, but the proper solution here would be:
For more information on the 'params' attribute: | |||||
feedback
|