ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilStudyProgrammeMembershipSourceReaderOrgu.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
24 {
25  public function __construct(
26  protected ilObjOrgUnitTree $orgu_tree,
27  protected OrgUnitUserAssignmentRepository $orgu_assignment_repo,
28  protected int $src_id,
29  protected bool $search_recursive,
30  protected ?int $exclude_id
31  ) {
32  }
33 
37  public function getMemberIds(): array
38  {
39  $children[] = $this->src_id;
40  if ($this->search_recursive) {
41  $children = array_unique(array_merge($children, $this->orgu_tree->getAllChildren($this->src_id)));
42  }
43  return $this->orgu_assignment_repo->getUsersByOrgUnits($children);
44  }
45 }
__construct(protected ilObjOrgUnitTree $orgu_tree, protected OrgUnitUserAssignmentRepository $orgu_assignment_repo, protected int $src_id, protected bool $search_recursive, protected ?int $exclude_id)
Provides adapters to read member-ids from a specific source.