Im creating a behavior tha need to log the current controller. How can I get the current controller from model in cakephp?

link|improve this question

what version of PHP are you using? – DampeS8N Dec 15 '10 at 15:33
feedback

5 Answers

One of PHP's Magic Constants is __CLASS__ which will return the class name of the object it is within. This may get you what you need.

http://php.net/manual/en/language.constants.predefined.php

Magic Constants and Methods are fun.

link|improve this answer
I'm curious why someone downvoted this? It's the start of a solution that looks like it would work (even if it's nonoptimal). Please leave a comment if you downvote. – Travis Leleu Dec 15 '10 at 19:09
I wish I knew too. Probably there is some way in Cake. I don't use cake, so I don't know. Maybe Cake doesn't uses classes for controllers? Who knows. – DampeS8N Dec 15 '10 at 19:29
I didn't downvote this answer, but doesn't this just return the name of the behavior? – dhofstet Dec 16 '10 at 10:26
yeap...this returns the name of the behavior – rizidoro Dec 16 '10 at 11:13
Hence the "may" in my answer. Since many frameworks chose to wrap the controller in a class. (CodeIgniter for example) If Cake doesn't, but does something else to make Controllers work, then yeah, this won't help. – DampeS8N Dec 16 '10 at 12:38
show 2 more comments
feedback
$GLOBALS['Dispatcher']->params['controller']

will give you the controller name

link|improve this answer
feedback

Try this. if u only need the name of the controller.

Inflector::pluralize($this->name);
link|improve this answer
2  
Downvoted because you cannot derive a controller's name from a model name as a model can be used from different controllers. – dhofstet Dec 16 '10 at 6:03
@dhofestet : thankz for correcting.i didn't thought of that case. :( – RSK Dec 16 '10 at 16:46
feedback
up vote -1 down vote accepted

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 ?

link|improve this answer
Depending on what you try to accomplish you could write a component. – dhofstet Dec 16 '10 at 14:37
feedback

I know this question is pretty old, but the proper solution here would be:

$this->params['controller']

For more information on the 'params' attribute:
http://book.cakephp.org/view/963/The-Parameters-Attribute-params

link|improve this answer
$this->params is not accessible inside Model – rizidoro Feb 15 at 13:49
@rizidoro The model should have no awareness of any other MVC aspect than itself. A better way to do this would be getting the controller name in the controller and passing it to the model as an argument. – TheBigB Mar 3 at 15:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.