Re: A "Virtual Fields" solution using afterFind

2007-01-23 Thread CreepieDeCrapper
Thanks for the reply. I commented out the constructor and am no longer seeing the error. However, I have this function in my model: function addFieldDisplayName($x) { return $x['ln'].', '.$x['fn']; } But when I try this in my controller it doesn't work: $this->set('contacts', $this->Add

Re: A "Virtual Fields" solution using afterFind

2007-01-22 Thread [EMAIL PROTECTED]
You can take out the constructor. You don't need it. It's for something else. /* public function __construct() { vendor('mylib/Url'); parent::__construct(); } */ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: A "Virtual Fields" solution using afterFind

2007-01-22 Thread CreepieDeCrapper
I am getting a Warning when I try to implement this code: cake/vendors/mylib/Url.php "failed to open stream: No such file or directory in..." Looks like a need the Url.php file in order to use this? --~--~-~--~~~---~--~~ You received this message because you ar

Re: A "Virtual Fields" solution using afterFind

2007-01-22 Thread [EMAIL PROTECTED]
Oh, yeah. Stupid PHP4 and get_class_methods. Possible solution using... http://us2.php.net/get_class_methods#57842 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send emai

Re: A "Virtual Fields" solution using afterFind

2007-01-22 Thread Seb
As per the php doc... As of PHP 5, this function returns the name of the methods as they were declared (case-sensitive). In PHP 4 they were lowercased. Seb. On Jan 22, 9:55 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Crap, I'm stupid. The example method should be... > > function addFi

Re: A "Virtual Fields" solution using afterFind

2007-01-21 Thread [EMAIL PROTECTED]
Crap, I'm stupid. The example method should be... function addFieldFullName($x) { return $x['first_name'] . ' ' . $x['last_name']; } My bad! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. T

A "Virtual Fields" solution using afterFind

2007-01-21 Thread [EMAIL PROTECTED]
Thought this might help someone. If you refactor, please post. I haven't tested in all conditions, though I know it works at least in 1-level recursion. The idea is to be able to dynamically add fields to any of your models (with the smallest footprint)... ie. $full_name = $first_name . ' ' .