silverstripe-framework/core/model/fieldtypes/Percentage.php
Will Rossiter 1b4eed87ec BUGFIX: Allow percentage fields to store 100%. Merged From 2.2 r83164
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@83179 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-07-29 23:58:27 +00:00

33 lines
646 B
PHP

<?php
/**
* Represents a decimal field from 0-1 containing a percentage value.
* @package sapphire
* @subpackage model
*/
class Percentage extends Decimal {
/**
* Create a new Decimal field.
*/
function __construct($name, $precision = 4) {
if(!$precision) $precision = 4;
parent::__construct($name, $precision + 1, $precision);
}
function Nice() {
return number_format($this->value * 100, $this->decimalSize - 2) . '%';
}
function saveInto($dataObject) {
parent::saveInto($dataObject);
$fieldName = $this->name;
if($fieldName && $dataObject->$fieldName > 1.0) {
$dataObject->$fieldName = 1.0;
}
}
}
?>