19 declare(strict_types=1);
28 private readonly \ILIAS\DI\RBACServices
$rbac;
34 $this->
rbac = $DIC->rbac();
50 $role_list = $this->
rbac->review()->getRoleListByObject($this->
getRefId());
51 foreach ($role_list as $role) {
52 if (str_contains($role[
'title'],
'il_frm_moderator')) {
53 $a_rol_id = (
int) $role[
'obj_id'];
58 if ($a_rol_id !==
null) {
59 $this->
rbac->admin()->assignUser($a_rol_id, $a_usr_id);
69 $role_list = $this->
rbac->review()->getRoleListByObject($this->
getRefId());
70 foreach ($role_list as $role) {
71 if (str_contains($role[
'title'],
'il_frm_moderator')) {
72 $a_rol_id = (
int) $role[
'obj_id'];
77 if ($a_rol_id !==
null) {
78 $this->
rbac->admin()->deassignUser($a_rol_id, $a_usr_id);
91 $roles = $this->
rbac->review()->getRoleListByObject($this->
getRefId());
92 foreach ($roles as $role) {
93 if (str_contains($role[
'title'],
'il_frm_moderator')) {
94 $assigned_users = $this->
rbac->review()->assignedUsers((
int) $role[
'rol_id']);
99 return $assigned_users;
107 $assigned_users = [];
108 $roles = $this->
rbac->review()->getRoleListByObject($this->
getRefId());
109 foreach ($roles as $role) {
110 if (str_contains($role[
'title'],
'il_frm_moderator')) {
111 $assigned_users =
array_map(
'intval', $this->
rbac->review()->assignedUsers((
int) $role[
'rol_id']));
116 return $assigned_users;
__construct(private int $ref_id)
readonly ILIAS DI RBACServices $rbac
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
addModeratorRole(int $a_usr_id)
detachModeratorRole(int $a_usr_id)