I have a rather large function during user registration.
Depending on the role they are registering as i create records for that
specific role populating their profile and additional required tables with
id's for the new user.
The 2 roles require different tables so i currently have an
if (role_id = roleOne)
{
build role 1 table set up
} else {
build role 2 table set up
}
I was just wondering if i created 2 functions
buildRole1($id, $data)
{
$this->data['User']['id'] = $this->Profile->id;
create();
$q = getMyOtherInfo();
//fill the data into the profile
save();
and so on
}
and build Role2($id)
{
}
can i actually create new records from the model and save them? Or should it
be kept in the controller?
Dave Maharaj
Freelance Designer
[email protected]
www.widepixels.com
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" 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?hl=en
-~----------~----~----~----~------~----~------~--~---