ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilUIPluginRouterGUI.php
Go to the documentation of this file.
1 <?php
2 require_once('./Services/UIComponent/classes/class.ilUIHookProcessor.php');
3 
13 {
14 
18  protected $ctrl;
19 
20 
21  public function __construct()
22  {
23  global $DIC;
24  $this->ctrl = $DIC->ctrl();
25  }
26 
27 
31  public function executeCommand()
32  {
33  $next_class = $this->ctrl->getNextClass($this);
34  switch ($next_class) {
35  default:
36  $class_file = $this->ctrl->lookupClassPath($next_class);
37  if (is_file($class_file)) {
38  include_once($class_file);
39  $gui = new $next_class();
40  $this->ctrl->forwardCommand($gui);
41  } else {
42  ilUtil::sendFailure('Plugin GUI-Class not found! (' . $next_class . ')');
43  }
44  break;
45  }
46  }
47 }
Class ilUIPluginRouterGUI.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
$DIC
Definition: xapitoken.php:46
executeCommand()
The only thing this execute Command does is forward the command in the command chain.