silverstripe-framework/core/model/fieldtypes/Currency.php
Ingo Schommer 60860cc1b9 MINOR Unified @package PHPdoc (added where missing, removed duplicates)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@56212 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-06-15 13:33:53 +00:00

42 lines
1.0 KiB
PHP

<?php
/**
* Represents a decimal field containing a currency amount.
* Currency the currency class only supports single currencies.
* @package sapphire
* @subpackage model
*/
class Currency extends Decimal {
protected static $currencySymbol = '$';
function Nice() {
// return "<span title=\"$this->value\">$" . number_format($this->value, 2) . '</span>';
$val = self::$currencySymbol . number_format(abs($this->value), 2);
if($this->value < 0) return "($val)";
else return $val;
}
function Whole() {
$val = self::$currencySymbol . number_format(abs($this->value), 0);
if($this->value < 0) return "($val)";
else return $val;
}
function setValue($value) {
$matches = null;
if(is_numeric($value)) {
$this->value = $value;
} else if(preg_match('/-?\$?[0-9,]+(.[0-9]+)?([Ee][0-9]+)?/', $value, $matches)) {
$this->value = str_replace(array('$',',',self::$currencySymbol),'',$matches[0]);
} else {
$this->value = 0;
}
}
static function setCurrencySymbol($value) {
self::$currencySymbol = $value;
}
}
?>