silverstripe-framework/src/Assets/Storage/AssetStoreRouter.php

24 lines
579 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\Assets\Storage;
2016-09-09 08:43:05 +02:00
use SilverStripe\Control\HTTPResponse;
use SilverStripe\Control\HTTPResponse_Exception;
/**
* Represents a store usable with ProtectedFileController to serve up non-direct file requests
*/
2016-11-29 00:31:16 +01:00
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'
2016-09-09 08:43:05 +02:00
* @return HTTPResponse
* @throws HTTPResponse_Exception
*/
public function getResponseFor($asset);
}