silverstripe-framework/model/FieldType/DBFloat.php
Sam Minnee aeccb8b8e0 API: Move DBField subclasses into SilverStripe\Model\FieldType namespace
API: Deprecate SS_Datetime.

The DBField subclasses are have all been renamed to start with “DB” and
be in the SilverStripe\Model\FieldType namespace. To keep DataObject
definitions concise, the original short variations of their names are
preserved as service definitions. Most of the field generation code
doesn’t need to change, but where field classes are referenced directly,
changes will be needed.

SS_Datetime, which is commonly referenced outside the model system
itself, has been preserved as a subclass of DBDatetime. This has been
marked as deprecated and can be removed in SilverStripe 5.

A few places that referred to $db and $casting values weren’t using
the Injector to instantiate the relevant classes. This meant that the
remapping we have created as part of moving classes into a namespace
didn’t work.
2016-03-22 18:09:30 +13:00

69 lines
1.4 KiB
PHP

<?php
namespace SilverStripe\Model\FieldType;
use DB;
use NumericField;
/**
* Represents a floating point field.
*
* @package framework
* @subpackage model
*/
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) {
return new NumericField($this->name, $title);
}
public function nullValue() {
return 0;
}
public function prepValueForDB($value) {
if($value === true) {
return 1;
} elseif(empty($value) || !is_numeric($value)) {
return 0;
}
return $value;
}
}