ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
ILIAS\DI\RBACServices Class Reference

Provides fluid interface to RBAC services. More...

+ Collaboration diagram for ILIAS\DI\RBACServices:

Public Member Functions

 __construct (Container $container)
 
 system ()
 Get the interface to the RBAC system. More...
 
 admin ()
 Get the interface to insert relations into the RBAC system. More...
 
 review ()
 Get the interface to query the RBAC system. More...
 

Protected Attributes

 $container
 

Detailed Description

Provides fluid interface to RBAC services.

Definition at line 9 of file RBACServices.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\DI\RBACServices::__construct ( Container  $container)

Definition at line 15 of file RBACServices.php.

References ILIAS\DI\RBACServices\$container.

15  {
16  $this->container = $container;
17  }

Member Function Documentation

◆ admin()

ILIAS\DI\RBACServices::admin ( )

Get the interface to insert relations into the RBAC system.

Returns

Definition at line 33 of file RBACServices.php.

33  {
34  return $this->container["rbacadmin"];
35  }

◆ review()

ILIAS\DI\RBACServices::review ( )

Get the interface to query the RBAC system.

Returns

Definition at line 42 of file RBACServices.php.

42  {
43  return $this->container["rbacreview"];
44  }

◆ system()

ILIAS\DI\RBACServices::system ( )

Get the interface to the RBAC system.

Returns

Definition at line 24 of file RBACServices.php.

24  {
25  return $this->container["rbacsystem"];
26  }

Field Documentation

◆ $container

ILIAS\DI\RBACServices::$container
protected

Definition at line 13 of file RBACServices.php.

Referenced by ILIAS\DI\RBACServices\__construct().


The documentation for this class was generated from the following file: