Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
Notifier.php
1<?php
2
4
7
9{
19 public static function notify(int $userId, Notification $notification): bool
20 {
21 if (!Loader::includeModule('pull'))
22 {
23 return false;
24 }
25
26 return Event::add($userId, [
27 'module_id' => 'ui',
28 'command' => 'notify',
29 'params' => [
30 'notification' => $notification,
31 ],
32 ]);
33 }
34}
static notify(int $userId, Notification $notification)
Definition Notifier.php:19