Friday, September 25, 2009

Re: Specific HABTM relation

solution is here:

articles_controller function add (or edit):
...
foreach($this->data['Category']['Category'] as $num => $category){
$this->data['CategoriesModel'][$num]['model_id'] = $this->data
['Article']['id'];
$this->data['CategoriesModel'][$num]['category_id'] = $category;
$this->data['CategoriesModel'][$num]['model'] = 'Article';
}
unset($this->data['Category']);

$this->Article->bindModel(array('hasMany'=>array
('CategoriesModel')));

if ($this->Article->saveAll($this->data)) {
...

--~--~---------~--~----~------------~-------~--~----~
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: