public addRole (RoleInterface | string $role, [array | string $accessInherits])
Adds a role to the ACL list. Second parameter allows inheriting access data from other existing role Example:
1 2 | $acl ->addRole( new Phalcon\Acl\Role( 'administrator' ), 'consultant' ); $acl ->addRole( 'administrator' , 'consultant' ); |
Please login to continue.