ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilDclTableViewNumberDefaultValue.php
Go to the documentation of this file.
1<?php
2
19declare(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 {
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}