• Модуль: ui
  • Путь к файлу: ~/bitrix/modules/ui/lib/NotificationManager/Notification.php
  • Класс: BitrixUINotificationManagerNotification
  • Вызов: Notification::setUid
private function setUid($id): void
{
	$id = (string)$id;
	if ($id === '')
	{
		throw new ArgumentException('NotificationManager: Cannot create a notification without an ID');
	}

	$this->uid = $id . self::SEPARATOR . self::getUuidV4();
}