silverstripe-framework/core/model/fieldtypes/Float.php
Sam Minnee c7330dd231 Introduced array-based syntax for specifying field types (Merged branches/dbabs into trunk)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@66403 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-11-23 01:01:03 +00:00

47 lines
991 B
PHP

<?php
/**
* Represents a floating point field.
* @package sapphire
* @subpackage model
*/
class Float extends DBField {
function requireField() {
$parts=Array('datatype'=>'float');
$values=Array('type'=>'float', 'parts'=>$parts);
DB::requireField($this->tableName, $this->name, $values);
}
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);
}
/**
* Return an encoding of the given value suitable for inclusion in a SQL statement.
* If necessary, this should include quotes.
*/
function prepValueForDB($value) {
if($value === true) {
return 1;
} if(!$value || !is_numeric($value)) {
return "0";
} else {
return addslashes($value);
}
}
}
?>