ILIAS  release_8 Revision v8.24
class.ilIndividualAssessmentLP.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
22{
26 protected ?array $members_ids = null;
27
28 public function getDefaultMode(): int
29 {
31 }
32
33 public function getValidModes(): array
34 {
35 return [
38 ];
39 }
40
44 public function getMembers(bool $a_search = true): array
45 {
46 if ($this->members_ids === null) {
47 $iass = new ilObjIndividualAssessment($this->obj_id, false);
48 $this->members_ids = $iass->loadMembers()->membersIds();
49 }
50 return $this->members_ids;
51 }
52}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getMembers(bool $a_search=true)
Get an array of member ids participating in the object corresponding to this.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...