ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
UserInteractionOption.php
Go to the documentation of this file.
1
<?php
2
3
namespace
ILIAS\BackgroundTasks\Implementation\Tasks\UserInteraction
;
4
5
use
ILIAS\BackgroundTasks\Task\UserInteraction\Option
;
6
7
class
UserInteractionOption
implements
Option
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
}
ILIAS\BackgroundTasks\Implementation\Tasks\UserInteraction\UserInteractionOption\setLangVar
setLangVar($lang_var)
Definition:
UserInteractionOption.php:45
ILIAS\BackgroundTasks\Implementation\Tasks\UserInteraction\UserInteractionOption\$value
$value
Definition:
UserInteractionOption.php:17
ILIAS\BackgroundTasks\Implementation\Tasks\UserInteraction
Definition:
UserInteractionOption.php:3
ILIAS\BackgroundTasks\Implementation\Tasks\UserInteraction\UserInteractionOption\__construct
__construct($lang_var, $value)
UserInteractionOption constructor.
Definition:
UserInteractionOption.php:26
ILIAS\BackgroundTasks\Task\UserInteraction\Option
Definition:
Option.php:13
ILIAS\BackgroundTasks\Implementation\Tasks\UserInteraction\UserInteractionOption\$lang_var
$lang_var
Definition:
UserInteractionOption.php:13
ILIAS\BackgroundTasks\Implementation\Tasks\UserInteraction\UserInteractionOption\getValue
getValue()
Definition:
UserInteractionOption.php:54
ILIAS\BackgroundTasks\Implementation\Tasks\UserInteraction\UserInteractionOption\setValue
setValue($value)
Definition:
UserInteractionOption.php:63
ILIAS\BackgroundTasks\Implementation\Tasks\UserInteraction\UserInteractionOption\getLangVar
getLangVar()
Definition:
UserInteractionOption.php:36
ILIAS\BackgroundTasks\Implementation\Tasks\UserInteraction\UserInteractionOption
Definition:
UserInteractionOption.php:7
Option
src
BackgroundTasks
Implementation
Tasks
UserInteraction
UserInteractionOption.php
Generated on Sat Apr 5 2025 21:01:43 for ILIAS by
1.8.13 (using
Doxyfile
)