mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
aeccb8b8e0
API: Deprecate SS_Datetime. The DBField subclasses are have all been renamed to start with “DB” and be in the SilverStripe\Model\FieldType namespace. To keep DataObject definitions concise, the original short variations of their names are preserved as service definitions. Most of the field generation code doesn’t need to change, but where field classes are referenced directly, changes will be needed. SS_Datetime, which is commonly referenced outside the model system itself, has been preserved as a subclass of DBDatetime. This has been marked as deprecated and can be removed in SilverStripe 5. A few places that referred to $db and $casting values weren’t using the Injector to instantiate the relevant classes. This meant that the remapping we have created as part of moving classes into a namespace didn’t work.
116 lines
3.5 KiB
PHP
116 lines
3.5 KiB
PHP
<?php
|
|
/**
|
|
* Renders a text field, validating its input as a currency.
|
|
* Limited to US-centric formats, including a hardcoded currency
|
|
* symbol and decimal separators.
|
|
* See {@link MoneyField} for a more flexible implementation.
|
|
*
|
|
* @todo Add localization support, see http://open.silverstripe.com/ticket/2931
|
|
*
|
|
* @package forms
|
|
* @subpackage fields-formattedinput
|
|
*/
|
|
class CurrencyField extends TextField {
|
|
/**
|
|
* allows the value to be set. removes the first character
|
|
* if it is not a number (probably a currency symbol)
|
|
*/
|
|
public function setValue($val) {
|
|
if(!$val) $val = 0.00;
|
|
$this->value = Config::inst()->get('SilverStripe\Model\FieldType\DBCurrency','currency_symbol') . number_format((double)preg_replace('/[^0-9.\-]/', '', $val), 2);
|
|
return $this;
|
|
}
|
|
/**
|
|
* Overwrite the datavalue before saving to the db ;-)
|
|
* return 0.00 if no value, or value is non-numeric
|
|
*/
|
|
public function dataValue() {
|
|
if($this->value) {
|
|
return preg_replace('/[^0-9.\-]/','', $this->value);
|
|
}else{
|
|
return 0.00;
|
|
}
|
|
}
|
|
|
|
public function Type() {
|
|
return 'currency text';
|
|
}
|
|
|
|
/**
|
|
* Create a new class for this field
|
|
*/
|
|
public function performReadonlyTransformation() {
|
|
return $this->castedCopy('CurrencyField_Readonly');
|
|
}
|
|
|
|
public function validate($validator) {
|
|
$currencySymbol = preg_quote(Config::inst()->get('SilverStripe\Model\FieldType\DBCurrency', 'currency_symbol'));
|
|
$regex = '/^\s*(\-?'.$currencySymbol.'?|'.$currencySymbol.'\-?)?(\d{1,3}(\,\d{3})*|(\d+))(\.\d{2})?\s*$/';
|
|
if(!empty ($this->value)
|
|
&& !preg_match($regex, $this->value)) {
|
|
|
|
$validator->validationError($this->name, _t('Form.VALIDCURRENCY', "Please enter a valid currency"),
|
|
"validation", false);
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Readonly version of a {@link CurrencyField}.
|
|
* @package forms
|
|
* @subpackage fields-formattedinput
|
|
*/
|
|
class CurrencyField_Readonly extends ReadonlyField{
|
|
|
|
/**
|
|
* overloaded to display the correctly formated value for this datatype
|
|
*/
|
|
public function Field($properties = array()) {
|
|
if($this->value){
|
|
$val = $this->dontEscape ? $this->value : Convert::raw2xml($this->value);
|
|
$val = _t('CurrencyField.CURRENCYSYMBOL', '$') . number_format(preg_replace('/[^0-9.]/',"",$val), 2);
|
|
} else {
|
|
$val = '<i>'._t('CurrencyField.CURRENCYSYMBOL', '$').'0.00</i>';
|
|
}
|
|
$valforInput = $this->value ? Convert::raw2att($val) : "";
|
|
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;
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Readonly version of a {@link CurrencyField}.
|
|
* @package forms
|
|
* @subpackage fields-formattedinput
|
|
*/
|
|
class CurrencyField_Disabled extends CurrencyField{
|
|
|
|
protected $disabled = true;
|
|
|
|
/**
|
|
* overloaded to display the correctly formated value for this datatype
|
|
*/
|
|
public function Field($properties = array()) {
|
|
if($this->value){
|
|
$val = $this->dontEscape ? $this->value : Convert::raw2xml($this->value);
|
|
$val = _t('CurrencyField.CURRENCYSYMBOL', '$') . number_format(preg_replace('/[^0-9.]/',"",$val), 2);
|
|
} else {
|
|
$val = '<i>'._t('CurrencyField.CURRENCYSYMBOL', '$').'0.00</i>';
|
|
}
|
|
$valforInput = $this->value ? Convert::raw2att($val) : "";
|
|
return "<input class=\"text\" type=\"text\" disabled=\"disabled\""
|
|
. " name=\"".$this->name."\" value=\"".$valforInput."\" />";
|
|
}
|
|
}
|
|
|