mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merged [47091]: Added Round and NiceRound to Float.
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@60536 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
19da6e3128
commit
f7ff65c04d
@ -14,6 +14,14 @@ class Float extends DBField {
|
||||
return number_format($this->value, 2);
|
||||
}
|
||||
|
||||
function Round($precision = 3) {
|
||||
return round($this->value, $precision);
|
||||
}
|
||||
|
||||
function NiceRound($precision = 3) {
|
||||
return number_format(round($this->value, $precision), $precision);
|
||||
}
|
||||
|
||||
public function scaffoldFormField($title = null) {
|
||||
return new NumericField($this->name, $title);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user