54 private \ILIAS\HTTP\Services
$http;
58 private readonly
int $parent_ref_id,
59 ?
int $a_parent_obj_id =
null,
60 ?
string $a_parent_obj_type =
null 64 $this->
lng = $DIC->language();
65 $this->
ctrl = $DIC->ctrl();
66 $this->
tabs = $DIC->tabs();
67 $this->
access = $DIC->access();
68 $this->
http = $DIC->http();
70 $this->
toolbar = $DIC->toolbar();
71 $this->ui_factory = $DIC->ui()->factory();
72 $this->resource_storage = $DIC->resourceStorage();
73 $this->upload_service = $DIC->upload();
74 $this->tpl = $DIC->ui()->mainTemplate();
75 $this->
user = $DIC->user();
76 $lng = $DIC->language();
77 $this->parent_obj_id = $a_parent_obj_id
79 $this->parent_obj_type = $a_parent_obj_type
95 $DIC->resourceStorage(),
97 $DIC->ui()->mainTemplate()
111 if ($splittable_user_ids !== []) {
112 if ($splittable_user_ids === [
'ALL_OBJECTS']) {
114 if (!$parent_obj_id && $this->parent_ref_id) {
118 if ($this->parent_ref_id) {
122 $badge_id = $this->
http->wrapper()->query()->retrieve(
'bid', $this->
refinery->kindlyTo()->int());
123 return [$user_ids, $badge_id];
125 foreach ($splittable_user_ids as $row) {
126 if (str_contains($row,
'_')) {
127 $split = explode(
'_', $row);
129 if ($badge_id ===
null && $split[0] !==
'') {
130 $badge_id = (
int) $split[0];
133 if ($split[1] !==
'') {
134 $user_ids[] = (
int) $split[1];
137 return [$user_ids, 0];
143 return [$user_ids, $badge_id];
151 $cmd = $ilCtrl->getCmd(
'listBadges');
153 switch ($next_class) {
154 case 'ilpropertyformgui':
156 if ($this->request->getBadgeId()) {
157 $badge =
new ilBadge($this->request->getBadgeId());
158 $type = $badge->getTypeInstance();
163 $type_id = $this->request->getType();
164 $ilCtrl->setParameter($this,
'type', $type_id);
166 $type =
$handler->getTypeInstanceByUniqueId($type_id);
169 $ilCtrl->forwardCommand($form);
173 $render_default =
true;
175 $action_parameter_token =
'tid_id';
176 $parameter =
'tid_table_action';
178 $query = $DIC->http()->wrapper()->query();
179 if ($query->has($action_parameter_token)) {
180 if ($query->has($action_parameter_token)) {
181 $id = $query->retrieve(
182 $action_parameter_token,
183 $DIC->refinery()->kindlyTo()->listOf($DIC->refinery()->kindlyTo()->string())
188 $DIC->ctrl()->setParameter($this,
"tid",
$id);
192 if ($query->has($parameter)) {
193 $action = $query->retrieve($parameter, $DIC->refinery()->kindlyTo()->string());
195 if ($action ===
'badge_table_activate') {
197 } elseif ($action ===
'badge_table_deactivate') {
199 } elseif ($action ===
'badge_table_edit') {
201 $render_default =
false;
202 } elseif ($action ===
'badge_table_delete') {
204 $render_default =
false;
205 } elseif ($action ===
'award_revoke_badge') {
207 $render_default =
false;
208 } elseif ($action ===
'revokeBadge') {
210 $render_default =
false;
211 } elseif ($action ===
'assignBadge') {
213 $render_default =
false;
216 if ($render_default) {
224 protected function setTabs(
string $a_active): void
232 $lng->
txt(
'obj_bdga'),
233 $ilCtrl->getLinkTarget($this,
'listBadges')
239 $ilCtrl->getLinkTarget($this,
'listUsers')
242 $ilTabs->activateSubTab($a_active);
248 return $ilAccess->
checkAccess(
'write',
'', $this->parent_ref_id);
261 $valid_types =
$handler->getAvailableTypesForObjType($this->parent_obj_type);
264 foreach ($valid_types as
$id => $type) {
265 $ilCtrl->setParameter($this,
'type',
$id);
266 $options[
$id] = $this->ui_factory->link()->standard(
268 $ilCtrl->getLinkTarget($this,
'addBadge')
270 $ilCtrl->setParameter($this,
'type',
null);
273 $options = array_values($options);
275 $ilToolbar->addComponent(
276 $this->ui_factory->dropdown()->standard($options)->withLabel($lng->
txt(
'badge_create'))
279 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
'badge_no_valid_types_for_obj'));
282 $clip_ids = $this->session_repo->getBadgeIds();
283 if (count($clip_ids) > 0) {
285 $ilToolbar->addSeparator();
290 $tt[] = $badge->getTitle();
295 $ilToolbar->addButton(
296 $lng->
txt(
'cont_paste_from_clipboard') .
297 ' (' . count($tt) .
')',
298 $ilCtrl->getLinkTarget($this,
'pasteBadges'),
304 $ilToolbar->addButton(
305 $lng->
txt(
'clear_clipboard'),
306 $ilCtrl->getLinkTarget($this,
'clearClipboard')
312 $table->renderTable();
325 $type_id = $this->request->getType();
328 $ilCtrl->redirect($this,
'listBadges');
331 $ilCtrl->setParameter($this,
'type', $type_id);
334 $type =
$handler->getTypeInstanceByUniqueId($type_id);
336 $ilCtrl->redirect($this,
'listBadges');
349 string $a_type_unique_id
355 $form->setFormAction($ilCtrl->getFormAction($this,
'saveBadge'));
356 $form->setTitle($lng->
txt(
'badge_badge') .
' "' . $a_type->
getCaption() .
'"');
359 $form->addItem($active);
362 $title->setMaxLength(255);
363 $title->setRequired(
true);
364 $form->addItem($title);
368 $desc->setRequired(
true);
369 $form->addItem($desc);
373 $crit->setRequired(
true);
374 $form->addItem($crit);
376 if ($a_mode ===
'create') {
381 $img_mode->setValue(
'tmpl');
382 $form->addItem($img_mode);
384 $img_mode_tmpl =
new ilRadioOption($lng->
txt(
'badge_image_from_template'),
'tmpl');
385 $img_mode->addOption($img_mode_tmpl);
387 $img_mode_up =
new ilRadioOption($lng->
txt(
'badge_image_from_upload'),
'up');
388 $img_mode->addOption($img_mode_up);
392 $img_upload->setSuffixes([
'png',
'svg']);
393 $img_mode_up->addSubItem($img_upload);
398 if (count($valid_templates)) {
400 $options[
''] = $lng->
txt(
'please_select');
401 foreach ($valid_templates as $tmpl) {
402 $options[$tmpl->getId()] = $tmpl->getTitle();
407 $tmpl->setOptions($options);
408 $img_mode_tmpl->addSubItem($tmpl);
411 $img_mode_tmpl->setDisabled(
true);
412 $img_mode->setValue(
'up');
417 $img_upload->setAllowDeletion(
false);
418 $img_upload->setUseCache(
false);
419 $form->addItem($img_upload);
423 $valid->setMaxLength(255);
428 $custom->initConfigForm($form, $this->parent_ref_id);
433 if ($a_mode ===
'create') {
434 $form->addCommandButton(
'saveBadge', $lng->
txt(
'save'));
436 $form->addCommandButton(
'updateBadge', $lng->
txt(
'save'));
438 $form->addCommandButton(
'listBadges', $lng->
txt(
'cancel'));
452 $type_id = $this->request->getType();
455 $ilCtrl->redirect($this,
'listBadges');
458 $ilCtrl->setParameter($this,
'type', $type_id);
461 $type =
$handler->getTypeInstanceByUniqueId($type_id);
463 $ilCtrl->redirect($this,
'listBadges');
467 $custom = $type->getConfigGUIInstance();
469 if ($form->checkInput() &&
470 (!$custom || $custom->validateForm($form))) {
472 $badge->setParentId($this->parent_obj_id);
473 $badge->setTypeId($type_id);
474 $badge->setActive($form->getInput(
'act'));
475 $badge->setTitle($form->getInput(
'title'));
476 $badge->setDescription($form->getInput(
'desc'));
477 $badge->setCriteria($form->getInput(
'crit'));
478 $badge->setValid($form->getInput(
'valid'));
481 $badge->setConfiguration($custom->getConfigFromForm($form));
486 if ($form->getInput(
'img_mode') ===
'up') {
487 $this->badge_image_service->processImageUpload($badge);
493 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
'settings_saved'),
true);
494 $ilCtrl->redirect($this,
'listBadges');
497 $form->setValuesByPost();
507 $badge_id = $this->request->getBadgeIdFromUrl();
510 $ilCtrl->redirect($this,
'listBadges');
513 $ilCtrl->setParameter($this,
'bid', $badge_id);
515 $badge =
new ilBadge($badge_id);
519 $this->tpl->setOnScreenMessage(
'info', sprintf($lng->
txt(
'badge_edit_with_published'), $static_cnt));
523 $type = $badge->getTypeInstance();
524 $a_form = $this->
initBadgeForm(
'edit', $type, $badge->getTypeId());
543 $image_src = $this->badge_image_service->getImageFromBadge($a_badge);
544 if ($image_src !==
'') {
565 $badge_id = $this->request->getBadgeId();
568 $ilCtrl->redirect($this,
'listBadges');
571 $ilCtrl->setParameter($this,
'bid', $badge_id);
573 $badge =
new ilBadge($badge_id);
574 $type = $badge->getTypeInstance();
575 $custom = $type->getConfigGUIInstance();
580 $form = $this->
initBadgeForm(
'update', $type, $badge->getTypeId());
581 if ($form->checkInput() &&
582 (!$custom || $custom->validateForm($form))) {
583 $badge->setActive($form->getInput(
'act'));
584 $badge->setTitle($form->getInput(
'title'));
585 $badge->setDescription($form->getInput(
'desc'));
586 $badge->setCriteria($form->getInput(
'crit'));
587 $badge->setValid($form->getInput(
'valid'));
589 $image = $form->getInput(
'img');
590 if (isset($image[
'name']) && $image[
'name'] !==
'') {
592 $this->badge_image_service->processImageUpload($badge);
596 $badge->setConfiguration($custom->getConfigFromForm($form));
598 $tmpl_id = $form->getInput(
'tmpl');
599 if ($tmpl_id !==
'') {
606 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
'settings_saved'),
true);
607 $ilCtrl->redirect($this,
'listBadges');
610 $this->tpl->setOnScreenMessage(
'failure', $lng->
txt(
'form_input_not_valid'));
611 $form->setValuesByPost();
622 $badge_ids = $this->request->getMultiActionBadgeIdsFromUrl();
623 if ($badge_ids === [
'ALL_OBJECTS']) {
626 $badge_ids[] = $badge->getId();
631 $ilTabs->setBackTarget(
633 $ilCtrl->getLinkTarget($this,
'listBadges')
637 $confirmation_gui->setFormAction($ilCtrl->getFormAction($this));
638 $confirmation_gui->setHeaderText($lng->
txt(
'badge_deletion_confirmation'));
639 $confirmation_gui->setCancel($lng->
txt(
'cancel'),
'listBadges');
640 $confirmation_gui->setConfirm($lng->
txt(
'delete'),
'deleteBadges');
642 foreach ($badge_ids as $badge_id) {
643 $badge =
new ilBadge((
int) $badge_id);
644 $confirmation_gui->addItem(
652 $tpl->
setContent($confirmation_gui->getHTML());
660 $badge_ids = $this->request->getIds();
662 if (count($badge_ids) > 0) {
663 foreach ($badge_ids as $badge_id) {
664 $badge =
new ilBadge((
int) $badge_id);
667 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
'settings_saved'),
true);
669 $this->tpl->setOnScreenMessage(
'failure', $lng->
txt(
'badge_select_one'),
true);
672 $ilCtrl->redirect($this,
'listBadges');
687 $badge_ids = $this->request->getIds();
690 $ilCtrl->
redirect($this,
'listBadges');
702 $clip_ids = $this->session_repo->getBadgeIds();
703 $clip_ids = array_unique(
704 array_merge($clip_ids, $badge_ids)
706 $this->session_repo->setBadgeIds(
array_map(intval(...), $clip_ids));
708 $ilCtrl->redirect($this,
'listBadges');
715 $this->session_repo->clear();
716 $ilCtrl->
redirect($this,
'listBadges');
728 foreach ($this->session_repo->getBadgeIds() as $badge_id) {
729 $badge =
new ilBadge($badge_id);
730 if (in_array($badge->getTypeId(), $valid_types,
true)) {
742 $clip_ids = $this->session_repo->getBadgeIds();
743 if (!$this->
hasWrite() || count($clip_ids) === 0) {
744 $ilCtrl->
redirect($this,
'listBadges');
747 $copy_suffix = $this->
lng->txt(
"copy_of_suffix");
749 $badge->copy($this->parent_obj_id, $copy_suffix);
752 $ilCtrl->redirect($this,
'listBadges');
760 $badge_ids = $this->request->getMultiActionBadgeIdsFromUrl();
761 if (count($badge_ids) > 0) {
762 foreach ($badge_ids as $badge_id) {
763 if ($badge_id === self::TABLE_ALL_OBJECTS_ACTION) {
765 $badge =
new ilBadge($badge->getId());
766 $badge->setActive($a_status);
770 $badge =
new ilBadge((
int) $badge_id);
771 $badge->setActive($a_status);
774 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
'settings_saved'),
true);
777 $this->tpl->setOnScreenMessage(
'failure', $lng->
txt(
'badge_select_one'),
true);
780 $ilCtrl->redirect($this,
'listBadges');
809 $this->parent_obj_id,
810 $this->parent_obj_type
812 if (count($manual)) {
815 $ilToolbar->addInputItem($drop,
true);
817 $ilToolbar->setFormAction($ilCtrl->getFormAction($this,
'selectBadgeForAwardingOrRevoking'));
818 $ilToolbar->addFormButton($lng->
txt(
'badge_award_badge'),
'selectBadgeForAwardingOrRevoking');
828 $this->
ctrl->setParameter(
831 $this->
http->wrapper()->post()->retrieve(
'bid', $this->
refinery->kindlyTo()->int())
833 $this->
ctrl->redirect($this,
'awardBadgeUserSelection');
838 $badge_ids = $this->request->getMultiActionBadgeIdsFromUrl();
841 if ($badge_ids === []) {
842 if ($this->
http->wrapper()->post()->has(
'bid')) {
843 $bid = $this->
http->wrapper()->post()->retrieve(
'bid', $this->
refinery->kindlyTo()->int());
844 } elseif ($this->
http->wrapper()->query()->has(
'bid')) {
845 $bid = $this->
http->wrapper()->query()->retrieve(
'bid', $this->
refinery->kindlyTo()->int());
847 } elseif (count($badge_ids) === 1) {
848 $bid = (
int) $badge_ids[0];
853 $this->
ctrl->redirect($this,
'listUsers');
856 $manual = array_keys(
860 if (!in_array($bid, $manual,
true)) {
861 $this->
ctrl->redirect($this,
'listUsers');
864 $back_target =
'listUsers';
865 if ($this->request->getTgt() ===
'bdgl') {
866 $this->
ctrl->saveParameter($this,
'tgt');
867 $back_target =
'listBadges';
870 $this->
tabs->clearTargets();
871 $this->
tabs->setBackTarget(
872 $this->
lng->txt(
'back'),
873 $this->
ctrl->getLinkTarget($this, $back_target)
876 $this->
ctrl->setParameter($this,
'bid', $bid);
890 $splittable_user_ids = $this->request->getBadgeAssignableUsers();
896 $ilCtrl->redirect($this,
'listUsers');
903 $ass->setAwardedBy($ilUser->getId());
906 $new_badges[
$user_id][] = $badge_id;
912 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
'settings_saved'),
true);
913 $ilCtrl->redirect($this,
'listUsers');
923 $splittable_user_ids = $this->request->getMultiActionBadgeIdsFromUrl();
929 $ilCtrl->redirect($this,
'listUsers');
932 $ilTabs->clearTargets();
933 $ilTabs->setBackTarget(
935 $ilCtrl->getLinkTarget($this,
'listUsers')
938 $badge =
new ilBadge($badge_id);
940 $ilCtrl->setParameter($this,
'bid', $badge->getId());
943 $confirmation_gui->setFormAction($ilCtrl->getFormAction($this));
944 $confirmation_gui->setHeaderText(
945 sprintf($lng->
txt(
'badge_assignment_deletion_confirmation'), $badge->getTitle())
947 $confirmation_gui->setCancel($lng->
txt(
'cancel'),
'listUsers');
948 $confirmation_gui->setConfirm($lng->
txt(
'badge_remove_badge'),
'deassignBadge');
953 if (in_array($user_id, $assigned_users,
true)) {
954 $confirmation_gui->addItem(
962 $tpl->
setContent($confirmation_gui->getHTML());
970 $post_values = $this->request->getIds();
973 foreach ($post_values as $usr_id => $found_badge_id) {
974 $badge_id = $found_badge_id;
975 $user_ids[] = $usr_id;
981 $ilCtrl->redirect($this,
'listUsers');
989 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
'settings_saved'),
true);
990 $ilCtrl->redirect($this,
'listUsers');
999 $new_rid = $this->badge_image_service->cloneBadgeImageByRid($rid);
1008 $this->resource_storage->manage()->remove(
initBadgeForm(string $a_mode, ilBadgeType $a_type, string $a_type_unique_id)
This class represents an option in a radio group.
ilBadgeManagementGUI: ilPropertyFormGUI
static getInstancesByType(string $a_type_unique_id)
ILIAS HTTP Services $http
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...
ilBadgeGUIRequest $request
static getInstancesByParentId(int $a_parent_id, ?array $a_filter=null)
checkAccess(string $a_permission, string $a_cmd, int $a_ref_id, string $a_type="", ?int $a_obj_id=null, ?int $a_tree_id=null)
check access for an object (provide $a_type and $a_obj_id if available for better performance) ...
ilBadgePictureDefinition $flavour_definition
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
toggleBadges(bool $a_status)
getConfigGUIInstance()
Get GUI config instance.
Stores repository clipboard data.
setContent(string $a_html)
Sets content for standard template.
ilBadgeManagementSessionRepository $session_repo
Services $resource_storage
static getAssignedUsers(int $a_badge_id)
loadLanguageModule(string $a_module)
Load language module.
setBadgeFormValues(ilPropertyFormGUI $a_form, ilBadge $a_badge, ilBadgeType $a_type)
FileUpload $upload_service
cloneBadgeTemplate(ilBadge $badge, ?ResourceIdentification $rid)
removeResourceStorageImage(ilBadge $badge)
ilBadgeImage $badge_image_service
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getNextClass($a_gui_class=null)
static http()
Fetches the global http state from ILIAS.
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link='', bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path='ilpublicuserprofilegui')
Default behaviour is:
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getExtendedTypeCaption(ilBadgeType $a_type)
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
addBadge(?ilPropertyFormGUI $a_form=null)
static getInstancesByBadgeId(int $a_badge_id)
Class ResourceIdentification.
getImagePath(bool $a_full_path=true)
ilGlobalTemplateInterface $tpl
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
editBadge(?ilPropertyFormGUI $a_form=null)
const TABLE_ALL_OBJECTS_ACTION
splitBadgeAndUserIdsFromString(array $splittable_user_ids)
clearTargets()
clear all targets
__construct(private readonly int $parent_ref_id, ?int $a_parent_obj_id=null, ?string $a_parent_obj_type=null)
static exists(int $a_badge_id, int $a_user_id)
setMaxNumOfChars(int $a_number)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
This class represents a text area property in a property form.
ILIAS UI Factory $ui_factory
getBadgesFromMultiAction()
getValidBadgesFromClipboard()
awardBadgeUserSelection()
static _lookupType(int $id, bool $reference=false)
setTabs(string $a_active)
selectBadgeForAwardingOrRevoking()
setImageRid(?string $image_rid)