I have three database tables with foreign keys to each other, and I want to insert data into those tables. I created three models and MVCForm. How can I insert data into those three tables with one MVCForm?

link|improve this question

60% accept rate
@jancha have made that possible with 4.1 branch by creating a custom controller. It will be also supported in 4.2. – romaninsh Jan 8 at 16:14
yeah, we created multi-controller. – jancha Jan 9 at 14:44
Can you give an example how to use it? – user1137146 Jan 10 at 9:58
@jancha perhaps you can add it to atk4-addons ? – romaninsh Jan 16 at 11:22
feedback

1 Answer

up vote 0 down vote accepted

You can create regular fields in the MVCForm, since it's child of Form, so you should be able to do:

$f=$this->add('MVCForm');
$m=$f->setModel('M1');

$f->addField('field_model2');

if($f->isSubmitted()){

   $f->update();

   $id=$m->get('id');

   $m2=$this->add('Model_M2');
   $m2->set('field2',$f->get('field_model2'));
   $m2->update();
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.