mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
31 lines
396 B
PHP
31 lines
396 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\Forms;
|
||
|
|
||
|
/**
|
||
|
* Readonly version of a numeric field.
|
||
|
*/
|
||
|
class NumericField_Readonly extends ReadonlyField
|
||
|
{
|
||
|
/**
|
||
|
* @return static
|
||
|
*/
|
||
|
public function performReadonlyTransformation()
|
||
|
{
|
||
|
return clone $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function Value()
|
||
|
{
|
||
|
return $this->value ?: '0';
|
||
|
}
|
||
|
|
||
|
public function getValueCast()
|
||
|
{
|
||
|
return 'Decimal';
|
||
|
}
|
||
|
}
|