How to make model, which connects three tables from a database? My DB structure is:
- users
- id
- other fields
- users_info
- id
- users_id - foreign key to 'users' table
- other fields
- users_credentials
- id
- users_id - foreign key to 'users' table
- other fields
Former, I wanted to have 2 tables bonded in one model, so I used addRelatedEntity method. Here is my code:
class Model_UserInfo extends Model_Table{
public $entity_code = 'user_info';
function init(){
parent::init();
$this->addField('phone')->caption('Nr tel');
$this->addField('users_id');
}
function addRelation(){
$this->addRelatedEntity('i','users','users_id','left outer');
}
}
and then I extend it in other file -
class Model_User extends Model_UserInfo{
function init(){
parent::init();
parent::addRelation();
$this->newField('name')->caption('Imie')->mandatory(true)->relEntity('i','name');
}
}
And that worked great. But what if I want to bond 3 tables into one model? I cannot extend 2 classes. Is there a way to use addRelatedEntity in Model_User, and have references to Model_UserInfo and Model_Credentials?