• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/entity/format/templatecollection.php
  • Класс: BitrixLocationEntityFormatTemplateCollection
  • Вызов: TemplateCollection::removeTemplateByType
private function removeTemplateByType(string $type): void
{
	foreach ($this->items as $idx => $template)
	{
		if($template->getType() === $type)
		{
			unset($this->items[$idx]);
			break;
		}
	}
}