doc.silverstripe.org/sapphire/forms/DisabledTransformation.php
2011-04-10 21:53:26 +00:00

13 lines
281 B
PHP

<?php
/**
* Transformation that disables all the fields on the form.
* @package forms
* @subpackage transformations
*/
class DisabledTransformation extends FormTransformation {
public function transform($field) {
return $field->performDisabledTransformation($this);
}
}
?>