• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/core/base/indexcollection.php
  • Класс: BitrixCalendarCoreBaseIndexCollection
  • Вызов: IndexCollection::add
public function add($item, $index = null): IndexCollection
{
	if (!$index)
	{
		throw new BaseException('you should pass index');
	}

	$this->collection[$index] = $item;

	return $this;
}