ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclTableViewNumberDefaultValue.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
33  protected ?int $id;
41  protected int $tview_set_id;
48  protected int $value;
49 
54  public static function returnDbTableName(): string
55  {
56  return "il_dcl_stloc2_default";
57  }
58 
59  public function getId(): int
60  {
61  return $this->id;
62  }
63 
64  public function setId(int $id): void
65  {
66  $this->id = $id;
67  }
68 
69  public function getTviewSetId(): int
70  {
71  return $this->tview_set_id;
72  }
73 
74  public function setTviewSetId(int $tview_set_id): void
75  {
76  $this->tview_set_id = $tview_set_id;
77  }
78 
79  public function getValue(): int
80  {
81  return $this->value;
82  }
83 
84  public function setValue(int $value): void
85  {
86  $this->value = $value;
87  }
88 }