ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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 16 of file RBACServices.php.

References ILIAS\DI\RBACServices\$container.

17  {
18  $this->container = $container;
19  }

Member Function Documentation

◆ admin()

ILIAS\DI\RBACServices::admin ( )

Get the interface to insert relations into the RBAC system.

Returns

Definition at line 36 of file RBACServices.php.

37  {
38  return $this->container["rbacadmin"];
39  }

◆ review()

ILIAS\DI\RBACServices::review ( )

Get the interface to query the RBAC system.

Returns

Definition at line 46 of file RBACServices.php.

47  {
48  return $this->container["rbacreview"];
49  }

◆ system()

ILIAS\DI\RBACServices::system ( )

Get the interface to the RBAC system.

Returns

Definition at line 26 of file RBACServices.php.

27  {
28  return $this->container["rbacsystem"];
29  }

Field Documentation

◆ $container

ILIAS\DI\RBACServices::$container
protected

Definition at line 14 of file RBACServices.php.

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


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