ILIAS  trunk Revision v11.0_alpha-1843-g9e1fad99175
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
UserInteractionOption.php
Go to the documentation of this file.
1 <?php
2 
20 
22 
23 class UserInteractionOption implements Option
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 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(protected string $lang_var, protected string $value)
UserInteractionOption constructor.