mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
9 lines
165 B
PHP
9 lines
165 B
PHP
|
<?php
|
||
|
|
||
|
class DisabledTransformation extends FormTransformation {
|
||
|
public function transform($field) {
|
||
|
return $field->performDisabledTransformation($this);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|