mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
15 lines
282 B
PHP
15 lines
282 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Forms;
|
|
|
|
/**
|
|
* Transformation that disables all the fields on the form.
|
|
*/
|
|
class DisabledTransformation extends FormTransformation
|
|
{
|
|
public function transform(FormField $field)
|
|
{
|
|
return $field->performDisabledTransformation();
|
|
}
|
|
}
|