-
Notifications
You must be signed in to change notification settings - Fork 823
/
Copy pathCurrencyField.php
82 lines (74 loc) · 2.33 KB
/
CurrencyField.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
namespace SilverStripe\Forms;
use SilverStripe\ORM\FieldType\DBCurrency;
/**
* 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
*/
class CurrencyField extends TextField
{
/**
* allows the value to be set. removes the first character
* if it is not a number (probably a currency symbol)
*
* @param mixed $value
* @param mixed $data
* @return $this
*/
public function setValue($value, $data = null)
{
if (!$value) {
$value = 0.00;
}
$this->value = DBCurrency::config()->uninherited('currency_symbol')
. number_format((double)preg_replace('/[^0-9.\-]/', '', $value ?? ''), 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 ?? '');
}
return 0.00;
}
public function Type()
{
return 'currency text';
}
/**
* Create a new class for this field
*/
public function performReadonlyTransformation()
{
return $this->castedCopy(CurrencyField_Readonly::class);
}
public function validate($validator)
{
$result = true;
$currencySymbol = preg_quote(DBCurrency::config()->uninherited('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('SilverStripe\\Forms\\Form.VALIDCURRENCY', "Please enter a valid currency"),
"validation"
);
$result = false;
}
return $this->extendValidationResult($result, $validator);
}
public function getSchemaValidation()
{
$rules = parent::getSchemaValidation();
$rules['currency'] = true;
return $rules;
}
}