File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919use Cake \Controller \Component ;
2020use Cake \Core \App ;
2121use Cake \ORM \TableRegistry ;
22+ use Acl \Model \Table \PermissionsTable ;
23+ use Acl \Model \Table \ArosTable ;
24+ use Acl \Model \Table \AcosTable ;
2225
2326/**
2427 * DbAcl implements an ACL control system in the database. ARO's and ACO's are
4043 */
4144class DbAcl implements AclInterface
4245{
46+ private PermissionsTable $ Permission ;
47+ private ArosTable $ Aro ;
48+ private AcosTable $ Aco ;
4349
4450 /**
4551 * Constructor
Original file line number Diff line number Diff line change 2020use Cake \Core \Exception \Exception ;
2121use Cake \ORM \Table ;
2222use Cake \Utility \Hash ;
23+ use Acl \Model \Table \ArosTable ;
24+ use Acl \Model \Table \AcosTable ;
2325
2426/**
2527 * Permissions linking AROs with ACOs
2628 *
2729 */
2830class PermissionsTable extends AclNodesTable
2931{
32+ private ArosTable $ Aro ;
33+ private AcosTable $ Aco ;
3034
3135 /**
3236 * {@inheritDoc}
You can’t perform that action at this time.
0 commit comments