silverstripe-framework/src/ORM/FieldType/DBFloat.php

76 lines
1.7 KiB
PHP
Raw Normal View History

<?php
namespace SilverStripe\ORM\FieldType;
use SilverStripe\Forms\NumericField;
use SilverStripe\ORM\DB;
/**
* Represents a floating point field.
*/
2016-11-29 00:31:16 +01:00
class DBFloat extends DBField
{
2016-11-29 00:31:16 +01:00
public function __construct($name = null, $defaultVal = 0)
{
$this->defaultVal = is_float($defaultVal) ? $defaultVal : (float) 0;
2014-08-15 08:53:05 +02:00
2016-11-29 00:31:16 +01:00
parent::__construct($name);
}
2014-08-15 08:53:05 +02:00
2016-11-29 00:31:16 +01:00
public function requireField()
{
$parts = array(
'datatype'=>'float',
'null'=>'not null',
'default'=>$this->defaultVal,
'arrayValue'=>$this->arrayValue
);
$values = array('type'=>'float', 'parts'=>$parts);
DB::require_field($this->tableName, $this->name, $values);
}
2014-08-15 08:53:05 +02:00
2016-11-29 00:31:16 +01:00
/**
* Returns the number, with commas and decimal places as appropriate, eg “1,000.00.
*
* @uses number_format()
*/
public function Nice()
{
return number_format($this->value, 2);
}
2014-08-15 08:53:05 +02:00
2016-11-29 00:31:16 +01:00
public function Round($precision = 3)
{
return round($this->value, $precision);
}
2016-11-29 00:31:16 +01:00
public function NiceRound($precision = 3)
{
return number_format(round($this->value, $precision), $precision);
}
2014-08-15 08:53:05 +02:00
2016-11-29 00:31:16 +01:00
public function scaffoldFormField($title = null, $params = null)
{
$field = NumericField::create($this->name, $title);
$field->setScale(null); // remove no-decimal restriction
return $field;
2016-11-29 00:31:16 +01:00
}
2016-11-29 00:31:16 +01:00
public function nullValue()
{
return 0;
}
2016-11-29 00:31:16 +01:00
public function prepValueForDB($value)
{
if ($value === true) {
return 1;
} elseif (empty($value) || !is_numeric($value)) {
return 0;
}
2016-11-29 00:31:16 +01:00
return $value;
}
}