ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
◀ ilDoc Overview
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
}
$DIC
global $DIC
Definition:
saml.php:7
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
php
Modules
Group
UserActions
classes
class.ilGroupUserActionsGUI.php
Generated on Thu Jan 16 2025 19:02:04 for ILIAS by
1.8.13 (using
Doxyfile
)