Merge pull request #7 from marcokernler/url-params

FEATURE: Allow pre filled form fields via url params
This commit is contained in:
Will Rossiter 2012-04-13 18:01:01 -07:00
commit 7cd37cf0a3
2 changed files with 6 additions and 0 deletions

View File

@ -22,6 +22,7 @@ and without getting involved in any PHP code.
* View submitted submissions and export them to CSV
* Define custom error messages and validation settings
* Optionally display and hide fields using javascript based on users input
* Pre fill your form fields, by passing your values by url (http://yoursite.com/formpage?EditableField1=MyValue)
## Installation

View File

@ -405,6 +405,11 @@ class UserDefinedForm_Controller extends Page_Controller {
}
}
// set the values passed by the url to the field
$request = $this->getRequest();
$value = Convert::raw2att($request->getVar($field->name));
if(isset($value)) $field->value = $value;
$fields->push($field);
}
}