00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 class Mage_AmazonPayments_Model_Api_Asp_Amount
00035 {
00036
00037
00038
00039 private $_value;
00040
00041
00042
00043
00044 private $_currencyCode;
00045
00046
00047
00048
00049 protected $_amountStringTemplate = "/^([A-Z]{3})\s([0-9]{1,}|[0-9]{1,}[.][0-9]{1,})$/";
00050
00051
00052
00053
00054 protected $_valueStringTemplate = "/^([0-9]{1,}|[0-9]{1,}[.][0-9]{1,})$/";
00055
00056
00057
00058
00059 protected $_currencyCodeStringTemplate = "/^([A-Z]{3})$/";
00060
00061
00062
00063
00064
00065
00066
00067 public function init($amount)
00068 {
00069 $tmpArr = array();
00070 if (!preg_match($this->_amountStringTemplate, $amount, $tmpArr)) {
00071 return false;
00072 }
00073 $this->_value = $tmpArr[2];
00074 $this->_currencyCode = $tmpArr[1];
00075 return $this;
00076 }
00077
00078
00079
00080
00081
00082
00083
00084 public function setValue($value)
00085 {
00086 $tmpArr = array();
00087 if (!preg_match($this->_valueStringTemplate, $value, $tmpArr)) {
00088 return false;
00089 }
00090 $this->_value = $tmpArr[1];
00091 return $this;
00092 }
00093
00094
00095
00096
00097
00098
00099
00100 public function setCurrencyCode($currencyCode)
00101 {
00102 $tmpArr = array();
00103 if (!preg_match($this->_currencyCodeStringTemplate, $currencyCode, $tmpArr)) {
00104 return false;
00105 }
00106 $this->_currencyCode = $tmpArr[1];
00107 return $this;
00108 }
00109
00110
00111
00112
00113
00114
00115 public function getValue()
00116 {
00117 return $this->_value;
00118 }
00119
00120
00121
00122
00123
00124
00125 public function getCurrencyCode()
00126 {
00127 return $this->_currencyCode;
00128 }
00129
00130
00131
00132
00133
00134
00135 public function toString()
00136 {
00137 return $this->getCurrencyCode() . ' ' . $this->getValue();
00138 }
00139 }