BaseObject::getFolderById

  1. Bitrix24 API (v. 23.675.0)
  2. disk
  3. BaseObject
  4. getFolderById
  • Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/rest/service/baseobject.php
  • Класс: BitrixDiskRestServiceBaseObject
  • Вызов: BaseObject::getFolderById
protected function getFolderById($id)
{
	$folder = DiskFolder::getById($id, array('STORAGE'));
	if(!$folder)
	{
		throw new RestException("Could not find entity with id '{$id}'.", RestException::ERROR_NOT_FOUND);
	}

	return $folder;
}

Добавить комментарий