1 <?php
2 /**
3 * Transformation that disables all the fields on the form.
4 * @package forms
5 * @subpackage transformations
6 */
7 class DisabledTransformation extends FormTransformation {
8 public function transform($field) {
9 return $field->performDisabledTransformation($this);
10 }
11 }
12
13 ?>