ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilWorkflowEngineSettingsGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2016 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
14 {
16  protected $parent_gui;
17 
24  {
25  $this->parent_gui = $parent_gui;
26  }
27 
33  public function handle($command)
34  {
35  global $DIC;
37  $ilSetting = $DIC['ilSetting'];
38 
39  require_once './Services/WorkflowEngine/classes/administration/class.ilWorkflowEngineSettingsForm.php';
40  $form = new ilWorkflowEngineSettingsForm();
41  $form_instance = $form->getForm($this->parent_gui->ilCtrl->getLinkTarget($this->parent_gui, 'settings.save'));
42  $cb_input = $form_instance->getItemByPostVar('activate');
43 
44  $cb_input->setChecked(false);
45  return $form_instance->getHTML();
46  }
47 }
Class ilWorkflowEngineSettingsGUI.
global $DIC
Definition: goto.php:24
global $ilSetting
Definition: privfeed.php:17
__construct(ilObjWorkflowEngineGUI $parent_gui)
ilWorkflowEngineSettingsGUI constructor.