44 if (isset($DIC[
"component.repository"])) {
45 $this->component_repository = $DIC[
"component.repository"];
47 $this->db = $DIC->database();
48 if (isset($DIC[
"tree"])) {
49 $this->tree = $DIC->repositoryTree();
56 if (!self::$instance) {
57 self::$instance =
new self();
59 return self::$instance;
69 return (
bool) $this->
settings->get(
"active",
"");
74 $this->
settings->set(
"active", (
string) $a_value);
82 $components = $this->
settings->get(
"components", null);
84 return unserialize($components, [
"allowed_classes" =>
false]);
97 if (isset($a_components) && count($a_components) === 0) {
100 $this->
settings->set(
"components", $a_components !== null
101 ? serialize(array_unique($a_components))
112 if (!$this->component_repository->hasComponentId($a_id)) {
115 $component = $this->component_repository->getComponentById($a_id);
117 "type" => $component->getType(),
118 "name" => $component->getName()
126 $class =
"il" . $comp[
"name"] .
"BadgeProvider";
127 $file = $comp[
"type"] .
"/" . $comp[
"name"] .
"/classes/class." . $class .
".php";
128 if (file_exists($file)) {
142 return $comp[
"type"] .
"/" . $comp[
"name"];
152 string $a_component_id,
155 return $a_component_id .
"/" . $a_badge->
getId();
164 $parts = explode(
"/", $a_id);
171 if (
$type->getId() === $type_id) {
184 $types = $this->
settings->get(
"inactive_types", null);
186 return unserialize($types, [
"allowed_classes" =>
false]);
198 if (is_array($a_types) &&
202 $this->
settings->set(
"inactive_types", $a_types !== null
203 ? serialize(array_unique($a_types))
221 if (!$exclude_inactive || !in_array(
$id, $inactive,
true)) {
240 if (in_array($a_object_type,
$type->getValidObjectTypes(),
true)) {
253 int $a_parent_obj_id,
254 string $a_parent_obj_type = null
258 if (!$a_parent_obj_type) {
265 foreach ($badges as $badge) {
266 if ($badge->getTypeId() === $type_id &&
267 $badge->isActive()) {
268 $res[$badge->getId()] = $badge->getTitle();
289 $handler = self::getInstance();
290 $components = $handler->getComponents();
291 $components[] = $a_component_id;
292 $handler->setComponents($components);
300 $handler = self::getInstance();
301 $components = $handler->getComponents();
302 foreach ($components as $idx => $component) {
303 if ($component === $a_component_id) {
304 unset($components[$idx]);
307 $handler->setComponents($components);
317 ?
string $a_obj_type = null
341 array $a_params = null
354 if ($badge->isActive()) {
357 if (
$type->evaluate($a_user_id, (array) $a_params, $badge->getConfiguration())) {
361 $new_badges[$a_user_id][] = $badge->getId();
377 int $a_parent_ref_id,
378 int $a_parent_obj_id = null,
379 string $a_parent_type = null
383 if (!$a_parent_obj_id) {
386 if (!$a_parent_type) {
391 switch ($a_parent_type) {
394 return $member_obj->getMembers();
398 return $member_obj->getMembers();
436 $path .= $hash .
".json";
455 foreach (glob($a_path .
"/*") as $item) {
458 } elseif (substr($item, -5) ===
".json") {
466 $hash = md5($a_badge->
getId());
469 floor($a_badge->
getId() / 100) .
"/" .
484 int $a_parent_ref_id = null
488 foreach ($a_user_map as $user_id => $badge_ids) {
491 foreach ($badge_ids as $badge_id) {
497 if (!array_key_exists($badge_id, $badges)) {
498 $badges[$badge_id] =
new ilBadge($badge_id);
501 $badge = $badges[$badge_id];
503 $user_badges[] = $badge->getTitle();
506 if (count($user_badges)) {
510 $ntf->setLangModules([
"badge"]);
512 if (isset($a_parent_ref_id)) {
513 $ntf->setRefId($a_parent_ref_id);
515 $ntf->setGotoLangId(
"badge_notification_parent_goto");
520 $ntf->setIntroductionLangId(
"badge_notification_body");
522 $ntf->addAdditionalInfo(
"badge_notification_badges", implode(
"\n", $user_badges),
true);
525 $ntf->addAdditionalInfo(
"badge_notification_badges_goto",
$url);
527 $ntf->setReasonLangId(
"badge_notification_reason");
535 $lng->
txt(
"badge_notification_subject"),
536 $ntf->composeAndGetMessage($user_id, null,
"read",
true),
545 $osd_params = [
"badge_list" => implode(
", ", $user_badges)];
548 $notification->setTitleVar(
"badge_notification_subject", [],
"badge");
549 $notification->setShortDescriptionVar(
"badge_notification_osd", $osd_params,
"badge");
550 $notification->setLongDescriptionVar(
"");
551 $notification->setLinks([
$url]);
553 $notification->setValidForSeconds(ilNotificationConfig::TTL_SHORT);
554 $notification->setVisibleForSeconds(ilNotificationConfig::DEFAULT_TTS);
556 BadgeNotificationProvider::NOTIFICATION_TYPE,
559 $notification->notifyByUsers([$user_id]);
static getWebspaceDir(string $mode="filesystem")
get webspace directory
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Readable part of repository interface to ilComponentDataDB.
static getInstancesByType(string $a_type_id)
getTypeInstanceByUniqueId(string $a_id)
Get type instance by unique id (component, type)
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...
getUserLanguage()
Return language of user.
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
description of a localized parameter this information is used locate translations while processing no...
isObjectActive(int $a_obj_id, ?string $a_obj_type=null)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static updateFromXML(string $a_component_id)
Import component definition.
sendNotification(array $a_user_map, int $a_parent_ref_id=null)
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
getInstancePath(ilBadgeAssignment $a_ass)
getUniqueTypeId(string $a_component_id, ilBadgeType $a_badge)
getComponent(string $a_id)
static _lookupContainerSetting(int $a_id, string $a_keyword, string $a_default_value=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getAvailableTypesForObjType(string $a_object_type)
Get valid badges types for object type.
static _getInstanceByObjId(int $a_obj_id)
getId()
Get typ id (unique for component)
setComponents(array $a_components=null)
static hasHTML()
Has HTML output.
countStaticBadgeInstancesHelper(int &$a_cnt, string $a_path)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstancesByParentId(int $a_parent_id, array $a_filter=null)
ilComponentRepository $component_repository
getProviderInstance(string $a_component_id)
static _lookupObjectId(int $ref_id)
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
getComponentCaption(string $a_component_id)
setInactiveTypes(array $a_types=null)
static clearFromXML(string $a_component_id)
Remove component definition.
static exists(int $a_badge_id, int $a_user_id)
static ilBadgeHandler $instance
static _getInstanceByObjId(int $a_obj_id)
Get singleton instance.
getBadgePath(ilBadge $a_badge)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
getUserIds(int $a_parent_ref_id, int $a_parent_obj_id=null, string $a_parent_type=null)
triggerEvaluation(string $a_type_id, int $a_user_id, array $a_params=null)
getAvailableTypes(bool $exclude_inactive=true)
Get badges types.
countStaticBadgeInstances(ilBadge $a_badge)
static _lookupType(int $id, bool $reference=false)
getAvailableManualBadges(int $a_parent_obj_id, string $a_parent_obj_type=null)
Get available manual badges for object id.
static _lookupEmail(int $a_user_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...