26 lines
No EOL
347 B
PHP
26 lines
No EOL
347 B
PHP
<?php
|
|
|
|
namespace PhangoApp\PhaModels\CoreFields;
|
|
|
|
class MoneyField extends DoubleField{
|
|
|
|
|
|
function show_formatted($value)
|
|
{
|
|
|
|
return $this->currency_format($value);
|
|
|
|
}
|
|
|
|
|
|
static function currency_format($value, $symbol_currency='€')
|
|
{
|
|
|
|
|
|
return number_format($value, 2).' '.$symbol_currency;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|