35 int $a_id_type = self::REPOSITORY_NODE_ID,
36 int $a_parent_node_id = 0
41 $this->
access = $DIC->access();
42 $this->
lng = $DIC->language();
43 $this->
ctrl = $DIC->ctrl();
45 $this->
tabs = $DIC->tabs();
46 $this->
toolbar = $DIC->toolbar();
47 $this->tpl = $DIC[
"tpl"];
65 $next_class = $this->
ctrl->getNextClass($this);
66 $cmd = $this->
ctrl->getCmd();
70 if (!$this->rbac_system->checkAccess(
"visible,read", $this->object->getRefId())) {
74 switch ($next_class) {
75 case 'ilpermissiongui':
76 $this->tabs_gui->setTabActive(
'perm_settings');
78 $this->
ctrl->forwardCommand($perm_gui);
82 if (!$cmd || $cmd ===
'view') {
83 $cmd =
"editSettings";
99 $ilTabs->activateTab(
"settings");
101 if ((
int) OH_REF_ID > 0) {
102 $this->tpl->setOnScreenMessage(
'info',
"This installation is used for online help authoring. Help modules cannot be imported.");
110 $ilToolbar->addInputItem($fi,
true);
111 $ilToolbar->addFormButton(
$lng->
txt(
"upload"),
"uploadHelpFile");
112 $ilToolbar->addSeparator();
116 "" =>
$lng->
txt(
"help_tooltips_and_help"),
117 "1" =>
$lng->
txt(
"help_help_only"),
118 "2" =>
$lng->
txt(
"help_tooltips_only")
121 $si->setOptions($options);
123 $ilToolbar->addInputItem($si);
125 $ilToolbar->addFormButton(
$lng->
txt(
"help_set_mode"),
"setMode");
127 $ilToolbar->setFormAction($ilCtrl->getFormAction($this),
true);
131 $this->tpl->setContent($tab->getHTML());
137 $this->tabs_gui->addTab(
139 $this->
lng->txt(
"settings"),
140 $this->
ctrl->getLinkTarget($this,
"editSettings")
145 $this->tabs_gui->addTab(
147 $this->
lng->txt(
"perm_settings"),
148 $this->
ctrl->getLinkTargetByClass(array(get_class($this),
'ilpermissiongui'),
"perm")
158 if (!isset($_FILES[
"help_file"][
"tmp_name"]) || $_FILES[
"help_file"][
"tmp_name"] ===
"") {
159 $this->tpl->setOnScreenMessage(
'failure',
$lng->
txt(
"help_select_a_file"),
true);
160 $ilCtrl->
redirect($this,
"editSettings");
163 $this->
object->uploadHelpModule($_FILES[
"help_file"]);
164 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"help_module_uploaded"),
true);
167 $ilCtrl->redirect($this,
"editSettings");
178 $ids = $this->help_request->getIds();
180 if (count($ids) === 0) {
181 $this->tpl->setOnScreenMessage(
'info',
$lng->
txt(
"no_checkbox"),
true);
182 $ilCtrl->redirect($this,
"editSettings");
185 $cgui->setFormAction($ilCtrl->getFormAction($this));
186 $cgui->setHeaderText(
$lng->
txt(
"help_sure_delete_help_modules"));
187 $cgui->setCancel(
$lng->
txt(
"cancel"),
"editSettings");
188 $cgui->setConfirm(
$lng->
txt(
"delete"),
"deleteHelpModules");
190 foreach ($ids as
$i) {
191 $cgui->addItem(
"id[]", $i, $this->object::lookupModuleTitle($i));
204 $ids = $this->help_request->getIds();
205 foreach ($ids as
$i) {
206 $this->
object->deleteModule((
int) $i);
209 $ilCtrl->redirect($this,
"editSettings");
220 $ilSetting->set(
"help_module", $this->help_request->getHelpModuleId());
221 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"),
true);
222 $ilCtrl->redirect($this,
"editSettings");
233 if ((
int)
$ilSetting->get(
"help_module") === $this->help_request->getHelpModuleId()) {
235 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"),
true);
237 $ilCtrl->redirect($this,
"editSettings");
251 $this->help_request->getHelpMode()
253 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"msg_obj_modified"),
true);
256 $ilCtrl->redirect($this,
"editSettings");
checkPermission(string $perm, string $cmd="", string $type="", int $ref_id=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
redirect(object $a_gui_obj, string $a_cmd=null, string $a_anchor=null, bool $is_async=false)
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)
loadLanguageModule(string $a_module)
Load language module.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $node_id=null)
setContent(string $a_html)
Sets content for standard template.
StandardGUIRequest $help_request
ilGlobalTemplateInterface $tpl
__construct(int $a_id=0, int $a_id_type=self::REPOSITORY_NODE_ID, int $a_parent_node_id=0)
__construct(Container $dic, ilPlugin $plugin)
confirmHelpModulesDeletion()
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...