• Модуль: ui
  • Путь к файлу: ~/bitrix/modules/ui/lib/NotificationManager/Notifier.php
  • Класс: BitrixUINotificationManagerNotifier
  • Вызов: Notifier::notify
static function notify(int $userId, Notification $notification): bool
{
	if (!Loader::includeModule('pull'))
	{
		return false;
	}

	return Event::add($userId, [
		'module_id' => 'ui',
		'command' => 'notify',
		'params' => [
			'notification' => $notification,
		],
	]);
}