ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilTestMailNotification.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
29 {
30  public function __construct()
31  {
33  }
34 
42  public function sendSimpleNotification($owner_id, $title, $usr_data)
43  {
44  $this->initLanguage($owner_id);
45  $this->language->loadLanguageModule('assessment');
46  $this->initMail();
47  $this->setSubject(sprintf($this->language->txt('tst_user_finished_test'), $title));
48  $this->setBody(ilMail::getSalutation($owner_id, $this->getLanguage()));
49  $this->appendBody("\n\n");
50  $this->appendBody($this->language->txt('user_has_finished_a_test'));
51  $this->appendBody("\n\n");
52 
53  $this->appendBody($this->language->txt('title') . ': ' . $title);
54  $this->appendBody("\n");
55  $this->appendBody($this->language->txt('tst_participant') . ': ' . $usr_data);
56  $this->appendBody("\n");
57 
59  $this->appendBody($this->language->txt('tst_finished') . ': ' . ilDatePresentation::formatDate(new ilDateTime(time(), IL_CAL_UNIX)));
60  $this->appendBody("\n\n");
61 
62  $this->appendBody($this->language->txt('tst_notification_explanation_admin'));
63  $this->appendBody("\n");
64  $this->getMail()->appendInstallationSignature(true);
65 
66  $this->sendMail([$owner_id]);
67  }
68 
76  public function sendAdvancedNotification($owner_id, $title, $usr_data, $file_names)
77  {
78  $this->initLanguage($owner_id);
79  $this->language->loadLanguageModule('assessment');
80 
81  $this->initMail();
82  $this->setSubject(sprintf($this->language->txt('tst_user_finished_test'), $title));
83  $this->setBody(ilMail::getSalutation($owner_id, $this->getLanguage()));
84  $this->appendBody("\n\n");
85  $this->appendBody($this->language->txt('user_has_finished_a_test'));
86  $this->appendBody("\n\n");
87 
88  $this->appendBody($this->language->txt('title') . ': ' . $title);
89  $this->appendBody("\n");
90  $this->appendBody($this->language->txt('tst_participant') . ': ' . $usr_data);
91  $this->appendBody("\n");
92 
94  $this->appendBody($this->language->txt('tst_finished') . ': ' . ilDatePresentation::formatDate(new ilDateTime(time(), IL_CAL_UNIX)));
95  $this->appendBody("\n\n");
96 
97  $this->appendBody($this->language->txt('tst_attached_xls_file'));
98  $this->appendBody("\n\n");
99 
100  $this->appendBody($this->language->txt('tst_notification_explanation_admin'));
101  $this->appendBody("\n");
102 
103  $this->setAttachments($file_names);
104  $this->getMail()->appendInstallationSignature(true);
105 
106  $this->sendMail([$owner_id]);
107  }
108 }
static array static setUseRelativeDates(bool $a_status)
set use relative dates
sendMail(array $a_rcp, bool $a_parse_recipients=true)
Class ilTestMailNotification.
const IL_CAL_UNIX
sendAdvancedNotification($owner_id, $title, $usr_data, $file_names)
send an advanced notification to the owner of the test
static getSalutation(int $a_usr_id, ?ilLanguage $a_language=null)
sendSimpleNotification($owner_id, $title, $usr_data)
Send a simple notification to the owner of the test.
__construct(Container $dic, ilPlugin $plugin)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
setSubject(string $a_subject)
language()
description: > Example for rendring a language glyph.
Definition: language.php:41