Re: Accessing models

2009-12-05 Thread Piotr Kilczuk
Hello, I have another model that keeps giving me this error. Fatal error: Class 'StatisticsUser' not found in ... the problem that I think I'm having is that this is the join table for users and statistics. how do I write to this table properly thru cake? So do you have that class

Re: Accessing models

2009-12-05 Thread Walther
That is the wrong way. You should use $Model = ClassRegistry::init('ModelName); On Nov 30, 11:07 pm, brassman79 a...@asteriskpound.com wrote: so I figured out that I can access a model to save and retrieve data from components by saying $myvar = new ModelName(); etc. I have another model

Accessing models

2009-11-30 Thread brassman79
so I figured out that I can access a model to save and retrieve data from components by saying $myvar = new ModelName(); etc. I have another model that keeps giving me this error. Fatal error: Class 'StatisticsUser' not found in ... the problem that I think I'm having is that this is the join

Accessing models from outside their main controller

2008-04-20 Thread Opblah
I just started working with CakePHP today, and I was wondering how to access a model from within a component. MVC Class Access Within Components (http://book.cakephp.org/view/65/ mvc-class-access-within-compon) talks about how to get access to the current controller, but if I'm using the

Re: Accessing models from outside their main controller

2008-04-20 Thread Sliv
Components do not load models automatically, you have to manually load them with: component: function startup(controller) { App::import('Model', 'ModelName'); $MyModel = new ModelName; } I just started working with CakePHP today, and I was wondering how to access a model from within a

Re: Accessing models from outside their main controller

2008-04-20 Thread Daddy Cool
Wouldn't it be also possible to use the controllers method ? == var $uses = array('model1','model2'); --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups CakePHP group. To post to this group, send email to

Re: Accessing models from outside their main controller

2008-04-20 Thread b logica
There's no such var in a component, though, so declaring it wouldn't have any effect. On Sun, Apr 20, 2008 at 10:43 PM, Daddy Cool [EMAIL PROTECTED] wrote: Wouldn't it be also possible to use the controllers method ? == var $uses = array('model1','model2');

Re: Accessing models from outside their main controller

2008-04-20 Thread Smelly_Eddie
I tried that, I get; Fatal error: Class 'App' not found in /srv/www/htdocs/cake/app/ controllers/components/tickets.php on line 3 What does that mean? On Apr 20, 9:01 am, Sliv [EMAIL PROTECTED] wrote: Components do not load models automatically, you have to manually load them with:

Re: Accessing models from outside their main controller

2008-04-20 Thread David Coll
Which version of cake are you using ? 2008/4/21, Smelly_Eddie [EMAIL PROTECTED]: I tried that, I get; Fatal error: Class 'App' not found in /srv/www/htdocs/cake/app/ controllers/components/tickets.php on line 3 What does that mean? On Apr 20, 9:01 am, Sliv [EMAIL PROTECTED] wrote:

accessing models

2006-05-30 Thread monty
hi there, this is probably already been posted , but cant' find. How do you access a Model from within another Model. Thankyou. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this

Re: accessing models

2006-05-30 Thread roberts.sean
What are you trying to do exactly? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send email to [EMAIL