mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
19 lines
312 B
PHP
19 lines
312 B
PHP
|
<?php
|
||
|
/**
|
||
|
* SubmittedFormField
|
||
|
* Data received from a UserDefinedForm submission
|
||
|
*/
|
||
|
|
||
|
class SubmittedFormField extends DataObject {
|
||
|
|
||
|
static $db = array(
|
||
|
"Name" => "Varchar",
|
||
|
"Value" => "Text",
|
||
|
"Title" => "Varchar"
|
||
|
);
|
||
|
|
||
|
static $has_one = array(
|
||
|
"Parent" => "SubmittedForm"
|
||
|
);
|
||
|
}
|
||
|
?>
|