ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.ilIndividualAssessmentLP.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 2016 Denis Klöpfer <denis.kloepfer@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4
5require_once("./Services/Object/classes/class.ilObjectLP.php");
6
8
9 protected $members_ids = null;
10
14 public function getDefaultMode() {
16 }
17
21 public function getValidModes() {
24 }
25
31 public function getMembers($a_search = true) {
32 if($this->members_ids === null ) {
33 global $DIC;
34 require_once("Modules/IndividualAssessment/classes/class.ilObjIndividualAssessment.php");
35 $iass = new ilObjIndividualAssessment($this->obj_id, false);
36 $this->members_ids = $iass->loadMembers()->membersIds();
37 }
38 return $this->members_ids;
39 }
40}
An exception for terminatinating execution or to throw for unit testing.
getMembers($a_search=true)
Get an array of member ids participating in the obnject coresponding to this.
For the purpose of streamlining the grading and learning-process status definition outside of tests,...
global $DIC