ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjBadgeAdministrationGUI.php
Go to the documentation of this file.
1 <?php
2 
24 
30 {
31  public const TABLE_ALL_OBJECTS_ACTION = 'ALL_OBJECTS';
32  private \ILIAS\ResourceStorage\Services $resource_storage;
35  private ilTabsGUI $tabs;
36  private Services $http;
37 
38  public function __construct(
39  $a_data,
40  int $a_id,
41  bool $a_call_by_reference = true,
42  bool $a_prepare_output = true
43  ) {
44  global $DIC;
45 
46  $this->resource_storage = $DIC->resourceStorage();
47  $this->rbacsystem = $DIC->rbac()->system();
48  $this->ctrl = $DIC->ctrl();
49  $this->access = $DIC->access();
50  $this->lng = $DIC->language();
51  $this->toolbar = $DIC->toolbar();
52  $this->tpl = $DIC['tpl'];
53  $this->tabs = $DIC->tabs();
54  $this->type = 'bdga';
55  $this->http = $DIC->http();
56  parent::__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
57 
58  $this->badge_request = new ilBadgeGUIRequest(
59  $DIC->http(),
60  $DIC->refinery()
61  );
62 
63  $this->lng->loadLanguageModule('badge');
64  }
65 
66  public function executeCommand(): void
67  {
68  $next_class = $this->ctrl->getNextClass($this) ?? '';
69  $cmd = $this->ctrl->getCmd() ?? '';
70 
71  $this->prepareOutput();
72 
73  switch (strtolower($next_class)) {
74  case strtolower(ilPermissionGUI::class):
75  $this->tabs_gui->setTabActive('perm_settings');
76  $perm_gui = new ilPermissionGUI($this);
77  $this->ctrl->forwardCommand($perm_gui);
78  break;
79 
80  case strtolower(ilBadgeManagementGUI::class):
81  $this->assertActive();
82  $this->tabs_gui->setTabActive('activity');
83  $gui = new ilBadgeManagementGUI($this->ref_id, $this->obj_id, $this->type);
84  $this->ctrl->forwardCommand($gui);
85  break;
86 
87  default:
88  if (!$cmd || $cmd === 'view') {
89  $cmd = 'editSettings';
90  }
91 
92  if ($this->badge_request->getBadgeIdFromUrl()) {
93  $this->ctrl->setParameter($this, 'tid', $this->badge_request->getBadgeIdFromUrl());
94  }
95 
96  $table_action = $this->http->wrapper()->query()->retrieve(
97  'tid_table_action',
98  $this->refinery->byTrying([
99  $this->refinery->kindlyTo()->string(),
100  $this->refinery->always('')
101  ])
102  );
103 
104  $render_default = true;
105  if ($table_action === 'badge_type_activate') {
106  $this->activateTypes();
107  } elseif ($table_action === 'badge_type_deactivate') {
108  $this->deactivateTypes();
109  } elseif ($table_action === 'badge_image_template_editImageTemplate') {
110  $this->editImageTemplate();
111  $render_default = false;
112  } elseif ($table_action === 'obj_badge_user') {
113  $this->editImageTemplate();
114  $render_default = false;
115  } elseif ($table_action === 'obj_badge_activate') {
116  $this->activateObjectBadges();
117  $render_default = false;
118  } elseif ($table_action === 'obj_badge_deactivate') {
119  $this->deactivateObjectBadges();
120  $render_default = false;
121  } elseif ($table_action === 'obj_badge_show_users') {
122  $this->listObjectBadgeUsers();
123  $render_default = false;
124  } elseif ($table_action === 'badge_image_template_delete') {
126  $render_default = false;
127  } elseif ($table_action === 'obj_badge_delete') {
128  $this->confirmDeleteObjectBadges();
129  $render_default = false;
130  }
131 
132  if ($render_default) {
133  $this->$cmd();
134  break;
135  }
136  }
137  }
138 
139  public function getAdminTabs(): void
140  {
141  $rbacsystem = $this->rbacsystem;
142 
143  if ($rbacsystem->checkAccess('visible,read', $this->object->getRefId())) {
144  $this->tabs_gui->addTab(
145  'settings',
146  $this->lng->txt('settings'),
147  $this->ctrl->getLinkTarget($this, 'editSettings')
148  );
149 
150  if (ilBadgeHandler::getInstance()->isActive()) {
151  $this->tabs_gui->addTab(
152  'types',
153  $this->lng->txt('badge_types'),
154  $this->ctrl->getLinkTarget($this, 'listTypes')
155  );
156 
157  $this->tabs_gui->addTab(
158  'imgtmpl',
159  $this->lng->txt('badge_image_templates'),
160  $this->ctrl->getLinkTarget($this, 'listImageTemplates')
161  );
162 
163  $this->tabs_gui->addTab(
164  'activity',
165  $this->lng->txt('badge_activity_badges'),
166  $this->ctrl->getLinkTargetByClass('ilbadgemanagementgui', '')
167  );
168 
169  $this->tabs_gui->addTab(
170  'obj_badges',
171  $this->lng->txt('badge_object_badges'),
172  $this->ctrl->getLinkTarget($this, 'listObjectBadges')
173  );
174  }
175  }
176 
177  if ($rbacsystem->checkAccess('edit_permission', $this->object->getRefId())) {
178  $this->tabs_gui->addTab(
179  'perm_settings',
180  $this->lng->txt('perm_settings'),
181  $this->ctrl->getLinkTargetByClass('ilpermissiongui', 'perm')
182  );
183  }
184  }
185 
186  protected function assertActive(): void
187  {
188  if (!ilBadgeHandler::getInstance()->isActive()) {
189  $this->ctrl->redirect($this, 'editSettings');
190  }
191  }
192 
193 
194  //
195  // settings
196  //
197 
198  protected function editSettings(?ilPropertyFormGUI $a_form = null): void
199  {
200  $this->tabs_gui->setTabActive('settings');
201 
202  if (!$a_form) {
203  $a_form = $this->initFormSettings();
204  }
205 
206  $this->tpl->setContent($a_form->getHTML());
207  }
208 
209  protected function saveSettings(): void
210  {
211  $ilCtrl = $this->ctrl;
212 
213  $this->checkPermission('write');
214 
215  $form = $this->initFormSettings();
216  if ($form->checkInput()) {
218  $handler->setActive((bool) $form->getInput('act'));
219 
220  $this->tpl->setOnScreenMessage('success', $this->lng->txt('settings_saved'), true);
221  $ilCtrl->redirect($this, 'editSettings');
222  }
223 
224  $form->setValuesByPost();
225  $this->editSettings($form);
226  }
227 
228  protected function initFormSettings(): ilPropertyFormGUI
229  {
230  $ilAccess = $this->access;
231 
232  $form = new ilPropertyFormGUI();
233  $form->setFormAction($this->ctrl->getFormAction($this));
234  $form->setTitle($this->lng->txt('badge_settings'));
235 
236  if ($ilAccess->checkAccess('write', '', $this->object->getRefId())) {
237  $form->addCommandButton('saveSettings', $this->lng->txt('save'));
238  $form->addCommandButton('editSettings', $this->lng->txt('cancel'));
239  }
240 
241  $act = new ilCheckboxInputGUI($this->lng->txt('badge_service_activate'), 'act');
242  $act->setInfo($this->lng->txt('badge_service_activate_info'));
243  $form->addItem($act);
244 
246  $act->setChecked($handler->isActive());
247 
248  return $form;
249  }
250 
251 
252  //
253  // types
254  //
255 
256  protected function listTypes(): void
257  {
258  $ilAccess = $this->access;
259 
260  $this->assertActive();
261  $this->tabs_gui->setTabActive('types');
262 
263  $tpl = new ilBadgeTypesTableGUI($this->access->checkAccess("write", "", $this->object->getRefId()));
264  $tpl->renderTable();
265  }
266 
267  protected function activateTypes(): void
268  {
269  $lng = $this->lng;
270  $this->assertActive();
271 
272  $tmpl_ids = $this->badge_request->getMultiActionBadgeIdsFromUrl();
273  if ($this->checkPermissionBool('write') && count($tmpl_ids) > 0) {
275  $change_state = [];
276  foreach ($handler->getInactiveTypes() as $type) {
277  if (!in_array($type, $tmpl_ids)) {
278  $change_state[] = $type;
279  }
280  }
281 
282  if (current($tmpl_ids) === self::TABLE_ALL_OBJECTS_ACTION) {
283  $handler->setInactiveTypes([]);
284  } else {
285  $handler->setInactiveTypes($change_state);
286  }
287 
288  $this->tpl->setOnScreenMessage('success', $lng->txt('settings_saved'), true);
289  }
290  $this->ctrl->redirect($this, 'listTypes');
291  }
292 
293  protected function deactivateTypes(): void
294  {
295  $lng = $this->lng;
296  $this->assertActive();
297 
298  $tmpl_ids = $this->badge_request->getMultiActionBadgeIdsFromUrl();
299  if ($this->checkPermissionBool('write') && count($tmpl_ids) > 0) {
301  $change_state = [];
302  foreach ($handler->getInactiveTypes() as $type) {
303  if (!in_array($type, $tmpl_ids)) {
304  $change_state[] = $type;
305  }
306  }
307 
308  $res = [];
309  if (current($tmpl_ids) === self::TABLE_ALL_OBJECTS_ACTION) {
310  $types = $handler->getAvailableTypes(false);
311  foreach ($types as $id => $type) {
312  $res[] = $id;
313  }
314  $handler->setInactiveTypes($res);
315  } else {
316  $handler->setInactiveTypes($change_state);
317  }
318  $inactive = array_merge($handler->getInactiveTypes(), $tmpl_ids);
319  $handler->setInactiveTypes($inactive);
320 
321  $this->tpl->setOnScreenMessage('success', $lng->txt('settings_saved'), true);
322  }
323  $this->ctrl->redirect($this, 'listTypes');
324  }
325 
326 
327  //
328  // images templates
329  //
330 
331  protected function listImageTemplates(): void
332  {
333  $lng = $this->lng;
334  $ilToolbar = $this->toolbar;
335  $ilCtrl = $this->ctrl;
336 
337  $this->assertActive();
338  $this->tabs_gui->setTabActive('imgtmpl');
339 
340  if ($this->checkPermissionBool('write')) {
341  $ilToolbar->addButton(
342  $lng->txt('badge_add_template'),
343  $ilCtrl->getLinkTarget($this, 'addImageTemplate')
344  );
345  }
346 
347  $template_table = new ilBadgeImageTemplateTableGUI($this->access->checkAccess("write", "", $this->object->getRefId()));
348  $template_table->renderTable();
349  }
350 
351 
352  protected function addImageTemplate(
353  ?ilPropertyFormGUI $a_form = null
354  ): void {
355  $tpl = $this->tpl;
356 
357  $this->checkPermission('write');
358 
359  $this->assertActive();
360  $this->tabs_gui->setTabActive('imgtmpl');
361 
362  if (!$a_form) {
363  $a_form = $this->initImageTemplateForm('create');
364  }
365 
366  $tpl->setContent($a_form->getHTML());
367  }
368 
369  protected function initImageTemplateForm(
370  string $a_mode
371  ): ilPropertyFormGUI {
372  $lng = $this->lng;
373  $ilCtrl = $this->ctrl;
374 
375  $form = new ilPropertyFormGUI();
376  $form->setFormAction($ilCtrl->getFormAction($this, 'saveBadge'));
377  $form->setTitle($lng->txt('badge_image_template_form'));
378 
379  $title = new ilTextInputGUI($lng->txt('title'), 'title');
380  $title->setMaxLength(255);
381  $title->setRequired(true);
382  $form->addItem($title);
383 
384  $img = new ilImageFileInputGUI($lng->txt('image'), 'img');
385  $img->setSuffixes(['png', 'svg']);
386  if ($a_mode === 'create') {
387  $img->setRequired(true);
388  }
389  $img->setUseCache(false);
390  $img->setAllowDeletion(false);
391  $form->addItem($img);
392 
393  $types_mode = new ilRadioGroupInputGUI($lng->txt('badge_template_types'), 'tmode');
394  $types_mode->setRequired(true);
395  $types_mode->setValue('all');
396  $form->addItem($types_mode);
397 
398  $type_all = new ilRadioOption($lng->txt('badge_template_types_all'), 'all');
399  $types_mode->addOption($type_all);
400 
401  $type_spec = new ilRadioOption($lng->txt('badge_template_types_specific'), 'spec');
402  $types_mode->addOption($type_spec);
403 
404  $types = new ilCheckboxGroupInputGUI($lng->txt('badge_types'), 'type');
405  $types->setRequired(true);
406  $type_spec->addSubItem($types);
407 
408  foreach (ilBadgeHandler::getInstance()->getAvailableTypes(false) as $id => $type) {
409  $types->addOption(new ilCheckboxOption($type->getCaption(), $id));
410  }
411 
412  if ($a_mode === 'create') {
413  $form->addCommandButton('saveImageTemplate', $lng->txt('save'));
414  } else {
415  $form->addCommandButton('updateImageTemplate', $lng->txt('save'));
416  }
417  $form->addCommandButton('listImageTemplates', $lng->txt('cancel'));
418 
419  return $form;
420  }
421 
422  protected function saveImageTemplate(): void
423  {
424  $ilCtrl = $this->ctrl;
425  $lng = $this->lng;
426 
427  $this->checkPermission('write');
428 
429  $form = $this->initImageTemplateForm('create');
430  if ($form->checkInput()) {
431  $tmpl = new ilBadgeImageTemplate();
432  $tmpl->setTitle($form->getInput('title'));
433  $tmpl->setTypes($form->getInput('type'));
434  $tmpl->create();
435 
436  $tmpl->processImageUpload($tmpl);
437 
438  $this->tpl->setOnScreenMessage('success', $lng->txt('settings_saved'), true);
439  $ilCtrl->redirect($this, 'listImageTemplates');
440  }
441 
442  $form->setValuesByPost();
443  $this->addImageTemplate($form);
444  }
445 
446  protected function editImageTemplate(
447  ?ilPropertyFormGUI $a_form = null
448  ): void {
449  $ilCtrl = $this->ctrl;
450  $tpl = $this->tpl;
451 
452  $this->checkPermission('write');
453 
454  $this->assertActive();
455  $this->tabs_gui->setTabActive('imgtmpl');
456 
457  $tmpl_ids = $this->badge_request->getMultiActionBadgeIdsFromUrl();
458  if (count($tmpl_ids) !== 1) {
459  $this->ctrl->redirect($this, 'listImageTemplates');
460  }
461 
462  $template_id = (int) array_pop($tmpl_ids);
463  $ilCtrl->setParameter($this, 'tid', $template_id);
464 
465  $tmpl = new ilBadgeImageTemplate($template_id);
466 
467  if (!$a_form) {
468  $a_form = $this->initImageTemplateForm('edit');
469  $this->setImageTemplateFormValues($a_form, $tmpl);
470  }
471 
472  $tpl->setContent($a_form->getHTML());
473  }
474 
475  protected function setImageTemplateFormValues(
476  ilPropertyFormGUI $a_form,
477  ilBadgeImageTemplate $a_tmpl
478  ): void {
479  $a_form->getItemByPostVar('title')->setValue($a_tmpl->getTitle());
480  if ($a_tmpl->getImageRid() !== null) {
481  $img = $a_tmpl->getImageFromResourceId();
482  $a_form->getItemByPostVar('img')->setImage($img);
483  $a_form->getItemByPostVar('img')->setValue($a_tmpl->getImageRid());
484  } else {
485  $a_form->getItemByPostVar('img')->setImage($a_tmpl->getImagePath());
486  $a_form->getItemByPostVar('img')->setValue($a_tmpl->getImage());
487  }
488 
489  if ($a_tmpl->getTypes()) {
490  $a_form->getItemByPostVar('tmode')->setValue('spec');
491  $a_form->getItemByPostVar('type')->setValue($a_tmpl->getTypes());
492  } else {
493  $a_form->getItemByPostVar('tmode')->setValue('all');
494  }
495  }
496 
497  protected function updateImageTemplate(): void
498  {
499  $ilCtrl = $this->ctrl;
500  $lng = $this->lng;
501 
502  $this->checkPermission('write');
503 
504  $tmpl_id = $this->badge_request->getTemplateId();
505  if (!$tmpl_id) {
506  $ilCtrl->redirect($this, 'listImageTemplates');
507  }
508 
509  $ilCtrl->setParameter($this, 'tid', $tmpl_id);
510 
511  $tmpl = new ilBadgeImageTemplate($tmpl_id);
512 
513  $form = $this->initImageTemplateForm('update');
514  if ($form->checkInput()) {
515  $tmpl->setTitle($form->getInput('title'));
516 
517  if ($form->getInput('tmode') !== 'all') {
518  $tmpl->setTypes($form->getInput('type'));
519  } else {
520  $tmpl->setTypes(null);
521  }
522 
523  $tmpl->update();
524 
525  $tmpl->processImageUpload($tmpl);
526 
527  $this->tpl->setOnScreenMessage('success', $lng->txt('settings_saved'), true);
528  $ilCtrl->redirect($this, 'listImageTemplates');
529  }
530 
531  $this->setImageTemplateFormValues($form, $tmpl);
532  $form->setValuesByPost();
533  $this->editImageTemplate($form);
534  }
535 
536  protected function confirmDeleteImageTemplates(): void
537  {
538  $ilCtrl = $this->ctrl;
539  $lng = $this->lng;
540  $tpl = $this->tpl;
541  $ilTabs = $this->tabs;
542 
543  $this->checkPermission('write');
544 
545  $tmpl_ids = $this->badge_request->getBadgeAssignableUsers();
546  if ($tmpl_ids === ['ALL_OBJECTS']) {
547  $tmpl_ids = [];
548  foreach (ilBadgeImageTemplate::getInstances() as $template) {
549  $tmpl_ids[] = $template->getId();
550  }
551  }
552 
553  if (!$tmpl_ids) {
554  $ilCtrl->redirect($this, 'listImageTemplates');
555  }
556 
557  $ilTabs->clearTargets();
558  $ilTabs->setBackTarget(
559  $lng->txt('back'),
560  $ilCtrl->getLinkTarget($this, 'listImageTemplates')
561  );
562 
563  $confirmation_gui = new ilConfirmationGUI();
564  $confirmation_gui->setFormAction($ilCtrl->getFormAction($this));
565  $confirmation_gui->setHeaderText($lng->txt('badge_template_deletion_confirmation'));
566  $confirmation_gui->setCancel($lng->txt('cancel'), 'listImageTemplates');
567  $confirmation_gui->setConfirm($lng->txt('delete'), 'deleteImageTemplates');
568 
569  foreach ($tmpl_ids as $tmpl_id) {
570  $tmpl = new ilBadgeImageTemplate($tmpl_id);
571  $confirmation_gui->addItem('id[]', $tmpl_id, $tmpl->getTitle());
572  }
573 
574  $tpl->setContent($confirmation_gui->getHTML());
575  }
576 
577  protected function deleteImageTemplates(): void
578  {
579  $lng = $this->lng;
580  $tmpl_ids = $this->badge_request->getIds();
581 
582  if ($this->checkPermissionBool('write') && count($tmpl_ids) > 0) {
583  if (current($tmpl_ids) === self::TABLE_ALL_OBJECTS_ACTION) {
584  $tmpl_ids = [];
585  foreach (ilBadgeImageTemplate::getInstances() as $template) {
586  $tmpl_ids[] = $template->getId();
587  }
588  }
589  foreach ($tmpl_ids as $tmpl_id) {
590  $tmpl = new ilBadgeImageTemplate((int) $tmpl_id);
591  $tmpl->delete();
592  }
593  $this->tpl->setOnScreenMessage('success', $lng->txt('badge_deletion'), true);
594  } else {
595  $this->tpl->setOnScreenMessage('failure', $lng->txt('badge_select_one'), true);
596  }
597 
598  $this->ctrl->redirect($this, 'listImageTemplates');
599  }
600 
601 
602  //
603  // object badges
604  //
605 
606  protected function applyObjectFilter(): void
607  {
608  $this->listObjectBadges();
609  }
610 
611  protected function resetObjectFilter(): void
612  {
613  $this->listObjectBadges();
614  }
615 
616  protected function listObjectBadgeUsers(): void
617  {
618  $parent_obj_id = $this->badge_request->getParentId();
619  if (!$parent_obj_id && $this->badge_request->getBadgeIdFromUrl()) {
620  // In this case, we want't to list the users that have been awarded a specific badge
621  $badge = new ilBadge($this->badge_request->getBadgeIdFromUrl());
622  $parent_obj_id = $badge->getParentId();
623  }
624  if (!$parent_obj_id) {
625  $this->ctrl->redirect($this, 'listObjectBadges');
626  }
627 
628  $this->assertActive();
629 
630  $this->tabs_gui->clearTargets();
631  $this->tabs_gui->setBackTarget(
632  $this->lng->txt('back'),
633  $this->ctrl->getLinkTarget($this, 'listObjectBadges')
634  );
635 
636  $this->ctrl->saveParameter($this, 'pid');
637 
638  $tbl = new ilBadgeUserTableGUI(null, null, $parent_obj_id, $this->badge_request->getBadgeId());
639  $tbl->renderTable();
640  }
641 
642  protected function applylistObjectBadgeUsers(): void
643  {
644  $this->listObjectBadges();
645  }
646 
647  protected function resetlistObjectBadgeUsers(): void
648  {
649  $this->listObjectBadges();
650  }
651 
652  protected function listObjectBadges(): void
653  {
654  $this->assertActive();
655  $this->tabs_gui->setTabActive('obj_badges');
656 
657  $tbl = new ilObjectBadgeTableGUI($this, $this->access->checkAccess("write", "", $this->object->getRefId()));
658  $tbl->renderTable();
659  }
660 
661  //
662  // see ilBadgeManagementGUI
663  //
664 
665  protected function getObjectBadgesFromMultiAction(): array
666  {
667  $ilAccess = $this->access;
668  $ilCtrl = $this->ctrl;
669 
670  $badge_ids = $this->badge_request->getMultiActionBadgeIdsFromUrl();
671  if (!$badge_ids ||
672  !$ilAccess->checkAccess('write', '', $this->object->getRefId())) {
673  $ilCtrl->redirect($this, 'listObjectBadges');
674  }
675 
676  return $badge_ids;
677  }
678 
679  protected function toggleObjectBadges(bool $a_status): void
680  {
681  $ilCtrl = $this->ctrl;
682  $lng = $this->lng;
683 
684  $badge_ids = $this->getObjectBadgesFromMultiAction();
685  if (current($badge_ids) === self::TABLE_ALL_OBJECTS_ACTION) {
686  $filter = ['type' => '' , 'title' => '', 'object' => ''];
687  $badge_ids = [];
688  foreach (ilBadge::getObjectInstances($filter) as $badge_item) {
689  $badge_ids[] = $badge_item['id'];
690  }
691  foreach ($badge_ids as $badge_id) {
692  $badge = new ilBadge($badge_id);
693  $badge->setActive($a_status);
694  $badge->update();
695  }
696  } else {
697  foreach ($badge_ids as $badge_id) {
698  $badge = new ilBadge($badge_id);
699  $badge->setActive($a_status);
700  $badge->update();
701  }
702  }
703 
704 
705  $this->tpl->setOnScreenMessage('success', $lng->txt('settings_saved'), true);
706  $ilCtrl->redirect($this, 'listObjectBadges');
707  }
708 
709  protected function activateObjectBadges(): void
710  {
711  $this->toggleObjectBadges(true);
712  }
713 
714  protected function deactivateObjectBadges(): void
715  {
716  $this->toggleObjectBadges(false);
717  }
718 
719  protected function confirmDeleteObjectBadges(): void
720  {
721  $ilCtrl = $this->ctrl;
722  $lng = $this->lng;
723  $tpl = $this->tpl;
724  $ilTabs = $this->tabs;
725 
726  $badge_ids = $this->badge_request->getMultiActionBadgeIdsFromUrl();
727 
728  $ilTabs->clearTargets();
729  $ilTabs->setBackTarget(
730  $lng->txt('back'),
731  $ilCtrl->getLinkTarget($this, 'listObjectBadges')
732  );
733 
734  $confirmation_gui = new ilConfirmationGUI();
735  $confirmation_gui->setFormAction($ilCtrl->getFormAction($this));
736  $confirmation_gui->setHeaderText($lng->txt('badge_deletion_confirmation'));
737  $confirmation_gui->setCancel($lng->txt('cancel'), 'listObjectBadges');
738  $confirmation_gui->setConfirm($lng->txt('delete'), 'deleteObjectBadges');
739 
740  if ($badge_ids === ['ALL_OBJECTS']) {
741  $badge_ids = [];
742  $filter = [
743  'type' => '',
744  'title' => '',
745  'object' => ''
746  ];
747  foreach (ilBadge::getObjectInstances($filter) as $badge_item) {
748  $badge_ids[] = $badge_item['id'];
749  }
750  }
751  foreach ($badge_ids as $badge_id) {
752  $badge = new ilBadge($badge_id);
753  $parent = $badge->getParentMeta();
754 
755  $container = '(' . $parent['type'] . '/' .
756  $parent['id'] . ') ' .
757  $parent['title'];
758  if ($parent['deleted']) {
759  $container .= ' <span class="il_ItemAlertProperty">' . $lng->txt('deleted') . '</span>';
760  }
761 
762  $confirmation_gui->addItem(
763  'id[]',
764  $badge_id,
765  $container . ' - ' .
766  $badge->getTitle() .
767  ' (' . count(ilBadgeAssignment::getInstancesByBadgeId($badge_id)) . ')'
768  );
769  }
770 
771  $tpl->setContent($confirmation_gui->getHTML());
772  }
773 
774  protected function deleteObjectBadges(): void
775  {
776  $ilCtrl = $this->ctrl;
777  $lng = $this->lng;
778 
779  $badge_ids = $this->badge_request->getMultiActionBadgeIdsFromPost();
780 
781  foreach ($badge_ids as $badge_id) {
782  $badge = new ilBadge($badge_id);
783  $badge->delete();
784  }
785 
786  $this->tpl->setOnScreenMessage('success', $lng->txt('settings_saved'), true);
787  $ilCtrl->redirect($this, 'listObjectBadges');
788  }
789 
790 }
This class represents an option in a radio group.
$res
Definition: ltiservices.php:66
ilBadgeManagementGUI: ilPropertyFormGUI
This class represents an option in a checkbox group.
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...
getItemByPostVar(string $a_post_var)
prepareOutput(bool $show_sub_objects=true)
addImageTemplate(?ilPropertyFormGUI $a_form=null)
__construct( $a_data, int $a_id, bool $a_call_by_reference=true, bool $a_prepare_output=true)
setContent(string $a_html)
Sets content for standard template.
setSuffixes(array $a_suffixes)
setImageTemplateFormValues(ilPropertyFormGUI $a_form, ilBadgeImageTemplate $a_tmpl)
getImageFromResourceId(int $size=ilBadgeImage::IMAGE_SIZE_XS)
$container
Definition: wac.php:36
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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 ...
ilLanguage $lng
static http()
Fetches the global http state from ILIAS.
This class represents a property in a property form.
ilGlobalTemplateInterface $tpl
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
static getInstancesByBadgeId(int $a_badge_id)
Class ilObjectGUI Basic methods of all Output classes.
global $DIC
Definition: shib_login.php:22
ilToolbarGUI $toolbar
ILIAS ResourceStorage Services $resource_storage
This class represents a property in a property form.
clearTargets()
clear all targets
setRequired(bool $a_required)
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
editSettings(?ilPropertyFormGUI $a_form=null)
$handler
Definition: oai.php:30
This class represents an image file property in a property form.
__construct(Container $dic, ilPlugin $plugin)
ilAccessHandler $access
static getObjectInstances(?array $filter=null)
editImageTemplate(?ilPropertyFormGUI $a_form=null)
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)