mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
8dd644d25d
Namespace all templates Move difflib and BBCodeParser2 to thirdparty Remove deprecated API marked for removal in 4.0
42 lines
1014 B
PHP
42 lines
1014 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Forms;
|
|
|
|
use SilverStripe\Core\Convert;
|
|
|
|
/**
|
|
* Readonly version of a {@link CurrencyField}.
|
|
*/
|
|
class CurrencyField_Readonly extends ReadonlyField
|
|
{
|
|
|
|
/**
|
|
* Overloaded to display the correctly formated value for this datatype
|
|
*
|
|
* @param array $properties
|
|
* @return string
|
|
*/
|
|
public function Field($properties = array())
|
|
{
|
|
if ($this->value) {
|
|
$val = Convert::raw2xml($this->value);
|
|
$val = _t('CurrencyField.CURRENCYSYMBOL', '$') . number_format(preg_replace('/[^0-9.]/', "", $val), 2);
|
|
$valforInput = Convert::raw2att($val);
|
|
} else {
|
|
$val = '<i>' . _t('CurrencyField.CURRENCYSYMBOL', '$') . '0.00</i>';
|
|
$valforInput = '';
|
|
}
|
|
return "<span class=\"readonly " . $this->extraClass() . "\" id=\"" . $this->ID() . "\">$val</span>"
|
|
. "<input type=\"hidden\" name=\"" . $this->name . "\" value=\"" . $valforInput . "\" />";
|
|
}
|
|
|
|
/**
|
|
* This already is a readonly field.
|
|
*/
|
|
public function performReadonlyTransformation()
|
|
{
|
|
return clone $this;
|
|
}
|
|
|
|
}
|