ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ProviderMemberships.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\Awareness\User;
20 
22 
27 class ProviderMemberships implements Provider
28 {
29  protected \ilObjUser $user;
30  protected \ilLanguage $lng;
31  protected \ilDBInterface $db;
32 
33  public function __construct(Container $DIC)
34  {
35  $this->db = $DIC->database();
36  $this->lng = $DIC->language();
37  $this->user = $DIC->user();
38  }
39 
44  public function getProviderId(): string
45  {
46  return "mmbr_user_grpcrs";
47  }
48 
53  public function getTitle(): string
54  {
55  $this->lng->loadLanguageModule("mmbr");
56  return $this->lng->txt("mmbr_awrn_my_groups_courses");
57  }
58 
63  public function getInfo(): string
64  {
65  $this->lng->loadLanguageModule("crs");
66  return $this->lng->txt("mmbr_awrn_my_groups_courses_info");
67  }
68 
74  public function getInitialUserSet(?array $user_ids = null): array
75  {
76  $ilDB = $this->db;
77 
78  $groups_and_courses_of_user = \ilParticipants::_getMembershipByType(
79  $this->user->getId(),
80  ["grp", "crs"]
81  );
82 
83  $set = $ilDB->query(
84  "SELECT DISTINCT usr_id FROM obj_members " .
85  " WHERE " . $ilDB->in("obj_id", $groups_and_courses_of_user, false, "integer") . ' ' .
86  'AND (admin > ' . $ilDB->quote(0, 'integer') . ' ' .
87  'OR tutor > ' . $ilDB->quote(0, 'integer') . ' ' .
88  'OR member > ' . $ilDB->quote(0, 'integer') . ")"
89  );
90  $ub = array();
91  while ($rec = $ilDB->fetchAssoc($set)) {
92  $ub[] = (int) $rec["usr_id"];
93  }
94 
95  return $ub;
96  }
97 
98  public function isHighlighted(): bool
99  {
100  return false;
101  }
102 }
All members of the same courses/groups as the user.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTitle()
Provider title (used in awareness overlay and in administration settings)
static _getMembershipByType(int $a_usr_id, array $a_type, bool $a_only_member_role=false)
get membership by type Get course or group membership
getInitialUserSet(?array $user_ids=null)
Get initial set of users.
getInfo()
Provider info (used in administration settings)