ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
UserInteractionOption.php
Go to the documentation of this file.
1<?php
2
4
6
8{
9
13 protected $lang_var;
17 protected $value;
18
19
26 public function __construct($lang_var, $value)
27 {
28 $this->lang_var = $lang_var;
29 $this->value = $value;
30 }
31
32
36 public function getLangVar()
37 {
38 return $this->lang_var;
39 }
40
41
45 public function setLangVar($lang_var)
46 {
47 $this->lang_var = $lang_var;
48 }
49
50
54 public function getValue()
55 {
56 return $this->value;
57 }
58
59
63 public function setValue($value)
64 {
65 $this->value = $value;
66 }
67}
An exception for terminatinating execution or to throw for unit testing.