ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjectActivationGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
29 {
31  protected ilCtrl $ctrl;
32  protected ilLanguage $lng;
33  protected ilTabsGUI $tabs_gui;
34  protected ilHelpGUI $help;
37 
38  protected int $parent_ref_id;
39  protected int $item_id;
40 
41  protected ?int $timing_mode = null;
43 
44  public function __construct(int $ref_id, int $item_id)
45  {
46  global $DIC;
47 
48  $this->tpl = $DIC->ui()->mainTemplate();
49  $this->ctrl = $DIC->ctrl();
50  $this->lng = $DIC->language();
51  $this->lng->loadLanguageModule('crs');
52  $this->tabs_gui = $DIC->tabs();
53  $this->help = $DIC["ilHelp"];
54  $this->request_wrapper = $DIC->http()->wrapper()->query();
55  $this->refinery = $DIC->refinery();
56 
57  $this->parent_ref_id = $ref_id;
58  $this->item_id = $item_id;
59 
60  $this->ctrl->saveParameter($this, 'item_id');
61  }
62 
63  public function executeCommand(): void
64  {
65  $this->setTabs();
66 
67  $this->tpl->loadStandardTemplate();
68 
69  $this->ctrl->forwardCommand(
70  new ilConditionHandlerGUI($this->item_id)
71  );
72  $this->tpl->printToStdout();
73  }
74 
75  protected function setTabs(): bool
76  {
77  $this->tabs_gui->clearTargets();
78 
79  $this->help->setScreenIdComponent("obj");
80 
81  $this->ctrl->setParameterByClass("ilrepositorygui", "ref_id", $this->parent_ref_id);
82  $back_link = $this->ctrl->getLinkTargetByClass("ilrepositorygui", "");
83  $ref_id = $this->request_wrapper->retrieve("ref_id", $this->refinery->kindlyTo()->string());
84  $this->ctrl->setParameterByClass("ilrepositorygui", "ref_id", $ref_id);
85  $this->tabs_gui->setBackTarget($this->lng->txt('btn_back'), $back_link);
86 
87  $this->ctrl->setParameterByClass('ilconditionhandlergui', 'item_id', $this->item_id);
88  $this->tabs_gui->addTarget(
89  "preconditions",
90  $this->ctrl->getLinkTargetByClass('ilConditionHandlerGUI', 'listConditions'),
91  "",
92  "ilConditionHandlerGUI"
93  );
94  return true;
95  }
96 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Help GUI class.
ILIAS Refinery Factory $refinery
Class ilObjectActivationGUI.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$ref_id
Definition: ltiauth.php:65
__construct(int $ref_id, int $item_id)
global $DIC
Definition: shib_login.php:22
ILIAS HTTP Wrapper RequestWrapper $request_wrapper
ilGlobalTemplateInterface $tpl
Class ilObjectActivation.