mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
24 lines
396 B
PHP
24 lines
396 B
PHP
|
<?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"
|
||
|
);
|
||
|
|
||
|
static $has_many = array(
|
||
|
"FieldValues" => "SubmittedFormField"
|
||
|
);
|
||
|
|
||
|
function SubmitTime() {
|
||
|
return $this->Created;
|
||
|
}
|
||
|
}
|
||
|
?>
|