silverstripe-framework/forms/EditForm.php
Hayden Smith 4a5d9b03f8 Moved Sapphire module to open source path
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@39001 467b73ca-7a2a-4603-9d3b-597d59a354a9
2007-07-19 10:40:28 +00:00

47 lines
1.1 KiB
PHP

<?php
/**
* Creates an edit form on a site page.
* Extends the basic form class to automatically look up, and save to, the data-object referred to
* by controller->data().
*/
class EditForm extends Form {
function __construct($controller, $name, FieldSet $fields) {
$this->data = $controller->data();
$actions = new FieldSet(
new FormAction("save", "Save Changes")
);
$sequential = $fields->dataFields();
foreach($sequential as $field) {
$fieldName = $field->Name();
// echo "<li>$fieldName";
$field->setValue($this->data->$fieldName);
}
parent::__construct($controller, $name, $fields, $actions);
}
/**
* Form handler. Saves all changed fields to the database, and returns back to the
* index action of the given object
*/
function save($params) {
$record = $this->controller->data();
foreach($this->fields as $field) {
$fieldName = $field->Name();
if(isset($params[$fieldName])) {
$record->$fieldName = $params[$fieldName];
}
}
$record->write();
Director::redirect($this->controller->Link());
}
}
?>