3 declare(strict_types=1);
40 $this->
lng = $DIC->language();
45 return "mem_min_members";
50 return $this->
lng->txt(
"mem_cron_min_members");
55 return $this->
lng->txt(
"mem_cron_min_members_info");
60 return JobScheduleType::DAILY;
80 $status = JobResult::STATUS_NO_ACTION;
83 $recipients_map = array();
88 if (count($recipients_map)) {
89 foreach ($recipients_map as $reci_id => $items) {
92 $status = JobResult::STATUS_OK;
93 $message = count($recipients_map) .
" notifications sent";
97 $result->setStatus($status);
103 protected function getCourses(array &$a_recipients_map): void
106 $too_few = (bool) $item[0];
111 foreach ($item[1] as $reci_id) {
112 $a_recipients_map[$reci_id][] = array(
"crs", $obj_id, $item[0]);
118 protected function getGroups(array &$a_recipients_map): void
121 $too_few = (bool) $item[0];
126 foreach ($item[1] as $reci_id) {
127 $a_recipients_map[$reci_id][] = array(
"grp", $obj_id, $item[0]);
133 protected function sendMessage(
int $a_reci_id, array $a_items): void
136 $ntf->setLangModules(array(
"crs"));
139 $ntf->setReasonLangId(
"mem_cron_min_members_reason");
145 foreach ($a_items as $item) {
146 $obj_type = (string) $item[0];
147 $obj_id = (
int) $item[1];
153 $list[] = $title .
"\n" .
$url .
"\n";
155 $list = implode($ntf->getBlockBorder(), $list);
157 $ntf->addAdditionalInfo(
"mem_cron_min_members_intro", $list,
true);
158 $ntf->addAdditionalInfo(
"mem_cron_min_members_task",
"");
165 $lng->
txt(
"mem_cron_min_members_subject"),
166 $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)
Cron for course/group minimum members.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static findGroupsWithNotEnoughMembers()
static _lookupTitle(int $obj_id)
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)