$this->loadModel('YourModelName');
Then, just use the new model as you would any other model:
$result = $this->YourModelName->function($variable);
If they are not independent and are actually related, then by setting up the associations correctly ($belongsTo, $hasMany etc) you can access the model without doing loadModel.
Don't forget that you can daisy chain models too:
$this->RelatedModel->SisterModel->FatherModel->BrotherModel->function();
Jeremy Burns
jeremyburns@me.com
On 28 May 2010, at 09:50, Ruslan Inozemtsev wrote:
> Hello,
>
> I have to independent models and i need to update Model1 on beforeSave
> in Model2,
> what is the right way to include one model into another, something
> similar to var $usees = array() in controller ?
>
> 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+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
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+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
No comments:
Post a Comment