ILIAS  release_8 Revision v8.24
UserInteractionOption.php
Go to the documentation of this file.
1<?php
2
20
22
24{
25 protected string $lang_var;
26 protected string $value;
27
31 public function __construct(string $lang_var, string $value)
32 {
33 $this->lang_var = $lang_var;
34 $this->value = $value;
35 }
36
37
38 public function getLangVar(): string
39 {
40 return $this->lang_var;
41 }
42
43 public function setLangVar(string $lang_var): void
44 {
45 $this->lang_var = $lang_var;
46 }
47
48
49 public function getValue(): string
50 {
51 return $this->value;
52 }
53
54
55 public function setValue(string $value): void
56 {
57 $this->value = $value;
58 }
59}
__construct(string $lang_var, string $value)
UserInteractionOption constructor.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...