• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/rooms/categories/category.php
  • Класс: BitrixCalendarRoomsCategoriesCategory
  • Вызов: Category::delete
public function delete(): Category
{
	$category = RoomCategoryTable::delete($this->id);
	if (!$category->isSuccess())
	{
		$this->addError(new Error('An error occurred while deleting the category'));
	}
	return $this;
}