ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjLegalNoticeGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
29 {
31 
32  public function __construct(int $a_id = 0, int $a_id_type = self::REPOSITORY_NODE_ID, int $a_parent_node_id = 0)
33  {
34  global $DIC;
35  $this->legal_notice_gui = new ilImprintGUI();
36  parent::__construct($a_id, $a_id_type, $a_parent_node_id);
37  $this->legal_notice_gui->setPresentationTitle($this->lng->txt("adm_imprint"));
38  }
39 
40  public function getType(): string
41  {
42  return 'impr';
43  }
44 
45  public function executeCommand(): void
46  {
47  $this->prepareOutput();
48 
49  $nextClass = $this->ctrl->getNextClass($this);
50  $cmd = $this->ctrl->getCmd();
51 
52 
53  switch (strtolower($nextClass)) {
54  case strtolower(ilPermissionGUI::class):
55  $perm_gui = new ilPermissionGUI($this);
56  $this->ctrl->forwardCommand($perm_gui);
57  break;
58  case (strtolower(ilImprintGUI::class)):
59  if (!$this->checkPermissionBool("write")) {
60  $this->legal_notice_gui->setEnableEditing(false);
61  }
62  $ret = $this->ctrl->forwardCommand($this->legal_notice_gui);
63 
64  $this->tpl->setContent($ret);
65  break;
66  default:
67  $cmd .= 'Cmd';
68  if (method_exists($this, $cmd)) {
69  $this->tpl->setContent($this->$cmd());
70  }
71  break;
72  }
73  }
74 
75  public function viewCmd(): never
76  {
77  $this->ctrl->redirect($this->legal_notice_gui, 'preview');
78  }
79 }
New implementation of ilObjectGUI.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
prepareOutput(bool $show_sub_objects=true)
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $node_id=null)
global $DIC
Definition: shib_login.php:22
__construct(int $a_id=0, int $a_id_type=self::REPOSITORY_NODE_ID, int $a_parent_node_id=0)
Class ilImprintGUI.
__construct(Container $dic, ilPlugin $plugin)