ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilForumModerators.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2012 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
12 {
13  private $db = null;
14  private $ref_id = 0;
15 
16  public function __construct($a_ref_id)
17  {
18  global $ilDB;
19 
20  $this->db = $ilDB;
21  $this->ref_id = $a_ref_id;
22  }
23 
27  public function setRefId($ref_id)
28  {
29  $this->ref_id = $ref_id;
30  }
31 
35  public function getRefId()
36  {
37  return $this->ref_id;
38  }
39  public function addModeratorRole($a_usr_id)
40  {
41  global $rbacreview, $rbacadmin;
42 
43  $role_folder_id = $rbacreview->getRoleFolderIdOfObject($this->ref_id);
44  $role_list = $rbacreview->getRoleListByObject($role_folder_id);
45  foreach ($role_list as $role)
46  {
47  if(strpos($role['title'], 'il_frm_moderator') !== false)
48  {
49  $a_rol_id = $role['obj_id'];
50  break;
51  }
52  }
53 
54  if((int)$a_rol_id)
55  {
56  $user = $rbacadmin->assignUser($a_rol_id, $a_usr_id);
57  return true;
58  }
59 
60  return false;
61  }
62 
63  public function detachModeratorRole($a_usr_id)
64  {
65  global $rbacreview, $rbacadmin;
66 
67  $role_folder_id = $rbacreview->getRoleFolderIdOfObject($this->ref_id);
68  $role_list = $rbacreview->getRoleListByObject($role_folder_id);
69  foreach ($role_list as $role)
70  {
71  if(strpos($role['title'], 'il_frm_moderator') !== false)
72  {
73  $a_rol_id = $role['obj_id'];
74  break;
75  }
76  }
77 
78  if((int)$a_rol_id)
79  {
80  $user = $rbacadmin->deassignUser($a_rol_id, $a_usr_id);
81  return true;
82  }
83 
84  return false;
85  }
86 
87  public function getCurrentModerators()
88  {
89  global $rbacreview;
90 
91  $role_folder = $rbacreview->getRoleFolderOfObject($this->ref_id);
92  $roles = $rbacreview->getRoleListByObject($role_folder['child']);
93  foreach($roles as $role)
94  {
95  if(strpos($role['title'], 'il_frm_moderator') !== false)
96  {
97  $assigned_users = $rbacreview->assignedUsers($role['rol_id']);
98  break;
99  }
100  }
101  return is_array($assigned_users) ? $assigned_users : array();
102  }
103 
104 
105  public function getUsers()
106  {
107  global $rbacreview;
108 
109  $role_folder = $rbacreview->getRoleFolderOfObject($this->ref_id);
110  $roles = $rbacreview->getRoleListByObject($role_folder['child']);
111  foreach($roles as $role)
112  {
113  if(strpos($role['title'], 'il_frm_moderator') !== false)
114  {
115  $assigned_users = $rbacreview->assignedUsers($role['rol_id']);
116  //vd($assigned_users);
117  break;
118  }
119  }
120  return is_array($assigned_users) ? $assigned_users : array();
121  }
122 }
123 
124 ?>
Class ilForumModerators.