ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilWorkflowEngineSettingsGUI.php
Go to the documentation of this file.
1 <?php
2 
26 {
29 
30  public function __construct(ilObjWorkflowEngineGUI $parent_gui)
31  {
32  global $DIC;
33  $this->main_tpl = $DIC->ui()->mainTemplate();
34  $this->parent_gui = $parent_gui;
35  }
36 
42  public function handle(string $command): string
43  {
44  global $DIC;
46  $ilSetting = $DIC['ilSetting'];
47 
48  $form = new ilWorkflowEngineSettingsForm();
49  $form_instance = $form->getForm($this->parent_gui->ilCtrl->getLinkTarget($this->parent_gui, 'settings.save'));
50  $cb_input = $form_instance->getItemByPostVar('activate');
51  $cb_input->setChecked(false);
52  return $form_instance->getHTML();
53  }
54 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: feed.php:28
Class ilObjWorkflowEngineGUI.
global $ilSetting
Definition: privfeed.php:17
__construct(ilObjWorkflowEngineGUI $parent_gui)