• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/Configuration/General.php
  • Класс: BitrixImConfigurationGeneral
  • Вызов: General::getNotifySettingByType
static function getNotifySettingByType(string $notifyType): string
{
	switch ($notifyType)
	{
		case Notification::SITE:
			return 'notifySchemeSendSite';
		case Notification::MAIL:
			return 'notifySchemeSendEmail';
		case Notification::XMPP:
			return 'notifySchemeSendXmpp';
		case Notification::PUSH:
			return 'notifySchemeSendPush';
		default:
			return '';
	}
}