19 declare(strict_types=1);
51 $this->
logger = $DIC->logger()->wsrv();
58 $this->
logger->debug(__METHOD__ .
': Finished reading communities');
92 return $this->own_ids ?: [];
103 return $this->communities ?: [];
114 foreach ($this->communities as $community) {
115 if ($community->getId() === $a_id) {
129 foreach ($community->getParticipants() as $participant) {
130 if ($participant->getPid() === $a_pid) {
131 $participants[] = $participant;
146 return $this->participants[$a_mid] ??
false;
151 return isset($this->participants[$a_mid]) ?
152 $this->participants[$a_mid]-> getParticipantName() :
161 foreach ($this->communities as $community) {
162 foreach ($community->getParticipants() as $part) {
163 if ($part->getMID() === $a_mid) {
177 $en = $ps->getEnabledParticipants();
180 foreach ($community->getParticipants() as $participant) {
181 if (in_array($participant->getMid(), $en,
true)) {
182 $e_part[] = $participant;
197 $res = $this->connector->getMemberships();
199 if (!is_array(
$res->getResult())) {
202 foreach (
$res->getResult() as $community) {
204 foreach ($tmp_comm->getParticipants() as $participant) {
205 $this->participants[$participant->getMID()] = $participant;
206 if ($participant->isSelf()) {
207 $this->own_ids[] = $participant->getMID();
210 $this->communities[] = $tmp_comm;
213 $this->
logger->error(__METHOD__ .
': Error connecting to ECS server. ' . $e->getMessage());
static getInstanceByServerId(int $a_server_id)
Get instance by server id.
getServerId()
Get current server id.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getInstanceByServerId(int $a_server_id)
Get singleton instance per server.