|
@@ -18,14 +18,29 @@ class Number extends CakeNumber {
|
|
|
*/
|
|
*/
|
|
|
protected static $_currencies = [];
|
|
protected static $_currencies = [];
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * @var string
|
|
|
|
|
+ */
|
|
|
protected static $_currency = 'EUR';
|
|
protected static $_currency = 'EUR';
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * @var string
|
|
|
|
|
+ */
|
|
|
protected static $_symbolRight = '€';
|
|
protected static $_symbolRight = '€';
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * @var string
|
|
|
|
|
+ */
|
|
|
protected static $_symbolLeft = '';
|
|
protected static $_symbolLeft = '';
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * @var string
|
|
|
|
|
+ */
|
|
|
protected static $_decimals = ',';
|
|
protected static $_decimals = ',';
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * @var string
|
|
|
|
|
+ */
|
|
|
protected static $_thousands = '.';
|
|
protected static $_thousands = '.';
|
|
|
|
|
|
|
|
/**
|
|
/**
|