"Varchar", "Value" => "Text", "Title" => "Varchar(255)" ); static $has_one = array( "Parent" => "SubmittedForm" ); /** * Generate a formatted value for the reports and email notifications. * Converts new lines (which are stored in the database text field) as * so they will output as newlines in the reports * * @return string */ public function getFormattedValue() { return nl2br($this->dbObject('Value')->ATT()); } /** * Return the value of this submitted form field suitable for inclusion * into the CSV * * @return Text */ public function getExportValue() { return $this->Value; } }