• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/entity/format/templatecollection.php
  • Класс: BitrixLocationEntityFormatTemplateCollection
  • Вызов: TemplateCollection::addItem
public function addItem($template): int
{
	if(!($template instanceof Template))
	{
		throw new ArgumentTypeException('field must be the instance of Template');
	}

	$this->removeTemplateByType($template->getType());
	return parent::addItem($template);
}