• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/sharing.php
  • Класс: BitrixDiskSharing
  • Вызов: Sharing::getRealStorage
public function getRealStorage()
{
	if(!$this->realStorageId)
	{
		return null;
	}

	if(isset($this->realStorage) && $this->realStorageId === $this->realStorage->getId())
	{
		return $this->realStorage;
	}
	$this->realStorage = Storage::loadById($this->realStorageId);

	return $this->realStorage;
}