mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
13 lines
195 B
PHP
Executable File
13 lines
195 B
PHP
Executable File
<?php
|
|
/**
|
|
* A file uploaded on a UserDefinedForm field
|
|
* @package cms
|
|
*/
|
|
class SubmittedFileField extends SubmittedFormField {
|
|
|
|
static $has_one = array(
|
|
"UploadedFile" => "File"
|
|
);
|
|
|
|
}
|
|
?>
|