silverstripe-framework/src/Forms/FileHandleField.php
Christopher Joe 98ecaf9bd0 Change UploadField to TreeDropdownField for modal fields
Change UploadField to abstract placeholder FileHandleField for non-modal fields
2017-02-27 10:38:23 +13:00

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