ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjECSSettingsGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 {
29  public function __construct($a_data, int $a_id, bool $a_call_by_reference = true, bool $a_prepare_output = true)
30  {
31  $this->type = 'cals';
32  parent::__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
33 
34  $this->lng->loadLanguageModule('dateplaner');
35  $this->lng->loadLanguageModule('jscalendar');
36  }
37 
44  public function executeCommand(): void
45  {
46  $next_class = $this->ctrl->getNextClass($this);
47 
48  $this->prepareOutput();
49 
50  if (!$this->rbac_system->checkAccess("visible,read", $this->object->getRefId())) {
51  $this->error->raiseError($this->lng->txt('no_permission'), $this->error->WARNING);
52  }
53 
54  switch ($next_class) {
55  case 'ilpermissiongui':
56  $this->tabs_gui->setTabActive('perm_settings');
57  $perm_gui = new ilPermissionGUI($this);
58  $this->ctrl->forwardCommand($perm_gui);
59  break;
60 
61  case 'ilecssettingsgui':
62  $this->tabs_gui->setTabActive('settings');
64  $this->ctrl->forwardCommand($settings);
65  break;
66 
67  default:
68  $this->tabs_gui->setTabActive('settings');
70  // @todo: removed deprecated ilCtrl methods, this needs inspection by a maintainer.
71  // $this->ctrl->setCmdClass('ilecssettingsgui');
72  $this->ctrl->forwardCommand($settings);
73  break;
74  }
75  }
76 
77 
84  public function getAdminTabs(): void
85  {
86  if ($this->access->checkAccess("read", '', $this->object->getRefId())) {
87  $this->tabs_gui->addTarget(
88  "settings",
89  $this->ctrl->getLinkTargetByClass('ilecssettingsgui', "overview"),
90  array(),
91  'ilecssettingsgui'
92  );
93  }
94  if ($this->access->checkAccess('edit_permission', '', $this->object->getRefId())) {
95  $this->tabs_gui->addTarget(
96  "perm_settings",
97  $this->ctrl->getLinkTargetByClass('ilpermissiongui', "perm"),
98  array(),
99  'ilpermissiongui'
100  );
101  }
102  }
103 }
prepareOutput(bool $show_sub_objects=true)
Class ilObjectGUI Basic methods of all Output classes.
__construct($a_data, int $a_id, bool $a_call_by_reference=true, bool $a_prepare_output=true)
executeCommand()
Execute command.
__construct(Container $dic, ilPlugin $plugin)
ilSetting $settings