sintonia/airtime_mvc/application/cloud_storage/FileStorageBackend.php
Lucas Bickel 440e8ce8c9 Fix legacy constructors
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.
2017-09-08 19:53:29 +02:00

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 "";
}
}