doc.silverstripe.org/sapphire/forms/ReadonlyTransformation.php
2011-04-10 21:53:26 +00:00

12 lines
354 B
PHP
Executable File

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