mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8dd644d25d
Namespace all templates Move difflib and BBCodeParser2 to thirdparty Remove deprecated API marked for removal in 4.0
27 lines
558 B
PHP
27 lines
558 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Assets\Storage;
|
|
|
|
/**
|
|
* Provides a mechanism for suggesting filename alterations to a file
|
|
*
|
|
* Does not actually check for existence of the file, but rather comes up with as many suggestions for
|
|
* the given file as possible to a finite limit.
|
|
*/
|
|
interface AssetNameGenerator extends \Iterator {
|
|
|
|
/**
|
|
* Construct a generator for the given filename
|
|
*
|
|
* @param string $filename
|
|
*/
|
|
public function __construct($filename);
|
|
|
|
/**
|
|
* Number of attempts allowed
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getMaxTries();
|
|
}
|