35 bool $a_call_by_reference =
true,
36 bool $a_prepare_output =
true 40 $this->rbacsystem = $DIC->rbac()->system();
41 $this->
ctrl = $DIC->ctrl();
42 $this->
access = $DIC->access();
43 $this->
lng = $DIC->language();
44 $this->
toolbar = $DIC->toolbar();
45 $this->tpl = $DIC[
"tpl"];
46 $this->
tabs = $DIC->tabs();
55 $this->
lng->loadLanguageModule(
"badge");
60 $next_class = $this->
ctrl->getNextClass($this);
61 $cmd = $this->
ctrl->getCmd();
65 switch ($next_class) {
66 case 'ilpermissiongui':
67 $this->tabs_gui->setTabActive(
'perm_settings');
69 $this->
ctrl->forwardCommand($perm_gui);
72 case 'ilbadgemanagementgui':
74 $this->tabs_gui->setTabActive(
'activity');
76 $this->
ctrl->forwardCommand($gui);
80 if (!$cmd || $cmd ===
'view') {
81 $cmd =
"editSettings";
93 if ($rbacsystem->
checkAccess(
"visible,read", $this->object->getRefId())) {
94 $this->tabs_gui->addTab(
96 $this->
lng->txt(
"settings"),
97 $this->
ctrl->getLinkTarget($this,
"editSettings")
101 $this->tabs_gui->addTab(
103 $this->
lng->txt(
"badge_types"),
104 $this->
ctrl->getLinkTarget($this,
"listTypes")
107 $this->tabs_gui->addTab(
109 $this->
lng->txt(
"badge_image_templates"),
110 $this->
ctrl->getLinkTarget($this,
"listImageTemplates")
113 $this->tabs_gui->addTab(
115 $this->
lng->txt(
"badge_activity_badges"),
116 $this->
ctrl->getLinkTargetByClass(
"ilbadgemanagementgui",
"")
119 $this->tabs_gui->addTab(
121 $this->
lng->txt(
"badge_object_badges"),
122 $this->
ctrl->getLinkTarget($this,
"listObjectBadges")
127 if ($rbacsystem->
checkAccess(
'edit_permission', $this->object->getRefId())) {
128 $this->tabs_gui->addTab(
130 $this->
lng->txt(
"perm_settings"),
131 $this->
ctrl->getLinkTargetByClass(
'ilpermissiongui',
"perm")
139 $this->
ctrl->redirect($this,
"editSettings");
150 $this->tabs_gui->setTabActive(
"settings");
156 $this->tpl->setContent($a_form->getHTML());
166 if ($form->checkInput()) {
168 $handler->setActive((
bool) $form->getInput(
"act"));
170 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
171 $ilCtrl->redirect($this,
"editSettings");
174 $form->setValuesByPost();
183 $form->setFormAction($this->
ctrl->getFormAction($this));
184 $form->setTitle($this->
lng->txt(
"badge_settings"));
186 if ($ilAccess->checkAccess(
"write",
"", $this->object->getRefId())) {
187 $form->addCommandButton(
"saveSettings", $this->
lng->txt(
"save"));
188 $form->addCommandButton(
"editSettings", $this->
lng->txt(
"cancel"));
192 $act->
setInfo($this->
lng->txt(
"badge_service_activate_info"));
193 $form->addItem($act);
197 $act->setChecked($handler->isActive());
212 $this->tabs_gui->setTabActive(
"types");
217 $ilAccess->checkAccess(
"write",
"", $this->object->getRefId())
219 $this->tpl->setContent($tbl->getHTML());
228 $ids = $this->badge_request->getIds();
232 foreach ($handler->getInactiveTypes() as
$type) {
233 if (!in_array(
$type, $ids)) {
237 $handler->setInactiveTypes($inactive);
239 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"settings_saved"),
true);
241 $this->
ctrl->redirect($this,
"listTypes");
250 $ids = $this->badge_request->getIds();
253 $inactive = array_merge($handler->getInactiveTypes(), $ids);
254 $handler->setInactiveTypes($inactive);
256 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"settings_saved"),
true);
258 $this->
ctrl->redirect($this,
"listTypes");
274 $this->tabs_gui->setTabActive(
"imgtmpl");
277 $ilToolbar->addButton(
278 $lng->
txt(
"badge_add_template"),
279 $ilCtrl->getLinkTarget($this,
"addImageTemplate")
285 "listImageTemplates",
286 $ilAccess->checkAccess(
"write",
"", $this->object->getRefId())
288 $this->tpl->setContent($tbl->getHTML());
299 $this->tabs_gui->setTabActive(
"imgtmpl");
315 $form->setFormAction($ilCtrl->getFormAction($this,
"saveBadge"));
316 $form->setTitle(
$lng->
txt(
"badge_image_template_form"));
319 $title->setRequired(
true);
320 $form->addItem($title);
323 $img->setSuffixes(array(
"png",
"svg"));
324 if ($a_mode ===
"create") {
325 $img->setRequired(
true);
327 $img->setUseCache(
false);
328 $img->setAllowDeletion(
false);
329 $form->addItem(
$img);
333 $types_mode->setValue(
"all");
334 $form->addItem($types_mode);
337 $types_mode->addOption($type_all);
340 $types_mode->addOption($type_spec);
344 $type_spec->addSubItem($types);
350 if ($a_mode ===
"create") {
351 $form->addCommandButton(
"saveImageTemplate",
$lng->
txt(
"save"));
353 $form->addCommandButton(
"updateImageTemplate",
$lng->
txt(
"save"));
355 $form->addCommandButton(
"listImageTemplates",
$lng->
txt(
"cancel"));
368 if ($form->checkInput()) {
370 $tmpl->setTitle($form->getInput(
"title"));
371 $tmpl->setTypes($form->getInput(
"type"));
374 $tmpl->uploadImage($_FILES[
"img"]);
376 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"settings_saved"),
true);
377 $ilCtrl->redirect($this,
"listImageTemplates");
380 $form->setValuesByPost();
393 $this->tabs_gui->setTabActive(
"imgtmpl");
395 $tmpl_id = $this->badge_request->getTemplateId();
397 $ilCtrl->redirect($this,
"listImageTemplates");
400 $ilCtrl->setParameter($this,
"tid", $tmpl_id);
435 $tmpl_id = $this->badge_request->getTemplateId();
437 $ilCtrl->redirect($this,
"listImageTemplates");
440 $ilCtrl->setParameter($this,
"tid", $tmpl_id);
445 if ($form->checkInput()) {
446 $tmpl->setTitle($form->getInput(
"title"));
448 if ($form->getInput(
"tmode") !==
"all") {
449 $tmpl->setTypes($form->getInput(
"type"));
451 $tmpl->setTypes(null);
456 $tmpl->uploadImage($_FILES[
"img"]);
458 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"settings_saved"),
true);
459 $ilCtrl->redirect($this,
"listImageTemplates");
463 $form->setValuesByPost();
476 $tmpl_ids = $this->badge_request->getIds();
478 $ilCtrl->redirect($this,
"listImageTemplates");
481 $ilTabs->clearTargets();
482 $ilTabs->setBackTarget(
484 $ilCtrl->getLinkTarget($this,
"listImageTemplates")
488 $confirmation_gui->setFormAction($ilCtrl->getFormAction($this));
489 $confirmation_gui->setHeaderText(
$lng->
txt(
"badge_template_deletion_confirmation"));
490 $confirmation_gui->setCancel(
$lng->
txt(
"cancel"),
"listImageTemplates");
491 $confirmation_gui->setConfirm(
$lng->
txt(
"delete"),
"deleteImageTemplates");
493 foreach ($tmpl_ids as $tmpl_id) {
495 $confirmation_gui->addItem(
"id[]", $tmpl_id, $tmpl->getTitle());
508 $tmpl_ids = $this->badge_request->getIds();
510 foreach ($tmpl_ids as $tmpl_id) {
515 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"settings_saved"),
true);
518 $ilCtrl->redirect($this,
"listImageTemplates");
532 $this->tabs_gui->setTabActive(
"obj_badges");
537 $ilAccess->checkAccess(
"write",
"", $this->object->getRefId())
549 $ilAccess->checkAccess(
"write",
"", $this->object->getRefId())
552 $tbl->writeFilterToSession();
563 $ilAccess->checkAccess(
"write",
"", $this->object->getRefId())
576 $parent_obj_id = $this->badge_request->getParentId();
577 if (!$parent_obj_id) {
578 $ilCtrl->redirect($this,
"listObjectBadges");
583 $this->tabs_gui->clearTargets();
584 $this->tabs_gui->setBackTarget(
586 $ilCtrl->getLinkTarget($this,
"listObjectBadges")
589 $ilCtrl->saveParameter($this,
"pid");
591 $tbl =
new ilBadgeUserTableGUI($this,
"listObjectBadgeUsers", 0, null, $parent_obj_id, $this->badge_request->getBadgeId());
597 $tbl =
new ilBadgeUserTableGUI($this,
"listObjectBadgeUsers", 0, null, 0, $this->badge_request->getBadgeId());
599 $tbl->writeFilterToSession();
605 $tbl =
new ilBadgeUserTableGUI($this,
"listObjectBadgeUsers", 0, null, 0, $this->badge_request->getBadgeId());
621 $badge_ids = $this->badge_request->getIds();
623 !$ilAccess->checkAccess(
"write",
"", $this->object->getRefId())) {
624 $ilCtrl->
redirect($this,
"listObjectBadges");
637 foreach ($badge_ids as $badge_id) {
638 $badge =
new ilBadge($badge_id);
639 $badge->setActive($a_status);
643 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"settings_saved"),
true);
644 $ilCtrl->redirect($this,
"listObjectBadges");
666 $ilTabs->clearTargets();
667 $ilTabs->setBackTarget(
669 $ilCtrl->getLinkTarget($this,
"listObjectBadges")
673 $confirmation_gui->setFormAction($ilCtrl->getFormAction($this));
674 $confirmation_gui->setHeaderText(
$lng->
txt(
"badge_deletion_confirmation"));
675 $confirmation_gui->setCancel(
$lng->
txt(
"cancel"),
"listObjectBadges");
676 $confirmation_gui->setConfirm(
$lng->
txt(
"delete"),
"deleteObjectBadges");
678 foreach ($badge_ids as $badge_id) {
679 $badge =
new ilBadge($badge_id);
680 $parent = $badge->getParentMeta();
684 $parent[
"id"] .
") " .
686 if ($parent[
"deleted"]) {
687 $container .=
' <span class="il_ItemAlertProperty">' .
$lng->
txt(
"deleted") .
'</span>';
690 $confirmation_gui->addItem(
709 foreach ($badge_ids as $badge_id) {
710 $badge =
new ilBadge($badge_id);
714 $this->tpl->setOnScreenMessage(
'success',
$lng->
txt(
"settings_saved"),
true);
715 $ilCtrl->redirect($this,
"listObjectBadges");
ilBadgeGUIRequest $badge_request
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
resetlistObjectBadgeUsers()
Class ilBadgeManagementGUI.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getObjectBadgesFromMultiAction()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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)
prepareOutput(bool $show_sub_objects=true)
__construct( $a_data, int $a_id, bool $a_call_by_reference=true, bool $a_prepare_output=true)
confirmDeleteImageTemplates()
setImageTemplateFormValues(ilPropertyFormGUI $a_form, ilBadgeImageTemplate $a_tmpl)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkAccess(string $a_operations, int $a_ref_id, string $a_type="")
checkAccess represents the main method of the RBAC-system in ILIAS3 developers want to use With this ...
initImageTemplateForm(string $a_mode)
resetOffset(bool $a_in_determination=false)
ilGlobalTemplateInterface $tpl
setContent(string $a_html)
Sets content for standard template.
editImageTemplate(ilPropertyFormGUI $a_form=null)
addImageTemplate(ilPropertyFormGUI $a_form=null)
static getInstancesByBadgeId(int $a_badge_id)
Class ilObjectGUI Basic methods of all Output classes.
applylistObjectBadgeUsers()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
editSettings(ilPropertyFormGUI $a_form=null)
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
toggleObjectBadges(bool $a_status)
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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
confirmDeleteObjectBadges()