doc.silverstripe.org/sapphire/forms/DisabledTransformation.php

13 lines
281 B
PHP
Raw Normal View History

<?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);
}
}
?>