silverstripe-framework/core/model/fieldtypes/Float.php

16 lines
211 B
PHP

<?php
/**
*
*/
class Float extends DBField {
function requireField() {
DB::requireField($this->tableName, $this->name, "float");
}
function Nice() {
return number_format($this->value, 2);
}
}
?>