39 $this->
lng = $DIC->language();
40 if (isset($DIC[
"ilUser"])) {
41 $this->
user = $DIC->user();
43 if (isset($DIC[
"ilClientIniFile"])) {
44 $this->client_ini = $DIC[
"ilClientIniFile"];
46 if (isset($DIC[
"tree"])) {
47 $this->tree = $DIC->repositoryTree();
49 $this->tree_service = $DIC->skills()->tree();
54 return "skll_notification";
61 return $lng->
txt(
"skll_skill_notification");
68 return $lng->
txt(
"skll_skill_notification_desc");
73 return self::SCHEDULE_TYPE_DAILY;
95 $lng = $DIC->language();
98 $log->debug(
"===Skill Notifications=== start");
101 $status_details = null;
104 $last_run = $setting->get(get_class($this));
108 $last_run = date(
"Y-m-d H:i:s", strtotime(
"yesterday"));
110 $status_details =
"No previous run found - starting from yesterday.";
112 elseif (strlen($last_run) == 10) {
113 $last_run .=
" 00:00:00";
115 $status_details =
"Switched from daily runs to open schedule.";
127 foreach ($achievements as $user_id =>
$a) {
138 $log->debug(
"save run");
141 $setting->set(get_class($this), date(
"Y-m-d H:i:s"));
144 $result->setStatus($status);
146 if ($status_details) {
147 $result->setMessage($status_details);
150 $log->debug(
"===Skill Notifications=== done");
158 protected function sendMail(
int $a_user_id, array $a_achievements,
string $a_last_run): void
164 $ntf->setLangModules(array(
"skll"));
173 $vtree = $this->tree_service->getGlobalVirtualSkillTree();
174 $a_achievements = $vtree->getOrderedNodeset($a_achievements,
"skill_id",
"tref_id");
176 foreach ($a_achievements as $skill_level) {
180 foreach ($tree->
getPathId($skill_level[
"trigger_ref_id"]) as $node) {
185 $ref_id = $skill_level[
"trigger_ref_id"];
186 $obj_id = $skill_level[
"trigger_obj_id"];
187 $type = $skill_level[
"trigger_obj_type"];
188 $title = $skill_level[
"trigger_title"];
190 if ($skill_level[
"trigger_obj_id"] != $last_obj_id) {
191 $last_obj_id = $skill_level[
"trigger_obj_id"];
192 $txt .=
"\n\n" . $lng->
txt(
"obj_" .
$type) .
": " . $title;
203 $ntf->setIntroductionLangId(
"skll_intro_skill_notification_for");
207 $lng->
txt(
"skll_new_skill_achievements"),
213 $ntf->addAdditionalInfo(
220 $client = $ilClientIniFile->readVariable(
'client',
'name');
221 $subject = sprintf($lng->
txt(
"skll_competence_achievements"),
$client);
232 $ntf->composeAndGetMessage($a_user_id, null,
"read",
true),
sendMail(int $a_user_id, array $a_achievements, string $a_last_run)
Send news mail for 1 user and n objects.
static getLogger(string $a_component_id)
Get component logger.
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.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
isInTree(?int $a_node_id)
get all information of a node.
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
static _lookupTitle(int $a_obj_id, int $a_tref_id=0)
loadLanguageModule(string $a_module)
Load language module.
static lookupLevelTitle(int $a_id)
static useRelativeDates()
getDefaultScheduleValue()
Course/group skill notification.
static getNewAchievementsPerUser(string $a_timestamp, string $a_timestamp_to=null, int $a_user_id=0, int $a_self_eval=0)
static _getStaticLink(?int $a_ref_id, string $a_type='', bool $a_fallback_goto=true, string $append="")
Get static link.
SkillTreeService $tree_service
getPathId(int $a_endnode_id, int $a_startnode_id=0)
get path from a given startnode to a given endnode if startnode is not given the rootnode is startnod...
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
static setUseRelativeDates(bool $a_status)
set use relative dates
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupLogin(int $a_user_id)