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