mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
20 lines
297 B
PHP
Executable File
20 lines
297 B
PHP
Executable File
<?php
|
|
/**
|
|
* Data received from a UserDefinedForm submission
|
|
*
|
|
* @package userforms
|
|
*/
|
|
class SubmittedFormField extends DataObject {
|
|
|
|
static $db = array(
|
|
"Name" => "Varchar",
|
|
"Value" => "Text",
|
|
"Title" => "Varchar"
|
|
);
|
|
|
|
static $has_one = array(
|
|
"Parent" => "SubmittedForm"
|
|
);
|
|
|
|
}
|
|
?>
|