• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/rest/service/attachedobject.php
  • Класс: BitrixDiskRestServiceAttachedObject
  • Вызов: AttachedObject::get
protected function get($id)
{
	$attachedObject = $this->getAttachedObjectById($id);
	if(!$attachedObject->canRead($this->userId))
	{
		throw new AccessException;
	}

	return $attachedObject;
}