• Модуль: imbot
  • Путь к файлу: ~/bitrix/modules/imbot/lib/bot/support24.php
  • Класс: BitrixImBotBotSupport24
  • Вызов: Support24::getSupportLevel
static function getSupportLevel(): string
{
	if (MainLoader::includeModule('bitrix24'))
	{
		if (self::isActivePaidSupport())
		{
			$supportLevel = self::SUPPORT_LEVEL_PAID;
		}
		else
		{
			$supportLevel = self::SUPPORT_LEVEL_FREE;
		}
	}
	else
	{
		$supportLevel = self::SUPPORT_LEVEL_PAID;
	}

	return $supportLevel;
}