ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ ilDoc Overview
class.ilStudyProgrammeMembershipSourceReaderParticipants.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
24
class
ilStudyProgrammeMembershipSourceReaderParticipants
implements
ilStudyProgrammeMembershipSourceReader
25
{
26
protected
ilParticipants
$participants
;
27
28
public
function
__construct
(
ilParticipants
$participants
)
29
{
30
$this->participants =
$participants
;
31
}
32
36
public
function
getMemberIds
(): array
37
{
38
return
array_map(
39
'intval'
,
40
$this->participants->getMembers()
41
);
42
}
43
}
ilParticipants
Base class for course and group participants.
Definition:
class.ilParticipants.php:31
ilStudyProgrammeMembershipSourceReaderParticipants
Provides adapters to read member-ids from a specific source.
Definition:
class.ilStudyProgrammeMembershipSourceReaderParticipants.php:25
ilStudyProgrammeMembershipSourceReaderParticipants\$participants
ilParticipants $participants
Definition:
class.ilStudyProgrammeMembershipSourceReaderParticipants.php:26
ilStudyProgrammeMembershipSourceReaderParticipants\getMemberIds
getMemberIds()
int[]
Definition:
class.ilStudyProgrammeMembershipSourceReaderParticipants.php:36
ilStudyProgrammeMembershipSourceReaderParticipants\__construct
__construct(ilParticipants $participants)
Definition:
class.ilStudyProgrammeMembershipSourceReaderParticipants.php:28
ilStudyProgrammeMembershipSourceReader
Get members of a certain source.
Definition:
interface.ilStudyProgrammeMembershipSourceReader.php:27
components
ILIAS
StudyProgramme
classes
model
AutoMemberships
class.ilStudyProgrammeMembershipSourceReaderParticipants.php
Generated on Sat Oct 18 2025 23:04:23 for ILIAS by
1.9.4 (using
Doxyfile
)