ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilStudyProgrammeAutoCategory.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
27{
28 protected int $prg_obj_id;
29 protected int $category_ref_id;
30 protected int $last_edited_usr_id;
31 protected DateTimeImmutable $last_edited;
32
33 public function __construct(
34 int $prg_obj_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}
Class ilStudyProgrammeAutoCategory.
__construct(int $prg_obj_id, int $category_ref_id, int $last_edited_usr_id, DateTimeImmutable $last_edited)