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