64 $this->ctrl = $DIC->ctrl();
65 $this->lng = $DIC->language();
66 $this->tpl = $DIC[
"tpl"];
67 $this->tabs = $DIC->tabs();
68 $this->
user = $DIC->user();
69 $this->access = $DIC->access();
70 $this->factory = $DIC->ui()->factory();
71 $this->renderer = $DIC->ui()->renderer();
73 $this->noti_repo = new \ILIAS\Badge\Notification\BadgeNotificationPrefRepository();
84 $lng->loadLanguageModule(
"badge");
89 switch ($ilCtrl->getNextClass()) {
92 $cmd = $ilCtrl->getCmd(
"listBadges");
107 $lng->txt(
"badge_personal_badges"),
108 $ilCtrl->getLinkTarget($this,
"listBadges")
113 $lng->txt(
"badge_backpack_list"),
114 $ilCtrl->getLinkTarget($this,
"listBackpackGroups")
133 $lng->txt(
"badge_profile_view"),
134 $ilCtrl->getLinkTarget($this,
"listBadges")
138 $lng->txt(
"badge_profile_manage"),
139 $ilCtrl->getLinkTarget($this,
"manageBadges")
141 $ilTabs->activateTab(
"ilias_badges");
142 $ilTabs->activateSubTab($a_active);
146 $lng->txt(
"badge_profile_view"),
147 $ilCtrl->getLinkTarget($this,
"listBadges")
151 $lng->txt(
"badge_profile_manage"),
152 $ilCtrl->getLinkTarget($this,
"manageBadges")
154 $ilTabs->activateTab($a_active);
169 $badge =
new ilBadge($ass->getBadgeId());
172 "id" => $badge->getId(),
173 "title" => $badge->getTitle(),
174 "description" => $badge->getDescription(),
175 "image" => $badge->getImagePath(),
176 "name" => $badge->getImage(),
177 "issued_on" => $ass->getTimestamp(),
178 "active" => (bool) $ass->getPosition(),
179 "object" => $badge->getParentMeta(),
187 $tmpl =
new ilTemplate(
"tpl.badge_backpack.html",
true,
true,
"Services/Badge");
192 $badge_components = array();
194 foreach ($data as $badge) {
195 $modal = $this->factory->modal()->roundtrip(
197 $this->factory->legacy($badge[
"renderer"]->renderModalContent())
198 )->withCancelButtonLabel(
"ok");
199 $image = $this->factory->image()->responsive($badge[
"image"], $badge[
"name"])
200 ->withAction($modal->getShowSignal());
202 $this->ctrl->setParameter($this,
"badge_id", $badge[
"id"]);
203 $url = $this->ctrl->getLinkTarget($this, $badge[
"active"]
206 $this->ctrl->setParameter($this,
"badge_id",
"");
207 $profile_button = $this->factory->button()->standard(
208 $this->lng->txt(!$badge[
"active"] ?
"badge_add_to_profile" :
"badge_remove_from_profile"),
212 if ($badge[
"object"][
"type"] !=
"bdga") {
213 $parent_icon = $this->factory->symbol()->icon()->custom(
215 $this->lng->txt(
"obj_" . $badge[
"object"][
"type"]),
220 if ($this->access->checkAccess(
"read",
"", $parent_ref_id)) {
221 $parent_link = $this->factory->link()->standard($badge[
"object"][
"title"],
ilLink::_getLink($parent_ref_id));
223 $parent_link = $this->factory->legacy($badge[
"object"][
"title"]);
227 $this->factory->listing()->descriptive([
228 $this->lng->txt(
"object") => $this->factory->legacy(
229 $this->renderer->render($parent_icon) . $this->renderer->render($parent_link)
235 $badge_sections = [$profile_button];
238 $cards[] = $this->factory->card()->standard($badge[
"title"], $image)->withSections($badge_sections)
239 ->withTitleAction($modal->getShowSignal());
241 $badge_components[] = $modal;
244 $deck = $this->factory->deck($cards)->withSmallCardsSize();
245 $badge_components[] = $deck;
247 $tmpl->setVariable(
"DECK", $this->renderer->render($badge_components));
248 $tpl->setContent($tmpl->get());
250 $this->noti_repo->updateLastCheckedTimestamp();
261 $tpl->setContent($tbl->getHTML());
268 $tbl->writeFilterToSession();
286 $ids =
$_POST[
"badge_id"];
287 if (!$ids && is_numeric(
$_GET[
"badge_id"])) {
288 $ids = array(
$_GET[
"badge_id"]);
290 if (is_array($ids)) {
292 foreach ($ids as $id) {
294 if ($ass->getTimestamp()) {
302 $ilCtrl->redirect($this,
"manageBadges");
313 if (!$ass->getPosition()) {
314 $ass->setPosition(999);
319 ilUtil::sendSuccess(
$lng->txt(
"settings_saved"),
true);
320 $ilCtrl->redirect($this,
"manageBadges");
330 if ($ass->getPosition()) {
331 $ass->setPosition(null);
336 ilUtil::sendSuccess(
$lng->txt(
"settings_saved"),
true);
337 $ilCtrl->redirect($this,
"manageBadges");
347 if (!$ass->getPosition()) {
348 $ass->setPosition(999);
353 ilUtil::sendSuccess(
$lng->txt(
"settings_saved"),
true);
354 $ilCtrl->redirect($this,
"listBadges");
364 if ($ass->getPosition()) {
365 $ass->setPosition(null);
370 ilUtil::sendSuccess(
$lng->txt(
"settings_saved"),
true);
371 $ilCtrl->redirect($this,
"listBadges");
389 if (
$url !==
false) {
390 $badge =
new ilBadge($ass->getBadgeId());
397 $tpl->addJavascript(
"https://backpack.openbadges.org/issuer.js",
false);
399 $tpl->addJavascript(
"Services/Badge/js/ilBadge.js");
400 $tpl->addOnloadCode(
"il.Badge.publishMulti(['" . implode(
"','",
$res) .
"']);");
402 $ilTabs->clearTargets();
403 $ilTabs->setBackTarget(
405 $ilCtrl->getLinkTarget($this,
"manageBadges")
419 $lng->txt(
"obj_bdga"),
420 $ilCtrl->getLinkTarget($this,
"listBackpackGroups")
425 $lng->txt(
"settings"),
426 $ilCtrl->getLinkTarget($this,
"editSettings")
429 $ilTabs->activateTab(
"backpack_badges");
440 $ilCtrl->redirect($this,
"listBadges");
444 $ilTabs->activateSubTab(
"backpack_badges");
449 $bp_groups = $bp->getGroups();
451 if (!is_array($bp_groups)) {
454 } elseif (!
sizeof($bp_groups)) {
459 $tmpl =
new ilTemplate(
"tpl.badge_backpack.html",
true,
true,
"Services/Badge");
461 $tmpl->setVariable(
"BACKPACK_TITLE",
$lng->txt(
"badge_backpack_list"));
465 foreach ($bp_groups as $group_id => $group) {
466 $bp_badges = $bp->getBadges($group_id);
467 if (
sizeof($bp_badges)) {
468 foreach ($bp_badges as $idx => $badge) {
469 $tmpl->setCurrentBlock(
"badge_bl");
470 $tmpl->setVariable(
"BADGE_TITLE", $badge[
"title"]);
471 $tmpl->setVariable(
"BADGE_DESC", $badge[
"description"]);
472 $tmpl->setVariable(
"BADGE_IMAGE", $badge[
"image_url"]);
473 $tmpl->setVariable(
"BADGE_CRITERIA", $badge[
"criteria_url"]);
474 $tmpl->setVariable(
"BADGE_ISSUER", $badge[
"issuer_name"]);
475 $tmpl->setVariable(
"BADGE_ISSUER_URL", $badge[
"issuer_url"]);
477 $tmpl->parseCurrentBlock();
481 $tmpl->setCurrentBlock(
"group_bl");
482 $tmpl->setVariable(
"GROUP_TITLE", $group[
"title"]);
483 $tmpl->parseCurrentBlock();
486 $tpl->setContent($tmpl->get());
495 if ($ass->getTimestamp()) {
498 $url = $ass->getStaticUrl();
513 if (!$ilCtrl->isAsynch() ||
521 $badge_id = (int)
$_GET[
"id"];
526 if (
$url !==
false) {
531 $res->message =
"missing badge id";
534 echo json_encode(
$res);
547 $mail =
$ilUser->getPref(self::BACKPACK_EMAIL);
560 $form->setFormAction($ilCtrl->getFormAction($this,
"saveSettings"));
561 $form->setTitle(
$lng->txt(
"settings"));
565 $email->setInfo(
$lng->txt(
"badge_backpack_email_info"));
569 $form->addCommandButton(
"saveSettings",
$lng->txt(
"save"));
581 $ilCtrl->redirect($this,
"listBadges");
585 $ilTabs->activateSubTab(
"backpack_settings");
591 $tpl->setContent($a_form->getHTML());
601 if ($form->checkInput()) {
602 $new_email = $form->getInput(
"email");
608 if ($new_email != $old_email) {
612 ilUtil::sendSuccess(
$lng->txt(
"settings_saved"),
true);
613 $ilCtrl->redirect($this,
"editSettings");
616 $form->setValuesByPost();
static _getIcon( $a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
static sortArray( $array, $a_array_sortby, $a_array_sortorder=0, $a_numeric=false, $a_keep_keys=false)
sortArray
prepareBadge($a_badge_id)
static _writePref($a_usr_id, $a_keyword, $a_value)
static setUseRelativeDates($a_status)
set use relative dates
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
static _getAllReferences($a_id)
get all reference ids of object
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
editSettings(ilPropertyFormGUI $a_form=null)
foreach($_POST as $key=> $value) $res
__construct()
Constructor.
TableGUI class for user badge listing.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
static clearBadgeCache($a_user_id)
static getInstancesByUserId($a_user_id)
static _getLink($a_ref_id, $a_type='', $a_params=array(), $append="")
static getInstance()
Constructor.