3 declare(strict_types=1);
36 $this->
lng = $DIC->language();
41 return "mem_min_members";
46 return $this->
lng->txt(
"mem_cron_min_members");
51 return $this->
lng->txt(
"mem_cron_min_members_info");
56 return self::SCHEDULE_TYPE_DAILY;
79 $recipients_map = array();
84 if (count($recipients_map)) {
85 foreach ($recipients_map as $reci_id => $items) {
89 $message = count($recipients_map) .
" notifications sent";
93 $result->setStatus($status);
99 protected function getCourses(array &$a_recipients_map): void
102 $too_few = (bool) $item[0];
107 foreach ($item[1] as $reci_id) {
108 $a_recipients_map[$reci_id][] = array(
"crs", $obj_id, $item[0]);
114 protected function getGroups(array &$a_recipients_map): void
117 $too_few = (bool) $item[0];
122 foreach ($item[1] as $reci_id) {
123 $a_recipients_map[$reci_id][] = array(
"grp", $obj_id, $item[0]);
129 protected function sendMessage(
int $a_reci_id, array $a_items): void
132 $ntf->setLangModules(array(
"crs"));
135 $ntf->setReasonLangId(
"mem_cron_min_members_reason");
141 foreach ($a_items as $item) {
142 $obj_type = (string) $item[0];
143 $obj_id = (
int) $item[1];
149 $list[] = $title .
"\n" .
$url .
"\n";
151 $list = implode($ntf->getBlockBorder(), $list);
153 $ntf->addAdditionalInfo(
"mem_cron_min_members_intro", $list,
true);
154 $ntf->addAdditionalInfo(
"mem_cron_min_members_task",
"");
161 $lng->
txt(
"mem_cron_min_members_subject"),
162 $ntf->composeAndGetMessage($a_reci_id, null,
"read",
true),
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.
static _getAllReferences(int $id)
get all reference ids for object ID
sendMessage(int $a_reci_id, array $a_items)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static findGroupsWithNotEnoughMembers()
static _lookupTitle(int $obj_id)
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
getDefaultScheduleValue()
static findCoursesWithNotEnoughMembers()
getGroups(array &$a_recipients_map)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupLogin(int $a_user_id)
getCourses(array &$a_recipients_map)