ILIAS
release_4-4 Revision
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
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
k
l
m
n
o
p
q
r
s
t
u
v
w
y
+
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
k
l
m
o
p
r
s
t
u
v
w
x
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilOrguUserPickerToolbarInputGUI.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
require_once(
"./Modules/OrgUnit/classes/class.ilMultiUserToolbarInputGUI.php"
);
11
class
ilOrguUserPickerToolbarInputGUI
extends
ilMultiUserToolbarInputGUI
{
12
13
protected
$staff
;
14
15
public
function
getToolbarHTML
()
16
{
17
$html =
"<form method='post' class='ilOrguUserPicker' action='"
.$this->getSubmitLink().
"'>"
;
18
$html .= $this->render();
19
$html .= $this->
getSelectHTML
();
20
$html .= $this->getSubmitButtonHTML();
21
$html .=
"</form>"
;
22
return
$html;
23
}
24
25
protected
function
getSelectHTML
(){
26
global
$lng
;
27
$html =
"
28
<select name='"
.$this->searchPostVar().
"_role"
.
"'>
29
<option value='employee'>"
.$lng->txt(
"employee"
).
"</option>
30
<option value='superior'>"
.$lng->txt(
"superior"
).
"</option>
31
</select>
32
"
;
33
return
$html;
34
}
35
36
public
function
setValueByArray
($array){
37
parent::setValueByArray($array);
38
$this->staff = $array[$this->searchPostVar().
"_role"
];
39
}
40
41
public
function
getStaff
(){
42
return
$this->staff
;
43
}
44
}
45
?>
ilOrguUserPickerToolbarInputGUI\$staff
$staff
Definition:
class.ilOrguUserPickerToolbarInputGUI.php:13
ilOrguUserPickerToolbarInputGUI\setValueByArray
setValueByArray($array)
Definition:
class.ilOrguUserPickerToolbarInputGUI.php:36
ilMultiUserToolbarInputGUI
ilOrguUserPickerToolbarInputGUI\getToolbarHTML
getToolbarHTML()
Definition:
class.ilOrguUserPickerToolbarInputGUI.php:15
ilOrguUserPickerToolbarInputGUI\getStaff
getStaff()
Definition:
class.ilOrguUserPickerToolbarInputGUI.php:41
ilOrguUserPickerToolbarInputGUI\getSelectHTML
getSelectHTML()
Definition:
class.ilOrguUserPickerToolbarInputGUI.php:25
ilOrguUserPickerToolbarInputGUI
Class ilOrguUserPickerToolbarInputGUI.
Definition:
class.ilOrguUserPickerToolbarInputGUI.php:11
$lng
global $lng
Definition:
privfeed.php:40
Modules
OrgUnit
classes
class.ilOrguUserPickerToolbarInputGUI.php
Generated on Mon Dec 21 2020 19:01:03 for ILIAS by
1.8.13 (using
Doxyfile
)