mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
19 lines
366 B
PHP
19 lines
366 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\Forms;
|
||
|
|
||
|
interface FileHandleField
|
||
|
{
|
||
|
public function getAttributes();
|
||
|
|
||
|
public function getFolderName();
|
||
|
|
||
|
public function setAllowedExtensions($rules);
|
||
|
|
||
|
public function getAllowedExtensions();
|
||
|
|
||
|
public function setAllowedFileCategories($category);
|
||
|
|
||
|
public function setFolderName($folderName);
|
||
|
}
|