mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
23 lines
579 B
PHP
23 lines
579 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Assets\Storage;
|
|
|
|
use SilverStripe\Control\HTTPResponse;
|
|
use SilverStripe\Control\HTTPResponse_Exception;
|
|
|
|
/**
|
|
* Represents a store usable with ProtectedFileController to serve up non-direct file requests
|
|
*/
|
|
interface AssetStoreRouter {
|
|
|
|
/**
|
|
* Generate a custom HTTP response for a request to a given asset, identified by a path.
|
|
*
|
|
*
|
|
* @param string $asset Asset path name, omitting any leading 'assets'
|
|
* @return HTTPResponse
|
|
* @throws HTTPResponse_Exception
|
|
*/
|
|
public function getResponseFor($asset);
|
|
}
|