ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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
class.ilGroupUserActionsGUI.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2017 ILIAS open source, Extended GPL, see docs/LICENSE */
4
13
class
ilGroupUserActionsGUI
14
{
18
protected
$ctrl
;
19
25
public
function
__construct
()
26
{
27
global
$DIC
;
28
29
$this->ctrl = $DIC->ctrl();
30
}
31
35
public
function
executeCommand
()
36
{
37
$ctrl
=
$this->ctrl
;
38
39
$next_class =
$ctrl
->getNextClass($this);
40
$cmd =
$ctrl
->getCmd(
"show"
);
41
42
switch
($next_class) {
43
case
"ilgroupaddtogroupactiongui"
:
44
include_once(
"./Modules/Group/UserActions/classes/class.ilGroupAddToGroupActionGUI.php"
);
45
$gui =
new
ilGroupAddToGroupActionGUI
();
46
$ctrl
->forwardCommand($gui);
47
break
;
48
49
default
:
50
/*if (in_array($cmd, array("show")))
51
{
52
$this->$cmd();
53
}*/
54
}
55
}
56
}
ilGroupAddToGroupActionGUI
Add user to group from awareness tool.
Definition:
class.ilGroupAddToGroupActionGUI.php:11
ilGroupUserActionsGUI\executeCommand
executeCommand()
Execute command.
Definition:
class.ilGroupUserActionsGUI.php:35
ilGroupUserActionsGUI\$ctrl
$ctrl
Definition:
class.ilGroupUserActionsGUI.php:18
ilGroupUserActionsGUI
Group user actions.
Definition:
class.ilGroupUserActionsGUI.php:13
ilGroupUserActionsGUI\__construct
__construct()
Constructor.
Definition:
class.ilGroupUserActionsGUI.php:25
$DIC
$DIC
Definition:
xapitoken.php:46
Modules
Group
UserActions
classes
class.ilGroupUserActionsGUI.php
Generated on Wed Apr 2 2025 20:00:56 for ILIAS by
1.8.13 (using
Doxyfile
)