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

	$this->addToInternalStorage($section);

	return $this;
}