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:
Hayden Smith 2008-08-12 22:47:08 +00:00
parent 19da6e3128
commit f7ff65c04d

View File

@ -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);
}