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

	return null;
}