1 <?php declare(strict_types=1);
24 return $this->
if->identifier($id);
27 if (0 === (
int) $this->dic->user()->getId() || $this->dic->user()->isAnonymous()) {
31 $hasInternalMailAccess = $this->dic->rbac()->system()->checkAccess(
35 if (!$hasInternalMailAccess) {
39 $leftIntervalTimestamp = $this->dic->user()->getPref(self::MUTED_UNTIL_PREFERENCE_KEY);
41 (
int) $this->dic->user()->getId(),
42 is_numeric($leftIntervalTimestamp) ? (int) $leftIntervalTimestamp : 0
45 $numberOfNewMessages = (int) $newMailData[
'count'];
46 if (0 === $numberOfNewMessages) {
50 $this->dic->language()->loadLanguageModule(
'mail');
54 $mailUrl =
'ilias.php?baseClass=ilMailGUI';
56 if (1 === $numberOfNewMessages) {
57 $linkText = $this->dic->language()->txt(
'nc_mail_unread_messages_number_s');
60 $this->dic->language()->txt(
'nc_mail_unread_messages_number_p'),
66 $this->dic->language()->txt(
'nc_mail_unread_messages'),
67 $this->dic->ui()->renderer()->render(
68 $this->dic->ui()->factory()
70 ->standard($linkText, $mailUrl)
74 $icon = $this->dic->ui()->factory()->symbol()->icon()->standard(
Standard::MAIL,
'mail')
75 ->withIsOutlined(
true);
76 $title = $this->dic->ui()->factory()->link()->standard(
77 $this->dic->language()->txt(
'nc_mail_noti_item_title'),
81 $notificationItem = $this->dic->ui()->factory()
83 ->notification($title, $icon)
84 ->withDescription($body);
87 $dateTime = \DateTimeImmutable::createFromFormat(
'Y-m-d H:i:s', $newMailData[
'max_time']);
88 $notificationItem = $notificationItem->withProperties([
93 }
catch (\Throwable
$e) {
96 $group =
$factory->standardGroup($id(
'mail_bucket_group'))
97 ->withTitle($this->dic->language()->txt(
'mail'))
99 $factory->standard($id(
'mail_bucket'))
100 ->withNotificationItem($notificationItem)
101 ->withClosedCallable(
103 $this->dic->user()->writePref(self::MUTED_UNTIL_PREFERENCE_KEY, time());
Interface AbstractNotificationProvider.
Interface IdentificationInterface.
static getNewMailsData(int $usr_id, int $leftInterval=0)
Determines the number of new mails for the passed user id and stores this information in a local cach...
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
const MUTED_UNTIL_PREFERENCE_KEY
Class MailNotificationProvider.
Interface NotificationProvider.
static getMailObjectRefId()
Determines the reference id of the mail object and stores this information in a local cache variable...