• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/entity/generic/fieldcollection.php
  • Класс: BitrixLocationEntityGenericFieldCollection
  • Вызов: FieldCollection::isItemExist
public function isItemExist(int $type): bool
{
	foreach($this->items as $item)
	{
		if($item->getType() === $type)
		{
			return true;
		}
	}

	return false;
}