2008-09-29 05:18:23 +02:00
|
|
|
<?php
|
2012-04-14 08:36:50 +02:00
|
|
|
|
2008-09-29 05:18:23 +02:00
|
|
|
/**
|
2012-04-14 08:36:50 +02:00
|
|
|
* Allows a user to add a field that can be used to upload a file.
|
2009-04-17 04:26:40 +02:00
|
|
|
*
|
|
|
|
* @package userforms
|
2008-09-29 05:18:23 +02:00
|
|
|
*/
|
2009-12-07 03:04:20 +01:00
|
|
|
|
2008-09-29 05:18:23 +02:00
|
|
|
class EditableFileField extends EditableFormField {
|
|
|
|
|
2009-05-06 05:34:40 +02:00
|
|
|
static $singular_name = 'File Upload Field';
|
|
|
|
static $plural_names = 'File Fields';
|
2008-09-29 05:18:23 +02:00
|
|
|
|
2009-04-27 06:32:47 +02:00
|
|
|
public function getFormField() {
|
2012-04-14 08:36:50 +02:00
|
|
|
$field = new FileField($this->Name, $this->Title);
|
|
|
|
|
|
|
|
return $field;
|
2008-09-29 05:18:23 +02:00
|
|
|
}
|
2009-04-28 04:03:13 +02:00
|
|
|
|
2012-04-14 08:36:50 +02:00
|
|
|
|
2010-02-14 08:53:16 +01:00
|
|
|
public function getSubmittedFormField() {
|
|
|
|
return new SubmittedFileField();
|
2012-04-14 08:36:50 +02:00
|
|
|
}
|
2009-12-07 03:04:20 +01:00
|
|
|
}
|