ILIAS  trunk Revision v11.0_alpha-2662-g519ff7d528f
class.ilStudyProgrammeAdvancedMetadataRecord.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 {
29  protected int $type_id = 0;
30  protected int $rec_id = 0;
31 
32  public function __construct(
33  protected int $id
34  ) {
35  }
36 
37  public function getId(): int
38  {
39  return $this->id;
40  }
41 
42  public function setId(int $id): void
43  {
44  $this->id = $id;
45  }
46 
47  public function getTypeId(): int
48  {
49  return $this->type_id;
50  }
51 
52  public function setTypeId(int $type_id): void
53  {
54  $this->type_id = $type_id;
55  }
56 
57  public function getRecId(): int
58  {
59  return $this->rec_id;
60  }
61 
62  public function setRecId(int $rec_id): void
63  {
64  $this->rec_id = $rec_id;
65  }
66 }
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23