Re: [fw-general] Autoloading Doctrine models/base models

2009-10-05 Thread Dodger
Hi Juozas, I sent you an e-mail but I haven't received a reply – did you receive it? D. Juozas wrote: > > Hi Dodger, > > I recommend generating models which are compatible with autoloading. It's > not that hard and requires much less hacking than setting up Zf > autoloading > to work in comp

Re: [fw-general] Autoloading Doctrine models/base models

2009-10-02 Thread Juozas
Hi Dodger, I recommend generating models which are compatible with autoloading. It's not that hard and requires much less hacking than setting up Zf autoloading to work in completely different way it was made for. For example, I have successfully done that by writing my own plugin and task for Do

Re: [fw-general] Autoloading Doctrine models/base models

2009-10-01 Thread Dodger
Hi Matthew, Yes, I read that info in your blog. Unfortunately, my requirements differ. 1. At the moment, I'm not using table classes. 2. I need generated base classes to be autoloaded. You say: "Then use a resource autoloader or module autoloader to do autoloading of your model classes; everyth

Re: [fw-general] Autoloading Doctrine models/base models

2009-10-01 Thread Matthew Weier O'Phinney
-- Dodger wrote (on Wednesday, 30 September 2009, 12:14 PM -0700): > File NameClass PrefixBase Prefix Model Name > -- > Post.php Blog_Model_ Post > (Blog_

[fw-general] Autoloading Doctrine models/base models

2009-09-30 Thread Dodger
I need something like: File NameClass PrefixBase Prefix Model Name -- Post.php Blog_Model_ Post (Blog_Model_Post) BasePost.php Blog_Model_