silverstripe-framework/core/model/fieldtypes/Currency.php

22 lines
457 B
PHP
Raw Normal View History

<?php
/**
* Currency value.
* Currency the currency class only supports single currencies.
*/
class Currency extends Decimal {
function Nice() {
// return "<span title=\"$this->value\">$" . number_format($this->value, 2) . '</span>';
return '$' . number_format($this->value, 2);
}
function Whole() {
return '$' . number_format($this->value, 0);
}
function setValue($value) {
$this->value = ereg_replace('[^0-9.]+','', $value);
}
}
?>