silverstripe-framework/src/Forms/ReadonlyTransformation.php

13 lines
339 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\Forms;
/**
* Transformation that will turn a form into a readonly version of itself
*/
2016-11-29 00:31:16 +01:00
class ReadonlyTransformation extends FormTransformation
{
// All of the ReadonlyTransformation's functionality is implemented in performReadonlyTransformation()
// methods on the individual FormField objects.
}