• Модуль: imbot
  • Путь к файлу: ~/bitrix/modules/imbot/lib/bot/supportbox.php
  • Класс: BitrixImBotBotSupportBox
  • Вызов: SupportBox::isInstalled
static function isInstalled(): bool
{
	$res = ImModelBotTable::getList([
		'select' => ['BOT_ID'],
		'filter' => [
			'=CLASS' => __CLASS__,
		]
	]);
	if ($botData = $res->fetch())
	{
		return true;
	}

	return false;
}