1: <?php
2:
3:
4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14:
15: class Ws_user_roleModel extends WsModel
16: {
17: public function __construct()
18: {
19: parent::__construct();
20:
21:
22: $this->foreignKeys['user_id']['table'] = 'ws_user';
23: $this->foreignKeys['user_id']['column'] = 'id';
24: $this->foreignKeys['user_id']['display'] = 'email';
25: $this->foreignKeys['role_id']['table'] = 'ws_roles';
26: $this->foreignKeys['role_id']['column'] = 'id';
27: $this->foreignKeys['role_id']['display'] = 'name';
28: }
29: }
30:
31: