ILIAS  release_8 Revision v8.24
class.ilStudyProgrammeAdvancedMetadataRecord.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
28{
29 protected int $id;
30 protected int $type_id = 0;
31 protected int $rec_id = 0;
32
33 public function __construct(int $id)
34 {
35 $this->id = $id;
36 }
37
38 public function getId(): int
39 {
40 return $this->id;
41 }
42
43 public function setId(int $id): void
44 {
45 $this->id = $id;
46 }
47
48 public function getTypeId(): int
49 {
50 return $this->type_id;
51 }
52
53 public function setTypeId(int $type_id): void
54 {
55 $this->type_id = $type_id;
56 }
57
58 public function getRecId(): int
59 {
60 return $this->rec_id;
61 }
62
63 public function setRecId(int $rec_id): void
64 {
65 $this->rec_id = $rec_id;
66 }
67}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...