I have a function in appmodel function describe() { return $this->query("describe $this->useTable;") }
I want to call this function from every controller In my appcontroller I want to have this function function describe() { $describe = $this->[myModel]->describe(); $this->set('describe',$describe) } In my other controllers describe function I 'll call the appcontroller describe. How do I refer to the controller's model from appcontroller? Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send email to cake-php+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en