These go way back to php 4 and don't need to be like this for any reason. Currently error handling is acting up when these throw an error.
30 lines
505 B
PHP
30 lines
505 B
PHP
<?php
|
|
|
|
class FileStorageBackend extends StorageBackend
|
|
{
|
|
public function getAbsoluteFilePath($resourceId)
|
|
{
|
|
//TODO
|
|
return $resourceId;
|
|
}
|
|
|
|
public function getDownloadURLs($resourceId, $contentDispositionFilename)
|
|
{
|
|
return "";
|
|
}
|
|
|
|
public function deletePhysicalFile($resourceId)
|
|
{
|
|
//TODO
|
|
}
|
|
|
|
public function deleteAllCloudFileObjects()
|
|
{
|
|
return "";
|
|
}
|
|
|
|
public function getFilePrefix()
|
|
{
|
|
return "";
|
|
}
|
|
}
|