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

	$this->removeFromInternalStorage($section);

	return $this;
}