silverstripe-framework/core/model/fieldtypes/Currency.php
Sean Harvey 081905485f FEATURE: Ticket #2418 - Merged in patch allow setting of currency symbol
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@53180 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-04-22 02:12:26 +00:00

48 lines
1.1 KiB
PHP

<?php
/**
* @package sapphire
* @subpackage model
*/
/**
* 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;
}
}
?>