ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilStudyProgrammeAutoCategory.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
27 {
28  protected int $prg_obj_id;
29  protected int $category_ref_id;
30  protected int $last_edited_usr_id;
32 
33  public function __construct(
34  int $prg_obj_id,
35  int $category_ref_id,
36  int $last_edited_usr_id,
37  DateTimeImmutable $last_edited
38  ) {
39  $this->prg_obj_id = $prg_obj_id;
40  $this->category_ref_id = $category_ref_id;
41  $this->last_edited_usr_id = $last_edited_usr_id;
42  $this->last_edited = $last_edited;
43  }
44 
45  public function getPrgObjId(): int
46  {
47  return $this->prg_obj_id;
48  }
49 
50  public function getCategoryRefId(): int
51  {
53  }
54 
55  public function getLastEditorId(): int
56  {
58  }
59 
60  public function getLastEdited(): DateTimeImmutable
61  {
62  return $this->last_edited;
63  }
64 }
__construct(int $prg_obj_id, int $category_ref_id, int $last_edited_usr_id, DateTimeImmutable $last_edited)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...