Hi,

Let's say that i want to handle form data which affects several models.
 I would like to have a controller for each model that stores data only
for that model.  I then want to be able to mix and match the edit
actions from various controllers.

An example might be a registration page

fooController extends appController
{
  function register()
  {
     //call contact_info->edit()
     //call user->edit()
     //call personal->edit()
  }
}

First of all, in general, how do you call an action from another
controller (NOT FROM THE VIEW -- I know about requestAction).

Second of all, it the case of seperating form logic, can i pass the
data array forward or is that not necessary.

Thank you


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~----------~----~----~----~------~----~------~--~---

Reply via email to