silverstripe-framework/core/model/fieldtypes/Float.php
Hayden Smith f7ff65c04d 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
2008-08-12 22:47:08 +00:00

29 lines
582 B
PHP

<?php
/**
* Represents a floating point field.
* @package sapphire
* @subpackage model
*/
class Float extends DBField {
function requireField() {
DB::requireField($this->tableName, $this->name, "float");
}
function Nice() {
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);
}
}
?>