1 <?php
2 /**
3 * Transformation that will turn a form into a readonly version of itself
4 * @package forms
5 * @subpackage transformations
6 */
7 class ReadonlyTransformation extends FormTransformation {
8 // All of the ReadonlyTransformation's functionality is implemented in performReadonlyTransformation()
9 // methods on the individual FormField objects.
10 }
11
12 ?>