• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/product/catalog.php
  • Класс: Bitrix\Crm\Product\Catalog
  • Вызов: Catalog::isTypeExists
static function isTypeExists(): bool
	{
		$iterator = Iblock\TypeTable::getList([
			'select' => ['ID'],
			'filter' => ['=ID' => static::getTypeId()]
		]);
		$row = $iterator->fetch();
		unset($iterator);
		return (!empty($row));
	}