Hipay - Version 1.0.8

Version Notes

For any questions about this module please contact shop-extenstions@hi-media.com.

Download this release

Release Info

Developer Magento Core Team
Extension Hipay
Version 1.0.8
Comparing to
See all releases


Code changes from version 1.0.7 to 1.0.8

app/code/local/HimediaPayments/Hipay/Helper/Data.php CHANGED
@@ -521,8 +521,8 @@ class HimediaPayments_Hipay_Helper_Data extends Mage_Core_Helper_Abstract
521
  curl_setopt($curl,CURLOPT_SSL_VERIFYPEER,false);
522
  curl_setopt($curl,CURLOPT_USERAGENT,"HIPAY");
523
  curl_setopt($curl,CURLOPT_URL, $turl['scheme'].'://'.$turl['host'].$turl['path']);
524
- // curl_setopt($curl,CURLOPT_POSTFIELDS,'xml='.urlencode($xml));
525
- curl_setopt($curl,CURLOPT_POSTFIELDS,'xml=<xml></xml>');
526
 
527
  //DEBUG
528
  //curl_setopt($curl, CURLINFO_HEADER_OUT, true);
521
  curl_setopt($curl,CURLOPT_SSL_VERIFYPEER,false);
522
  curl_setopt($curl,CURLOPT_USERAGENT,"HIPAY");
523
  curl_setopt($curl,CURLOPT_URL, $turl['scheme'].'://'.$turl['host'].$turl['path']);
524
+ // curl_setopt($curl,CURLOPT_POSTFIELDS,'xml='.urlencode($xml));
525
+ curl_setopt($curl,CURLOPT_POSTFIELDS,'xml=<xml></xml>'); // prevents curl to set a "content length" of "-1" in older PHP-Versions
526
 
527
  //DEBUG
528
  //curl_setopt($curl, CURLINFO_HEADER_OUT, true);
app/code/local/HimediaPayments/Hipay/Model/Category.php CHANGED
@@ -59,10 +59,11 @@ class HimediaPayments_Hipay_Model_Category
59
  else
60
  {
61
  $categoryUrl = Mage::helper('hipaymod')->getHipayCategoryUrl($accountMode) . $merchantSiteId;
62
- $response = Mage::helper('hipaymod')->sendRestCall($categoryUrl);
63
-
64
  $optionList = array();
65
- if( $this->analyzeCategoryResponseXML($response, $optionList) )
 
66
  {
67
  //Mage::log($optionList);
68
  return $optionList;
@@ -77,18 +78,57 @@ class HimediaPayments_Hipay_Model_Category
77
  }
78
  }
79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  /**
81
- * Create option array by xml response data
82
  *
83
- * @param string $xml
84
  * @param array $optionList
85
  * @param string $err_msg
86
  */
87
- protected static function analyzeCategoryResponseXML($xml, & $optionList)
88
  {
89
  $err_msg='';
90
  try {
91
- $obj = @new SimpleXMLElement(trim($xml));
 
92
  } catch (Exception $e) {
93
  return false;
94
  }
@@ -97,7 +137,6 @@ class HimediaPayments_Hipay_Model_Category
97
  {
98
  foreach ($obj->categoriesList as $category)
99
  {
100
- //Mage::log($category);
101
  foreach ($category as $item)
102
  {
103
  //Mage::log($item);
@@ -107,8 +146,6 @@ class HimediaPayments_Hipay_Model_Category
107
  $optionList[] = array('value'=>$value, 'label'=>Mage::helper('hipaymod')->__(''.$label));
108
  }
109
  }
110
- //Mage::log($optionList);
111
-
112
  return true;
113
  }
114
 
@@ -116,7 +153,5 @@ class HimediaPayments_Hipay_Model_Category
116
  Mage::log("Hipay: Failed to resolve order categories: ".$obj->result[0]->message);
117
  }
118
  return false;
119
-
120
  }
121
-
122
  }
59
  else
60
  {
61
  $categoryUrl = Mage::helper('hipaymod')->getHipayCategoryUrl($accountMode) . $merchantSiteId;
62
+ //$response = Mage::helper('hipaymod')->sendRestCall($categoryUrl);
63
+
64
  $optionList = array();
65
+ //if( $this->analyzeCategoryResponseXML($response, $optionList) )
66
+ if( $this->fillCategoryList($categoryUrl, $optionList) )
67
  {
68
  //Mage::log($optionList);
69
  return $optionList;
78
  }
79
  }
80
 
81
+ // /**
82
+ // * Create option array by xml response data
83
+ // *
84
+ // * @param string $xml
85
+ // * @param array $optionList
86
+ // * @param string $err_msg
87
+ // */
88
+ // protected static function analyzeCategoryResponseXML($xml, & $optionList)
89
+ // {
90
+ // $err_msg='';
91
+ // try {
92
+ // $obj = @new SimpleXMLElement(trim($xml));
93
+ // } catch (Exception $e) {
94
+ // return false;
95
+ // }
96
+ // //Mage::log($obj);
97
+ // if (isset($obj->categoriesList))
98
+ // {
99
+ // foreach ($obj->categoriesList as $category)
100
+ // {
101
+ // foreach ($category as $item)
102
+ // {
103
+ // //Mage::log($item);
104
+ // $label = $item[0];
105
+ // $value = $item[0]->attributes();
106
+ //
107
+ // $optionList[] = array('value'=>$value, 'label'=>Mage::helper('hipaymod')->__(''.$label));
108
+ // }
109
+ // }
110
+ // return true;
111
+ // }
112
+ //
113
+ // if (isset($obj->result[0]->message)) {
114
+ // Mage::log("Hipay: Failed to resolve order categories: ".$obj->result[0]->message);
115
+ // }
116
+ // return false;
117
+ // }
118
+
119
  /**
120
+ * Create option array by xml response data of given category url
121
  *
122
+ * @param string $url
123
  * @param array $optionList
124
  * @param string $err_msg
125
  */
126
+ protected static function fillCategoryList($url, & $optionList)
127
  {
128
  $err_msg='';
129
  try {
130
+ $obj = new SimpleXMLElement($url, NULL, TRUE);
131
+ //Mage::log("XML-Daten" . $obj->asXML());
132
  } catch (Exception $e) {
133
  return false;
134
  }
137
  {
138
  foreach ($obj->categoriesList as $category)
139
  {
 
140
  foreach ($category as $item)
141
  {
142
  //Mage::log($item);
146
  $optionList[] = array('value'=>$value, 'label'=>Mage::helper('hipaymod')->__(''.$label));
147
  }
148
  }
 
 
149
  return true;
150
  }
151
 
153
  Mage::log("Hipay: Failed to resolve order categories: ".$obj->result[0]->message);
154
  }
155
  return false;
 
156
  }
 
157
  }
app/code/local/HimediaPayments/Hipay/controllers/MapiController.php CHANGED
@@ -376,13 +376,20 @@ class HimediaPayments_Hipay_MapiController extends Mage_Core_Controller_Front_Ac
376
  if(isset($order))
377
  {
378
  Mage::log("found Order");
379
- $historyComment = Mage::helper('hipaymod')->__('Hipay payment notification') ." - "
380
- . Mage::helper('hipaymod')->__('OPERATION') . ": '".$operation."', "
381
- . Mage::helper('hipaymod')->__('STATUS') . ": '".$status."', "
382
- . Mage::helper('hipaymod')->__('DATE') . ": '".$date." ".$time."', "
383
- . Mage::helper('hipaymod')->__('TRANSACTION ID') . ": '".$transid."', "
384
- . Mage::helper('hipaymod')->__('PAID AMOUNT') . ": '".$origAmount." ".$origCurrency."', "
385
- . Mage::helper('hipaymod')->__('CUSTOMER EMAIL') . ": '".$emailClient."'";
 
 
 
 
 
 
 
386
  Mage::log("History Comment: " . $historyComment);
387
 
388
  $order->addStatusHistoryComment($historyComment);
376
  if(isset($order))
377
  {
378
  Mage::log("found Order");
379
+ $historyComment = Mage::helper('hipaymod')->__('Hipay payment notification') ." - "
380
+ . "OPERATION: '".$operation."', "
381
+ . "STATUS: '".$status."', "
382
+ . "DATE: '".$date." ".$time."', "
383
+ . "TRANSACTION ID: '".$transid."', "
384
+ . "PAID AMOUNT: '".$origAmount." ".$origCurrency."', "
385
+ . "CUSTOMER EMAIL: '".$emailClient."'";
386
+ // TODO: Use backend language
387
+ // . Mage::helper('hipaymod')->__('OPERATION') . ": '".$operation."', "
388
+ // . Mage::helper('hipaymod')->__('STATUS') . ": '".$status."', "
389
+ // . Mage::helper('hipaymod')->__('DATE') . ": '".$date." ".$time."', "
390
+ // . Mage::helper('hipaymod')->__('TRANSACTION ID') . ": '".$transid."', "
391
+ // . Mage::helper('hipaymod')->__('PAID AMOUNT') . ": '".$origAmount." ".$origCurrency."', "
392
+ // . Mage::helper('hipaymod')->__('CUSTOMER EMAIL') . ": '".$emailClient."'";
393
  Mage::log("History Comment: " . $historyComment);
394
 
395
  $order->addStatusHistoryComment($historyComment);
app/code/local/HimediaPayments/Hipay/etc/config.xml CHANGED
@@ -3,7 +3,7 @@
3
 
4
  <modules>
5
  <HimediaPayments_Hipay>
6
- <version>1.0.5</version>
7
  </HimediaPayments_Hipay>
8
  </modules>
9
 
3
 
4
  <modules>
5
  <HimediaPayments_Hipay>
6
+ <version>1.0.8</version>
7
  </HimediaPayments_Hipay>
8
  </modules>
9
 
app/design/frontend/base/default/template/himediapayments/hipay/form.phtml CHANGED
@@ -45,7 +45,7 @@ $_code = $this->getMethodCode();
45
  <style type="text/css">
46
 
47
  .hipay_infobox_head {
48
- background-image: url("<?= $this->getSkinUrl() ?>images/himediapayments/hipay/hipay-frame-top.png");
49
  background-attachment: scroll;
50
  background-position: top;
51
  background-repeat: no-repeat;
@@ -58,7 +58,7 @@ $_code = $this->getMethodCode();
58
  }
59
 
60
  .hipay_infobox_bottom {
61
- background:url("<?= $this->getSkinUrl() ?>images/himediapayments/hipay/hipay-frame-bottom.png") bottom no-repeat scroll transparent;
62
  overflow:hidden;
63
  width:555px;
64
  padding:0;
@@ -108,7 +108,7 @@ $_code = $this->getMethodCode();
108
  }
109
 
110
  .hipay_infobox_content .red_line {
111
- background:url("<?= $this->getSkinUrl() ?>images/himediapayments/hipay/hr_1x1.png") repeat-x scroll transparent;
112
  width:100%;
113
  height:2px;
114
  padding:0;
@@ -154,21 +154,21 @@ $_code = $this->getMethodCode();
154
  <li><span class="li-home-text"><?php echo Mage::helper('hipaymod')->__('Local means of payment') ?></span></li>
155
  <li><span class="li-home-text"><?php echo Mage::helper('hipaymod')->__('Over 15 payment types accepted, including local ones') ?>:</span>
156
  <div class="payment_methods">
157
- <img src="<?= $this->getSkinUrl() ?>images/himediapayments/hipay/payment_methods/pm_visa.png">
158
- <img src="<?= $this->getSkinUrl() ?>images/himediapayments/hipay/payment_methods/pm_mastercard.png">
159
- <img src="<?= $this->getSkinUrl() ?>images/himediapayments/hipay/payment_methods/pm_sofort-ueberweisung.png">
160
- <img src="<?= $this->getSkinUrl() ?>images/himediapayments/hipay/payment_methods/pm_sofort-lastschrift.png">
161
- <img src="<?= $this->getSkinUrl() ?>images/himediapayments/hipay/payment_methods/pm_giropay.png">
162
- <img src="<?= $this->getSkinUrl() ?>images/himediapayments/hipay/payment_methods/pm_cb.png">
163
- <img src="<?= $this->getSkinUrl() ?>images/himediapayments/hipay/payment_methods/pm_amex.png">
164
 
165
- <img src="<?= $this->getSkinUrl() ?>images/himediapayments/hipay/payment_methods/pm_cbc.png">
166
- <img src="<?= $this->getSkinUrl() ?>images/himediapayments/hipay/payment_methods/pm_cofidis.png">
167
- <img src="<?= $this->getSkinUrl() ?>images/himediapayments/hipay/payment_methods/pm_aurora.png">
168
- <img src="<?= $this->getSkinUrl() ?>images/himediapayments/hipay/payment_methods/pm_bcmc.png">
169
- <img src="<?= $this->getSkinUrl() ?>images/himediapayments/hipay/payment_methods/pm_dexia.png">
170
- <img src="<?= $this->getSkinUrl() ?>images/himediapayments/hipay/payment_methods/pm_ing.png">
171
- <img src="<?= $this->getSkinUrl() ?>images/himediapayments/hipay/payment_methods/pm_maestro.png">
172
  </div>
173
  </li>
174
  </ul>
45
  <style type="text/css">
46
 
47
  .hipay_infobox_head {
48
+ background-image: url("<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/hipay-frame-top.png");
49
  background-attachment: scroll;
50
  background-position: top;
51
  background-repeat: no-repeat;
58
  }
59
 
60
  .hipay_infobox_bottom {
61
+ background:url("<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/hipay-frame-bottom.png") bottom no-repeat scroll transparent;
62
  overflow:hidden;
63
  width:555px;
64
  padding:0;
108
  }
109
 
110
  .hipay_infobox_content .red_line {
111
+ background:url("<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/hr_1x1.png") repeat-x scroll transparent;
112
  width:100%;
113
  height:2px;
114
  padding:0;
154
  <li><span class="li-home-text"><?php echo Mage::helper('hipaymod')->__('Local means of payment') ?></span></li>
155
  <li><span class="li-home-text"><?php echo Mage::helper('hipaymod')->__('Over 15 payment types accepted, including local ones') ?>:</span>
156
  <div class="payment_methods">
157
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_visa.png">
158
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_mastercard.png">
159
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_sofort-ueberweisung.png">
160
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_sofort-lastschrift.png">
161
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_giropay.png">
162
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_cb.png">
163
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_amex.png">
164
 
165
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_cbc.png">
166
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_cofidis.png">
167
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_aurora.png">
168
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_bcmc.png">
169
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_dexia.png">
170
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_ing.png">
171
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/payment_methods/pm_maestro.png">
172
  </div>
173
  </li>
174
  </ul>
app/design/frontend/base/default/template/himediapayments/hipay/payment.phtml CHANGED
@@ -51,7 +51,7 @@ body {
51
  }
52
 
53
  .hipay_redirect_infobox_head {
54
- background-image: url("<?= $this->getSkinUrl() ?>images/himediapayments/hipay/hipay_redirect_frame_top.png");
55
  background-attachment: scroll;
56
  background-position: top;
57
  background-repeat: no-repeat;
@@ -64,7 +64,7 @@ body {
64
  }
65
 
66
  .hipay_redirect_infobox_bottom {
67
- background:url("<?= $this->getSkinUrl() ?>images/himediapayments/hipay/hipay_redirect_frame_bottom.png") bottom no-repeat scroll transparent;
68
  overflow:hidden;
69
  width:620px;
70
  padding:0;
@@ -83,7 +83,7 @@ body {
83
  }
84
 
85
  .show_loader_image {
86
- background:url("<?= $this->getSkinUrl() ?>images/himediapayments/hipay/loader.gif") no-repeat scroll transparent;
87
  padding-left: 25px;
88
  }
89
 
51
  }
52
 
53
  .hipay_redirect_infobox_head {
54
+ background-image: url("<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/hipay_redirect_frame_top.png");
55
  background-attachment: scroll;
56
  background-position: top;
57
  background-repeat: no-repeat;
64
  }
65
 
66
  .hipay_redirect_infobox_bottom {
67
+ background:url("<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/hipay_redirect_frame_bottom.png") bottom no-repeat scroll transparent;
68
  overflow:hidden;
69
  width:620px;
70
  padding:0;
83
  }
84
 
85
  .show_loader_image {
86
+ background:url("<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_SKIN); ?>frontend/base/default/images/himediapayments/hipay/loader.gif") no-repeat scroll transparent;
87
  padding-left: 25px;
88
  }
89
 
app/locale/en_US/HimediaPayments_Hipay.csv DELETED
@@ -1,78 +0,0 @@
1
- "About us","About us"
2
- "Account Mode","Account Mode"
3
- "accountmode-comment","If set to 'Test' the module will use the Hipay test system otherwise it's using the live system.<br/><span class=""notice"">Note, you need separate accounts for each system. See 'How to setup Hipay' for more information.</span>"
4
- "Age Classification","Age Classification"
5
- "ageclassification-comment","Select the minimum age of the buyers."
6
- "at","at"
7
- "Australian Dollar","Australian Dollar"
8
- "British Pound","British Pound"
9
- "Buyer Information","Buyer Information"
10
- "Canadian Dollar","Canadian Dollar"
11
- "Contact","Contact"
12
- "CUSTOMER EMAIL","CUSTOMER EMAIL"
13
- "DATE","DATE"
14
- "Easy to use","Easy to use"
15
- "Enabled","Enabled"
16
- "Error! Check your logs, please!","Error! Check your logs, please!"
17
- "Euro","Euro"
18
- "For ages 12 and over","For ages 12 and over"
19
- "For ages 16 and over","For ages 16 and over"
20
- "For ages 18 and over","For ages 18 and over"
21
- "For all ages","For all ages"
22
- "General Extension Settings","General Extension Settings"
23
- "Help and Support","Help and Support"
24
- "Hipay Account","Hipay Account"
25
- "Hipay Merchant Password","Hipay Merchant Password"
26
- "Hipay payment failed","Hipay payment failed"
27
- "Hipay payment loaded","Hipay payment loaded"
28
- "Hipay payment notification","Hipay payment notification"
29
- "hipay&trade; is a product of HPME a subsidiary of the","hipay&trade; is a product of HPME a subsidiary of the"
30
- "hipay-account-field-comment","ID number of the Hipay account on which this store website is declared.<br/><span class=""notice"">Normally this is your main account. Do <span style=""font-weight: bold;"">not</span> use your <span style=""font-style: italic;"">member area id</span> here!</span>"
31
- "hipay-merchant-password-comment","Merchant password of the Hipay account on which this store website is declared (it's not the login password!).<br /><span class=""notice"">To set a new merchant password: Log in to your Hipay account, navigate to <span style=""font-style: italic;"">Payment buttons</span> where you can find a list of your registered sites. Click on the <span style=""font-style: italic;"">site informations</span> button of the related site. Enter your <span style=""font-style: italic;""> merchant password</span> and click on confirm. Do not forget to enter your new password here too.</span>"
32
- "hipay_accountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">What you have to do here:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Set your account data (account id, password and site id).</li><li>Select order category and age classification.</li><li>Set an e-mail address for payment notifications.</li></ul>For more informations please go to the <span style=""font-style: italic;"">How to setup Hipay</span> tab above."
33
- "hipay_extendedaccountsettings_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">What you can do here:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Change the account mode to 'test' and run this extension in test mode.</li><li>Set your own logo for the payment dialog.</li> <li>Set different accounts to split the amounts of your payments. <p>You can automatically split the payment amount into one ore more of the following partial amounts: product and shipping.<br />As a result of this, you have do create different sub accounts for each of the partial amounts under your Hipay account.</p></li></ul>"
34
- "hipay_general_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">What you can do here:</span><br /><ul style=""list-style:square outside none; padding-left:15px;""><li>Enable this payment method</li><li>Select the countries where this payment method should be available</li></ul>"
35
- "hipay_howto_groupcomment","To use this extension you must create a user area on hipay.com and store certain information about your shop.<br />Afterwards open the tab <span style=""font-style: italic;"">Hipay Account</span> and enter the necessary account data. The extension is now fully configured.<br />Enable the extension and Hipay as a new payment method on the tab <span style=""font-style: italic;"">General Extension Settings</span>.<br />Well done.<div style=""margin-top:10px;""><a href=""https://www.hipay.com/registration/register/type/merchant"" target=""_blank"">Create your user account on hipay.com</a>.<br /><br /><a href=""%HIPAYFILES%/Hipay-Payment-Extension_english.pdf"" target=""_blank"" class=""hipay-pdf-link"">Guide</ a> to set up the Hipay account and the payment module</div>"
36
- "hipay_support_groupcomment","<span style=""font-weight:bold; padding-bottom:3px; background-color:#D1DEDF;"">Where you can find help:</span><p>If you have questions about our extension, suggestions for improvement or you think you have found a bug, please write an email to <a href=""mailto:shop-extensions@hi-media.com"">shop-extensions@hi-media.com</a>.</p><p>For any other question, e.g. if you have an issue with one of your payment transactions, please use our <a href=""https://www.hipay.com/info/contact"" target=""_blank"">contact form</a> on hipay.com</p>"
37
- "How to setup Hipay","How to setup Hipay"
38
- "Item Account","Item Account"
39
- "itemaccountid-comment","ID of the (sub) account which the amount paid for the goods will be credited.<br /><span class=""notice"">If this field is left blank, then the <span style=""font-style: italic;"">Hipay merchant account</span> is used.</span>"
40
- "Live","Live"
41
- "Local means of payment","Local means of payment"
42
- "logourl-comment","If a logo URL was entered, the logo is displayed in the payment dialog.<br/><span class=""notice"">This logo, in GIF, PNG or JPG (JPEG) format must be accessible from the Internet via HTTPS protocol. This logo must not exceed 100x100 pixels in size.</span>"
43
- "Merchant Logo URL","Merchant Logo URL"
44
- "Merchant Site Id","Merchant Site Id"
45
- "merchant-site-id-comment","Id of the selected site.<br/><span class=""notice"">To get a site id register your store website on the selected Hipay account. You can find this option in your Hipay account under the menu item <span style=""font-style: italic;"">Payment buttons</span>.</span>"
46
- "No order for processing found!","No order for processing found!"
47
- "No registration required","No registration required"
48
- "Notification E-Mail Address","Notification E-Mail Address"
49
- "notificationemail-comment","E-Mail used by Hipay to post operation notifications."
50
- "OPERATION","null"
51
- "Optional Settings","Optional Settings"
52
- "Order","Order"
53
- "Order Category","Order Category"
54
- "ordercategory-comment","Select the order category.<br /><span class=""notice"">A list of your categories (based on the selected <span style=""font-style: italic;"">business line</span>and <span style=""font-style: italic;"">category</span> for your site on Hipay).<br />1. Enter your <span style=""font-style: italic;"">Site Id</span><br />2. Click on <span style=""font-style: italic;"">Save Config</span><br />3. The <span style=""font-style: italic;"">Order Category</span> list will be updated.<br />4. Choose a pleasant category and click on <span style=""font-style: italic;"">Save Config</span> again.</span>"
55
- "Over 15 payment types accepted, including local ones","Over 15 payment types accepted, including local ones"
56
- "PAID AMOUNT","PAID AMOUNT"
57
- "Payment from applicable countries","Payment from applicable countries"
58
- "Payment from specific countries","Payment from specific countries"
59
- "Payment has been canceled by customer","Payment has been canceled by customer"
60
- "Please enter 'Merchant Site Id' first and save config!","Please enter 'Merchant Site Id' first and save config!"
61
- "Secure","Secure"
62
- "Secure online payment solution","Secure online payment solution"
63
- "Shipping Account","Shipping Account"
64
- "shippingaccountid-comment","ID of the (sub) account which the shipping costs will be credited.<br /><span class=""notice"">If this field is left blank, then the <span style=""font-style: italic;"">Hipay merchant account</span> is used.</span>"
65
- "Shopping cart","Shopping cart"
66
- "Sort order","Sort order"
67
- "STATUS","STATUS"
68
- "Swedish Crone","Swedish Crone"
69
- "Test","Test"
70
- "The customer has successfully paid via Hipay","The customer has successfully paid via Hipay"
71
- "The customer was redirected to Hipay","The customer was redirected to Hipay"
72
- "This is what you can expect when you pay with hipay:","This is what you can expect when you pay with hipay:"
73
- "TRANSACTION ID","TRANSACTION ID"
74
- "US Dollar","US Dollar"
75
- "You will be redirected to Hipay ...","You will be redirected to Hipay ..."
76
- "You will be redirected to our secure payment page when you complete your order.","You will be redirected to our secure payment page when you complete your order."
77
- "Your order has been canceled because the payment process failed.","Your order has been canceled because the payment process failed."
78
- "Your order has been canceled because you have canceled the payment process.","Your order has been canceled because you have canceled the payment process."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Hipay</name>
4
- <version>1.0.7</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>Added support for Italian; Small bugfix for users with PHP Version 5.0.x</summary>
10
  <description>Hipay is a payment solution that is easy to use, fast and secure. It offers over 15 payment methods, including local ones.</description>
11
  <notes>For any questions about this module please contact shop-extenstions@hi-media.com.</notes>
12
  <authors><author><name>Dirk J&#xF6;nsson</name><user>auto-converted</user><email>djoensson@hi-media.com</email></author></authors>
13
- <date>2011-03-15</date>
14
- <time>15:05:04</time>
15
- <contents><target name="mageskin"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="css"><dir name="himediapayments"><dir name="files"><file name="Hipay-Payment-Extension_german.pdf" hash="a1fadc7c72f4205005adfeee36dc1cba"/></dir><dir name="images"><file name="hipay_section_logo.png" hash="569b8c260d2d8c228f93022be5473428"/><file name="hipay_section_logo_hover.png" hash="f1e67746b8536d8b7131410be96d24b9"/><file name="pdf_16x16.png" hash="3d6afa6a2ed73b461846b8a13cfc730b"/><file name="pdf_22x22.png" hash="98a01edf5744ed484a022f88bdc06e31"/><file name="pdf_32x32.png" hash="c9075f2f6d959aef5fd11df746f488eb"/><file name="tabs_link_over_bg.gif" hash="2cf3f56884096055fb0bdf9474f280c9"/><file name="tabs_span_bg.gif" hash="bcabd4fea0d67b181f21779564c2284b"/></dir><file name="hipay.css" hash="f160f95dcbe5b609acd4dc52b1842db7"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="himediapayments"><dir name="hipay"><dir name="payment_methods"><file name="pm_amex.png" hash="dd93dd57f760189666243cbf355dc1f7"/><file name="pm_aurora.png" hash="ae4c0827d22cfd0ab34fe5d9e9bced9c"/><file name="pm_bcmc.png" hash="a5738fccfa594ebc7da1b3f8d08be530"/><file name="pm_cb.png" hash="5de6d1cde59a01dd6f4e80005983224a"/><file name="pm_cbc.png" hash="beb8ec556ec84f3d22b223d7a622bbb2"/><file name="pm_cofidis.png" hash="e79c4ecc66ba1231a15cd2a852871e83"/><file name="pm_dexia.png" hash="366c2cf937d0521bf04947a709964179"/><file name="pm_giropay.png" hash="4e65f6177095575526e933ae0be0ca2a"/><file name="pm_ing.png" hash="81fb2b557ac6eea34a1ce7b5bba8c3a5"/><file name="pm_maestro.png" hash="356f0137694d6815142a7c4f4a1f2b86"/><file name="pm_mastercard.png" hash="42d083e6823002ede041cdd3102dca93"/><file name="pm_sofort-lastschrift.png" hash="b501b25fc468e4056269ce6df2b46e45"/><file name="pm_sofort-ueberweisung.png" hash="fc1e1a947ac4affa08cae4762814c540"/><file name="pm_visa.png" hash="65620739d2afc84ff7ed6b22a2434c08"/></dir><file name="hipay-frame-bottom.png" hash="5fc92cf1b4304a16809e99d47bcf2c1a"/><file name="hipay-frame-top.png" hash="9d494e2c1d158f204574a0408d802c90"/><file name="hipay_logo.png" hash="569b8c260d2d8c228f93022be5473428"/><file name="hipay_redirect_frame_bottom.png" hash="e5a9019780f83e78ccbf9703d20ea7e8"/><file name="hipay_redirect_frame_top.png" hash="bee3367cafec0cc023c26dde80a0281d"/><file name="hr_1x1.png" hash="aa9c034d5dc827d9459f62efb4a65d83"/><file name="loader.gif" hash="a64410b8c2d8913fbe5c720f76b66f5b"/></dir></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="hipaybase.xml" hash="53aeac84b9561dfc8551a738893dde4b"/></dir><dir name="template"><dir name="himediapayments"><dir name="system"><dir name="config"><dir name="fieldset"><file name="commentbox.phtml" hash="407635d0eab891370e7707f032157a49"/><file name="hint.phtml" hash="65a384a048513619d9c5d88ba00b00fc"/></dir></dir></dir><file name="array.phtml" hash="c339ad1179e5c6011aa3aac7bb9654bd"/><file name="commentbox.phtml" hash="c84e61c4319630a197fa44042ce5058f"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="hipay.xml" hash="94e76e0a0581d73cf66fc4e6130eb1dc"/></dir><dir name="template"><dir name="himediapayments"><dir name="hipay"><file name="form.phtml" hash="2f46668d77cf945ff9d25caad8a82699"/><file name="payment.phtml" hash="d7290cdb5719e6fbd2b1b2c2a51c52ad"/></dir></dir></dir></dir></dir></dir></target><target name="magelocal"><dir name="HimediaPayments"><dir name="Hipay"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Commentbox.php" hash="0af5e6dbb3602b0a9cf9f151acc49f7e"/><file name="Hint.php" hash="a941e30babff232ac04fa0f06305b720"/></dir></dir></dir></dir><file name="Adminarray.php" hash="d2635e082c7bd625b689f14f53ba5c42"/><file name="Commentbox.php" hash="d854f85c18cc0d77f6e4a73d6eaefd62"/><file name="Form.php" hash="8058783ccc103153ed45a5487ab27e9c"/></dir><dir name="controllers"><file name="MapiController.php" hash="2c3aef89410d7b442a61a6c52e25fae1"/><file name="MapiHelper.php" hash="b66ae8d5495defc2b70a404b331b9c2c"/></dir><dir name="etc"><file name="adminhtml.xml" hash="00df6932b58615daa65a0f2704b33246"/><file name="config.xml" hash="fc066a9b16f5712282d5488c11fcde29"/><file name="system.xml" hash="84ffc4b1d023d24e3d1a4ab5296efc15"/></dir><dir name="Helper"><file name="Data.php" hash="4b3d51b25c0487bc220af7bca4b33dd2"/></dir><dir name="Mapi"><file name="mapi_affiliate.php" hash="113397690e72857575c2b1b1bf18a60f"/><file name="mapi_comm_xml.php" hash="664e2e8b7fea4bf8bce6b0fac00abc22"/><file name="mapi_defs.php" hash="6dee6a6842777e52adadc30eb1806202"/><file name="mapi_defs_ext.php" hash="3e2ad313cfa6277ad5fbe446500ff379"/><file name="mapi_exception.php" hash="71c4e1a37cc82beaabedb5e1618a92ca"/><file name="mapi_installment.php" hash="018a7d0cd79762b505a3c81c8899c002"/><file name="mapi_item.php" hash="0473f98654b7c1974d7ab78034f36fc2"/><file name="mapi_lockable.php" hash="34a101d0ed07fd89afa69671669b593b"/><file name="mapi_multiplepayment.php" hash="e70cbbc8f1b2af08f0f7ac1b6d5f9e5c"/><file name="mapi_order.php" hash="3ed179922934c00ee65517a470a6bb0a"/><file name="mapi_package.php" hash="a03fbeb17a7c163a2323b694aa4b27fc"/><file name="mapi_payment.php" hash="46434d663e50020d891e31471fd569b3"/><file name="mapi_paymentparams.php" hash="aa169016e35023c4f8689b8ddc5b1540"/><file name="mapi_product.php" hash="18ea29fbaa7f266c4bf3a6ea90a49c3d"/><file name="mapi_send_xml.php" hash="7d1d70ce6740b6a90622e10bd2f9e443"/><file name="mapi_simplepayment.php" hash="b6d4650ef84b4a063606f4a68d554a49"/><file name="mapi_tax.php" hash="c673af6130a097c2dfda9c59ed084ea9"/><file name="mapi_utf8.php" hash="ae6e136417a32791e9395c643b7ee881"/><file name="mapi_utils.php" hash="9d9bf78abcadf9184e0cd6176f08c6b7"/><file name="mapi_xml.php" hash="d3499c54392cfe237a2aebe7392e9680"/></dir><dir name="Model"><dir name="Method"><file name="Dummy.php" hash="79475fff99859df971abc4d752ec1d9b"/><file name="Hipay.php" hash="504c9a01fb134aba42b483dacea40d62"/></dir><file name="Accountmode.php" hash="2798ee056ffd10fcfb7eaed9e232c130"/><file name="Age.php" hash="04503f8459f6865c59b62a6781646104"/><file name="Category.php" hash="246c28998a5f1103784520a49e2cd701"/><file name="Currencies.php" hash="ef8f334ae60917db43b98ee3275c8c11"/><file name="Currency.php" hash="dada2948a6616e8de8f94c9578fc4dd3"/><file name="Rating.php" hash="a58118d4d37b87f9f3baa0dfe7276548"/></dir></dir></dir></target><target name="magelocale"><dir name="da_DK"><file name="HimediaPayments_Hipay.csv" hash="9cdff16b83a2a117f07e5c15bca99d1a"/></dir><dir name="de_AT"><file name="HimediaPayments_Hipay.csv" hash="cd26c2f049a213c347304a83d33bc1e2"/></dir><dir name="de_CH"><file name="HimediaPayments_Hipay.csv" hash="cd26c2f049a213c347304a83d33bc1e2"/></dir><dir name="de_DE"><file name="HimediaPayments_Hipay.csv" hash="cd26c2f049a213c347304a83d33bc1e2"/></dir><dir name="en_US"><file name="HimediaPayments_Hipay.csv" hash="084a510755e0ca62d0dbc0afc68b4b9f"/></dir><dir name="fr_FR"><file name="HimediaPayments_Hipay.csv" hash="76e87f7ab920eb2a6ebd8b2bd056cdb4"/></dir><dir name="it_IT"><file name="HimediaPayments_Hipay.csv" hash="673ef6eaf6a3365b1eb24e561d2ecc7f"/></dir><dir name="ru_RU"><file name="HimediaPayments_Hipay.csv" hash="4e2d62ae106784c448931dc2fe92d1fe"/></dir></target><target name="mageetc"><dir name="modules"><file name="HimediaPayments_Hipay.xml" hash="541f88b523115eb4a75fe845bb45af63"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Hipay</name>
4
+ <version>1.0.8</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD License</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>Bugfixes (Error in determining the order category eliminated. Images and CSS are now correctly displayed in other themes.)</summary>
10
  <description>Hipay is a payment solution that is easy to use, fast and secure. It offers over 15 payment methods, including local ones.</description>
11
  <notes>For any questions about this module please contact shop-extenstions@hi-media.com.</notes>
12
  <authors><author><name>Dirk J&#xF6;nsson</name><user>auto-converted</user><email>djoensson@hi-media.com</email></author></authors>
13
+ <date>2011-03-24</date>
14
+ <time>12:11:24</time>
15
+ <contents><target name="mageskin"><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="css"><dir name="himediapayments"><dir name="files"><file name="Hipay-Payment-Extension_german.pdf" hash="a1fadc7c72f4205005adfeee36dc1cba"/></dir><dir name="images"><file name="hipay_section_logo.png" hash="569b8c260d2d8c228f93022be5473428"/><file name="hipay_section_logo_hover.png" hash="f1e67746b8536d8b7131410be96d24b9"/><file name="pdf_16x16.png" hash="3d6afa6a2ed73b461846b8a13cfc730b"/><file name="pdf_22x22.png" hash="98a01edf5744ed484a022f88bdc06e31"/><file name="pdf_32x32.png" hash="c9075f2f6d959aef5fd11df746f488eb"/><file name="tabs_link_over_bg.gif" hash="2cf3f56884096055fb0bdf9474f280c9"/><file name="tabs_span_bg.gif" hash="bcabd4fea0d67b181f21779564c2284b"/></dir><file name="hipay.css" hash="f160f95dcbe5b609acd4dc52b1842db7"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="himediapayments"><dir name="hipay"><dir name="payment_methods"><file name="pm_amex.png" hash="dd93dd57f760189666243cbf355dc1f7"/><file name="pm_aurora.png" hash="ae4c0827d22cfd0ab34fe5d9e9bced9c"/><file name="pm_bcmc.png" hash="a5738fccfa594ebc7da1b3f8d08be530"/><file name="pm_cb.png" hash="5de6d1cde59a01dd6f4e80005983224a"/><file name="pm_cbc.png" hash="beb8ec556ec84f3d22b223d7a622bbb2"/><file name="pm_cofidis.png" hash="e79c4ecc66ba1231a15cd2a852871e83"/><file name="pm_dexia.png" hash="366c2cf937d0521bf04947a709964179"/><file name="pm_giropay.png" hash="4e65f6177095575526e933ae0be0ca2a"/><file name="pm_ing.png" hash="81fb2b557ac6eea34a1ce7b5bba8c3a5"/><file name="pm_maestro.png" hash="356f0137694d6815142a7c4f4a1f2b86"/><file name="pm_mastercard.png" hash="42d083e6823002ede041cdd3102dca93"/><file name="pm_sofort-lastschrift.png" hash="b501b25fc468e4056269ce6df2b46e45"/><file name="pm_sofort-ueberweisung.png" hash="fc1e1a947ac4affa08cae4762814c540"/><file name="pm_visa.png" hash="65620739d2afc84ff7ed6b22a2434c08"/></dir><file name="hipay-frame-bottom.png" hash="5fc92cf1b4304a16809e99d47bcf2c1a"/><file name="hipay-frame-top.png" hash="9d494e2c1d158f204574a0408d802c90"/><file name="hipay_logo.png" hash="569b8c260d2d8c228f93022be5473428"/><file name="hipay_redirect_frame_bottom.png" hash="e5a9019780f83e78ccbf9703d20ea7e8"/><file name="hipay_redirect_frame_top.png" hash="bee3367cafec0cc023c26dde80a0281d"/><file name="hr_1x1.png" hash="aa9c034d5dc827d9459f62efb4a65d83"/><file name="loader.gif" hash="a64410b8c2d8913fbe5c720f76b66f5b"/></dir></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="hipaybase.xml" hash="53aeac84b9561dfc8551a738893dde4b"/></dir><dir name="template"><dir name="himediapayments"><dir name="system"><dir name="config"><dir name="fieldset"><file name="commentbox.phtml" hash="407635d0eab891370e7707f032157a49"/><file name="hint.phtml" hash="65a384a048513619d9c5d88ba00b00fc"/></dir></dir></dir><file name="array.phtml" hash="c339ad1179e5c6011aa3aac7bb9654bd"/><file name="commentbox.phtml" hash="c84e61c4319630a197fa44042ce5058f"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="hipay.xml" hash="94e76e0a0581d73cf66fc4e6130eb1dc"/></dir><dir name="template"><dir name="himediapayments"><dir name="hipay"><file name="form.phtml" hash="5cf316292ae5511af8acb5745490b231"/><file name="payment.phtml" hash="c610d75e596bf2c85ea17107ef5287b2"/></dir></dir></dir></dir></dir></dir></target><target name="magelocal"><dir name="HimediaPayments"><dir name="Hipay"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Commentbox.php" hash="0af5e6dbb3602b0a9cf9f151acc49f7e"/><file name="Hint.php" hash="a941e30babff232ac04fa0f06305b720"/></dir></dir></dir></dir><file name="Adminarray.php" hash="d2635e082c7bd625b689f14f53ba5c42"/><file name="Commentbox.php" hash="d854f85c18cc0d77f6e4a73d6eaefd62"/><file name="Form.php" hash="8058783ccc103153ed45a5487ab27e9c"/></dir><dir name="controllers"><file name="MapiController.php" hash="ec2f8a056c337e88c573a91afb6831f4"/><file name="MapiHelper.php" hash="b66ae8d5495defc2b70a404b331b9c2c"/></dir><dir name="etc"><file name="adminhtml.xml" hash="00df6932b58615daa65a0f2704b33246"/><file name="config.xml" hash="637a687dd18cbd70f09bd57197d9a7cc"/><file name="system.xml" hash="84ffc4b1d023d24e3d1a4ab5296efc15"/></dir><dir name="Helper"><file name="Data.php" hash="90b99516931b30f03261853e86eecdc8"/></dir><dir name="Mapi"><file name="mapi_affiliate.php" hash="113397690e72857575c2b1b1bf18a60f"/><file name="mapi_comm_xml.php" hash="664e2e8b7fea4bf8bce6b0fac00abc22"/><file name="mapi_defs.php" hash="6dee6a6842777e52adadc30eb1806202"/><file name="mapi_defs_ext.php" hash="3e2ad313cfa6277ad5fbe446500ff379"/><file name="mapi_exception.php" hash="71c4e1a37cc82beaabedb5e1618a92ca"/><file name="mapi_installment.php" hash="018a7d0cd79762b505a3c81c8899c002"/><file name="mapi_item.php" hash="0473f98654b7c1974d7ab78034f36fc2"/><file name="mapi_lockable.php" hash="34a101d0ed07fd89afa69671669b593b"/><file name="mapi_multiplepayment.php" hash="e70cbbc8f1b2af08f0f7ac1b6d5f9e5c"/><file name="mapi_order.php" hash="3ed179922934c00ee65517a470a6bb0a"/><file name="mapi_package.php" hash="a03fbeb17a7c163a2323b694aa4b27fc"/><file name="mapi_payment.php" hash="46434d663e50020d891e31471fd569b3"/><file name="mapi_paymentparams.php" hash="aa169016e35023c4f8689b8ddc5b1540"/><file name="mapi_product.php" hash="18ea29fbaa7f266c4bf3a6ea90a49c3d"/><file name="mapi_send_xml.php" hash="7d1d70ce6740b6a90622e10bd2f9e443"/><file name="mapi_simplepayment.php" hash="b6d4650ef84b4a063606f4a68d554a49"/><file name="mapi_tax.php" hash="c673af6130a097c2dfda9c59ed084ea9"/><file name="mapi_utf8.php" hash="ae6e136417a32791e9395c643b7ee881"/><file name="mapi_utils.php" hash="9d9bf78abcadf9184e0cd6176f08c6b7"/><file name="mapi_xml.php" hash="d3499c54392cfe237a2aebe7392e9680"/></dir><dir name="Model"><dir name="Method"><file name="Dummy.php" hash="79475fff99859df971abc4d752ec1d9b"/><file name="Hipay.php" hash="504c9a01fb134aba42b483dacea40d62"/></dir><file name="Accountmode.php" hash="2798ee056ffd10fcfb7eaed9e232c130"/><file name="Age.php" hash="04503f8459f6865c59b62a6781646104"/><file name="Category.php" hash="6c8f5c70d2ed3c593785b2487a68eed1"/><file name="Currencies.php" hash="ef8f334ae60917db43b98ee3275c8c11"/><file name="Currency.php" hash="dada2948a6616e8de8f94c9578fc4dd3"/><file name="Rating.php" hash="a58118d4d37b87f9f3baa0dfe7276548"/></dir></dir></dir></target><target name="magelocale"><dir name="da_DK"><file name="HimediaPayments_Hipay.csv" hash="9cdff16b83a2a117f07e5c15bca99d1a"/></dir><dir name="de_AT"><file name="HimediaPayments_Hipay.csv" hash="cd26c2f049a213c347304a83d33bc1e2"/></dir><dir name="de_CH"><file name="HimediaPayments_Hipay.csv" hash="cd26c2f049a213c347304a83d33bc1e2"/></dir><dir name="de_DE"><file name="HimediaPayments_Hipay.csv" hash="cd26c2f049a213c347304a83d33bc1e2"/></dir><dir name="fr_FR"><file name="HimediaPayments_Hipay.csv" hash="76e87f7ab920eb2a6ebd8b2bd056cdb4"/></dir><dir name="it_IT"><file name="HimediaPayments_Hipay.csv" hash="673ef6eaf6a3365b1eb24e561d2ecc7f"/></dir><dir name="ru_RU"><file name="HimediaPayments_Hipay.csv" hash="4e2d62ae106784c448931dc2fe92d1fe"/></dir></target><target name="mageetc"><dir name="modules"><file name="HimediaPayments_Hipay.xml" hash="541f88b523115eb4a75fe845bb45af63"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies/>
18
  </package>