mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
24 lines
401 B
PHP
Executable File
24 lines
401 B
PHP
Executable File
<?php
|
|
/**
|
|
* Contents of an UserDefinedForm submission
|
|
* @package cms
|
|
*/
|
|
class SubmittedForm extends DataObject {
|
|
static $has_one = array(
|
|
"SubmittedBy" => "Member",
|
|
"Parent" => "UserDefinedForm",
|
|
);
|
|
|
|
static $db = array(
|
|
"Recipient" => "Varchar(255)"
|
|
);
|
|
|
|
static $has_many = array(
|
|
"FieldValues" => "SubmittedFormField"
|
|
);
|
|
|
|
function SubmitTime() {
|
|
return $this->Created;
|
|
}
|
|
}
|
|
?>
|