ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilGroupUserActionsGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
30 {
31  protected ilCtrl $ctrl;
32 
33  public function __construct()
34  {
35  global $DIC;
36  $this->ctrl = $DIC->ctrl();
37  }
38 
39  public function executeCommand(): void
40  {
41  $ctrl = $this->ctrl;
42 
43  $next_class = $ctrl->getNextClass($this);
44  $cmd = $ctrl->getCmd("show");
45 
46  switch ($next_class) {
47  case "ilgroupaddtogroupactiongui":
48  $gui = new ilGroupAddToGroupActionGUI();
49  $ctrl->forwardCommand($gui);
50  break;
51  }
52  }
53 }
Add user to group from awareness tool.
getCmd(?string $fallback_command=null)
forwardCommand(object $a_gui_object)
getNextClass($a_gui_class=null)
global $DIC
Definition: shib_login.php:22