ILIAS  release_7 Revision v7.30-3-g800a261c036
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 
11 {
15  protected $prg_obj_id;
16 
20  protected $category_ref_id;
21 
25  protected $title;
26 
31 
35  protected $last_edited;
36 
37  public function __construct(
38  int $prg_obj_id,
39  int $category_ref_id,
42  ) {
43  $this->prg_obj_id = $prg_obj_id;
44  $this->category_ref_id = $category_ref_id;
45  $this->last_edited_usr_id = $last_edited_usr_id;
46  $this->last_edited = $last_edited;
47  }
48 
49  public function getPrgObjId() : int
50  {
51  return $this->prg_obj_id;
52  }
53 
54  public function getCategoryRefId() : int
55  {
57  }
58 
59  public function getLastEditorId() : int
60  {
62  }
63 
64  public function getLastEdited() : \DateTimeImmutable
65  {
66  return $this->last_edited;
67  }
68 }
Class ilStudyProgrammeAutoCategory.
__construct(int $prg_obj_id, int $category_ref_id, int $last_edited_usr_id, \DateTimeImmutable $last_edited)