silverstripe-framework/forms/SubmittedFormField.php
Sam Minnee d27937f448 Updated API documentation package tags
Fixed some whitespace

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@47725 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-01-08 06:37:50 +00:00

24 lines
321 B
PHP
Executable File

<?php
/**
* @package cms
*/
/**
* 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"
);
}
?>