• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/rooms/categories/category.php
  • Класс: BitrixCalendarRoomsCategoriesCategory
  • Вызов: Category::create
public function create(): Category
{
	$section = RoomCategoryTable::add([
		'NAME' => Emoji::encode($this->name),
	]);
	if (!$section->isSuccess())
	{
		$this->addError(new Error('An error occurred while saving the category'));
	}

	$this->setId($section->getId());

	return $this;
}