• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/rooms/manager.php
  • Класс: BitrixCalendarRoomsManager
  • Вызов: Manager::createRoom
public function createRoom(): Manager
{
	if ($this->error)
	{
		return $this;
	}

	$this->room->create();

	if ($this->room->getError())
	{
		$this->addError($this->room->getError());
	}

	return $this;
}