silverstripe-framework/forms/ReadonlyTransformation.php
2014-08-19 09:17:15 +12:00

12 lines
351 B
PHP

<?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.
}