• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/binding/map/mapsection.php
  • Класс: BitrixIntranetBindingMapMapSection
  • Вызов: MapSection::remove
public function remove(MapItem $item): self
{
	if (!$this->has($item))
	{
		throw new ArgumentException('The item that is being removed does not exist in this section');
	}

	unset($this->items[$item->getCode()]);

	return $this;
}