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