silverstripe-framework/src/ORM/FieldType/DBFloat.php
Damian Mooyman 029a8b9586
API Substitute Zend_Currency with NumberFormatter based solution
API Substitute Zend_Locale with Locale / NumberFormatter
API Substitute Zend_Date with IntlDateFormatter
API Added DBTIme::Nice12, FormatFromSettings
API Added Short() method to DBDate / DBTime / DBDatetime
API Add Date::getTimestamp()
API Added setSubmittedValue api for FormField
API Add second arg to base FormField::setValue()
API Major refactor of i18n into component data parts
API Implement Resettable interface to reset objects between tests
ENHANCEMENT Changed DBField::create_field return type to `static` to support better type hinting
ENHANCEMENT i18nTextCollector supports __CLASS__
2017-02-09 15:28:59 +13:00

76 lines
1.7 KiB
PHP

<?php
namespace SilverStripe\ORM\FieldType;
use SilverStripe\Forms\NumericField;
use SilverStripe\ORM\DB;
/**
* Represents a floating point field.
*/
class DBFloat extends DBField
{
public function __construct($name = null, $defaultVal = 0)
{
$this->defaultVal = is_float($defaultVal) ? $defaultVal : (float) 0;
parent::__construct($name);
}
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);
}
/**
* 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);
}
public function Round($precision = 3)
{
return round($this->value, $precision);
}
public function NiceRound($precision = 3)
{
return number_format(round($this->value, $precision), $precision);
}
public function scaffoldFormField($title = null, $params = null)
{
$field = NumericField::create($this->name, $title);
$field->setScale(null); // remove no-decimal restriction
return $field;
}
public function nullValue()
{
return 0;
}
public function prepValueForDB($value)
{
if ($value === true) {
return 1;
} elseif (empty($value) || !is_numeric($value)) {
return 0;
}
return $value;
}
}