mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
d370423825
All sapphire but the lang directory
12 lines
352 B
PHP
12 lines
352 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.
|
|
}
|
|
|