silverstripe-framework/src/Forms/ReadonlyTransformation.php
Sam Minnee 7a10c194bd NEW: Move code files into src/ folder.
This updates framework to be more in keeping with PHP conventions.
2016-11-01 13:37:24 +13:00

13 lines
334 B
PHP

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