ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilStudyProgrammeLP.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2015 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4 
5 require_once("./Services/Object/classes/class.ilObjectLP.php");
6 
16  protected $prg = null;
17 
18  public function getDefaultMode() {
20  }
21 
22  public function getValidModes() {
23  return array
26  );
27  }
28 
29  public function getMembers($a_search = true) {
30  if ($this->prg === null) {
31  require_once("Modules/StudyProgramme/classes/class.ilObjStudyProgramme.php");
32  $this->prg = new ilObjStudyProgramme($this->obj_id, false);
33  }
34  return $this->prg->getIdsOfUsersWithRelevantProgress();
35  }
36 }
37 
38 ?>
Class ilObjStudyProgramme.
Class ilObjStudyProgramme.