Version Notes
added ip address to place call
fixed placing order ID in iframe call
Download this release
Release Info
Developer | CreativeMinds |
Extension | ZooZ_payment |
Version | 3.0.0.2 |
Comparing to | |
See all releases |
Code changes from version 3.0.0.1 to 3.0.0.2
app/code/community/Zooz/Payments/Model/Payments.php
CHANGED
@@ -98,6 +98,10 @@ class Zooz_Payments_Model_Payments extends Mage_Payment_Model_Method_Cc {
|
|
98 |
if($payment->getIsIframe()) {
|
99 |
$this->_paymentToken = $payment->getCcPaymentToken();
|
100 |
$this->_paymentMethodToken = $payment->getCcSavedCard();
|
|
|
|
|
|
|
|
|
101 |
} else {
|
102 |
$this->_openPayment($payment, $amount);
|
103 |
if ($this->_isSavingCardDataAllowed() && $payment->getCcSavedCard()) {
|
@@ -136,9 +140,12 @@ class Zooz_Payments_Model_Payments extends Mage_Payment_Model_Method_Cc {
|
|
136 |
if ($this->_isPreauthorizeCapture($payment)) {
|
137 |
$this->_preauthorizeCapture($payment, $amount);
|
138 |
} else {
|
139 |
-
|
140 |
-
|
141 |
-
|
|
|
|
|
|
|
142 |
} else {
|
143 |
$this->_openPayment($payment, $amount);
|
144 |
if ($this->_isSavingCardDataAllowed() && $payment->getCcSavedCard()) {
|
@@ -345,6 +352,7 @@ class Zooz_Payments_Model_Payments extends Mage_Payment_Model_Method_Cc {
|
|
345 |
$request = $this->_getRequest();
|
346 |
$request->addData(array(
|
347 |
'paymentToken' => $this->_paymentToken,
|
|
|
348 |
'paymentMethod' => array(
|
349 |
'paymentMethodType' => 'CreditCard',
|
350 |
'paymentMethodToken' => $this->_paymentMethodToken,
|
@@ -394,6 +402,42 @@ class Zooz_Payments_Model_Payments extends Mage_Payment_Model_Method_Cc {
|
|
394 |
Mage::throwException($defaultExceptionMessage);
|
395 |
}
|
396 |
return $this;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
397 |
}
|
398 |
|
399 |
/**
|
98 |
if($payment->getIsIframe()) {
|
99 |
$this->_paymentToken = $payment->getCcPaymentToken();
|
100 |
$this->_paymentMethodToken = $payment->getCcSavedCard();
|
101 |
+
|
102 |
+
try {
|
103 |
+
$this->_update($payment, $amount);
|
104 |
+
}catch(Exception $e){}
|
105 |
} else {
|
106 |
$this->_openPayment($payment, $amount);
|
107 |
if ($this->_isSavingCardDataAllowed() && $payment->getCcSavedCard()) {
|
140 |
if ($this->_isPreauthorizeCapture($payment)) {
|
141 |
$this->_preauthorizeCapture($payment, $amount);
|
142 |
} else {
|
143 |
+
if($payment->getIsIframe()) {
|
144 |
+
$this->_paymentToken = $payment->getCcPaymentToken();
|
145 |
+
$this->_paymentMethodToken = $payment->getCcSavedCard();
|
146 |
+
try {
|
147 |
+
$this->_update($payment, $amount);
|
148 |
+
}catch(Exception $e){}
|
149 |
} else {
|
150 |
$this->_openPayment($payment, $amount);
|
151 |
if ($this->_isSavingCardDataAllowed() && $payment->getCcSavedCard()) {
|
352 |
$request = $this->_getRequest();
|
353 |
$request->addData(array(
|
354 |
'paymentToken' => $this->_paymentToken,
|
355 |
+
'ipAddress' => Mage::app()->getRequest()->getServer('REMOTE_ADDR'),
|
356 |
'paymentMethod' => array(
|
357 |
'paymentMethodType' => 'CreditCard',
|
358 |
'paymentMethodToken' => $this->_paymentMethodToken,
|
402 |
Mage::throwException($defaultExceptionMessage);
|
403 |
}
|
404 |
return $this;
|
405 |
+
}/**
|
406 |
+
* Update transaction with order id
|
407 |
+
*
|
408 |
+
* @param Varien_Object $payment
|
409 |
+
* @param decimal $amount
|
410 |
+
* @param string $requestType
|
411 |
+
* @return Zooz_Payments_Model_Payments
|
412 |
+
* @throws Mage_Core_Exception
|
413 |
+
*/
|
414 |
+
protected function _update($payment, $amount)
|
415 |
+
{
|
416 |
+
$request = $this->_getRequest();
|
417 |
+
|
418 |
+
$requestData = array(
|
419 |
+
'command' => 'updatePaymentAndInvoice',
|
420 |
+
'paymentToken' => $this->_paymentToken,
|
421 |
+
'amount' => $amount,
|
422 |
+
'currencyCode' => $payment->getOrder()->getBaseCurrencyCode(),
|
423 |
+
'invoice' => array(
|
424 |
+
'number' => $payment->getOrder()->getIncrementId(),
|
425 |
+
),
|
426 |
+
);
|
427 |
+
$request->addData($requestData);
|
428 |
+
$defaultExceptionMessage = Mage::helper('payments')->__('Payment authorization error.');
|
429 |
+
|
430 |
+
$result = $this->_postRequest($request);
|
431 |
+
|
432 |
+
switch ($result->getResponseCode()) {
|
433 |
+
case self::RESPONSE_CODE_SUCCESS:
|
434 |
+
return true;
|
435 |
+
case self::RESPONSE_CODE_ERROR:
|
436 |
+
Mage::throwException($this->_wrapGatewayError($result->getResponseReasonText()));
|
437 |
+
default:
|
438 |
+
Mage::throwException($defaultExceptionMessage);
|
439 |
+
}
|
440 |
+
return $this;
|
441 |
}
|
442 |
|
443 |
/**
|
app/code/community/Zooz/Payments/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Zooz_Payments>
|
5 |
-
<version>3.0.0.
|
6 |
</Zooz_Payments>
|
7 |
</modules>
|
8 |
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Zooz_Payments>
|
5 |
+
<version>3.0.0.2</version>
|
6 |
</Zooz_Payments>
|
7 |
</modules>
|
8 |
|
app/design/frontend/base/default/template/zoozpayments/form/payments.phtml
CHANGED
@@ -24,6 +24,7 @@ $savedCardsForm = $this->getLayout()->createBlock("payments/form_payments")
|
|
24 |
$iframeForm = $this->getLayout()
|
25 |
->createBlock('payments/form_payments')
|
26 |
->setCode($_code)
|
|
|
27 |
->setData('ccAvailableTypes', $this->getCcAvailableTypes())
|
28 |
->setData('isSavingCardDataAllowed', $this->isSavingCardDataAllowed())
|
29 |
->setTemplate('zoozpayments/form/payments/iframe.phtml');
|
@@ -69,6 +70,12 @@ $iframeForm = $this->getLayout()
|
|
69 |
<?php endif; ?>
|
70 |
<script type="text/javascript">
|
71 |
jQuery(document).ready(function () {
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
jQuery('input#p_method_payments').click(function () {
|
73 |
if (jQuery('ul.cc-new-form').length) {
|
74 |
var cName = jQuery('#cc-use-different a').attr('class');
|
@@ -83,7 +90,6 @@ $iframeForm = $this->getLayout()
|
|
83 |
});
|
84 |
|
85 |
function switchCcForm(cName, position) {
|
86 |
-
|
87 |
if (position == 'outside') {
|
88 |
cName = 'cc-current-new';
|
89 |
}
|
24 |
$iframeForm = $this->getLayout()
|
25 |
->createBlock('payments/form_payments')
|
26 |
->setCode($_code)
|
27 |
+
->setData('savedCards', $_savedCards)
|
28 |
->setData('ccAvailableTypes', $this->getCcAvailableTypes())
|
29 |
->setData('isSavingCardDataAllowed', $this->isSavingCardDataAllowed())
|
30 |
->setTemplate('zoozpayments/form/payments/iframe.phtml');
|
70 |
<?php endif; ?>
|
71 |
<script type="text/javascript">
|
72 |
jQuery(document).ready(function () {
|
73 |
+
setTimeout(function(){
|
74 |
+
var cName = jQuery('#cc-use-different a').attr('class');
|
75 |
+
if(jQuery("#payments_saved_card").length > 0) {
|
76 |
+
switchCcForm(cName, 'outside');
|
77 |
+
}
|
78 |
+
}, 100);
|
79 |
jQuery('input#p_method_payments').click(function () {
|
80 |
if (jQuery('ul.cc-new-form').length) {
|
81 |
var cName = jQuery('#cc-use-different a').attr('class');
|
90 |
});
|
91 |
|
92 |
function switchCcForm(cName, position) {
|
|
|
93 |
if (position == 'outside') {
|
94 |
cName = 'cc-current-new';
|
95 |
}
|
app/design/frontend/base/default/template/zoozpayments/form/payments/new.phtml
CHANGED
@@ -4,7 +4,8 @@
|
|
4 |
$_ccType = $this->getData('cc_type');
|
5 |
$_ccAvailableTypes = $this->getData('ccAvailableTypes');
|
6 |
$_ccNumber = $this->getData('ccNumber');
|
7 |
-
|
|
|
8 |
$_ccExpMonth = $this->getData('ccExpMonth');
|
9 |
$_ccExpYear = $this->getData('ccExpYear');
|
10 |
?>
|
@@ -24,21 +25,21 @@
|
|
24 |
</li>
|
25 |
<li>
|
26 |
<div class="input-box">
|
27 |
-
<input type="text" class="input-text required validate-cc-number" title="<?php echo $this->__('Credit Card number') ?>" id="<?php echo $_code; ?>_cc_number" name="payment[cc_number]" autocomplete="off" value="<?php echo $_ccNumber; ?>" />
|
28 |
</div>
|
29 |
</li>
|
30 |
<li>
|
31 |
<label for="<?php echo $_code; ?>_expiration" class="required"><em>*</em><?php echo $this->__('Expiration Date') ?></label>
|
32 |
<div class="input-box">
|
33 |
<div class="v-fix">
|
34 |
-
<select id="<?php echo $_code ?>_expiration" name="payment[cc_exp_month]" class="month validate-cc-exp required-entry"
|
35 |
<?php foreach ($this->getCcMonths() as $k => $v): ?>
|
36 |
<option value="<?php echo $k ? $k : '' ?>"<?php if ($k == $_ccExpMonth): ?> selected="selected"<?php endif ?>><?php echo $v ?></option>
|
37 |
<?php endforeach ?>
|
38 |
</select>
|
39 |
</div>
|
40 |
<div class="v-fix">
|
41 |
-
<select id="<?php echo $_code ?>_expiration_yr" name="payment[cc_exp_year]" class="
|
42 |
<?php foreach ($this->getCcYears() as $k => $v): ?>
|
43 |
<option value="<?php echo $k ? $k : '' ?>"<?php if ($k == $_ccExpYear): ?> selected="selected"<?php endif ?>><?php echo $v ?></option>
|
44 |
<?php endforeach ?>
|
@@ -50,7 +51,7 @@
|
|
50 |
<label for="<?php echo $_code ?>_cc_cid" class=""><em>*</em><?php echo $this->__('Card Verification Number') ?></label>
|
51 |
<div class="input-box">
|
52 |
<div class="v-fix">
|
53 |
-
<input type="text" title="<?php echo Mage::helper('core')->jsQuoteEscape($this->__('Card Verification Number')) ?>" class="input-text cvv required-entry" id="<?php echo $_code ?>_cc_cid" name="payment[cc_cid]" value="" />
|
54 |
</div>
|
55 |
<a href="#" class="cvv-what-is-this"><?php echo $this->__('What is this?') ?></a>
|
56 |
</div>
|
4 |
$_ccType = $this->getData('cc_type');
|
5 |
$_ccAvailableTypes = $this->getData('ccAvailableTypes');
|
6 |
$_ccNumber = $this->getData('ccNumber');
|
7 |
+
$_savedCards = is_array($this->getData('savedCards')) && count($this->getData('savedCards')) > 0;
|
8 |
+
|
9 |
$_ccExpMonth = $this->getData('ccExpMonth');
|
10 |
$_ccExpYear = $this->getData('ccExpYear');
|
11 |
?>
|
25 |
</li>
|
26 |
<li>
|
27 |
<div class="input-box">
|
28 |
+
<input type="text" class="input-text required validate-cc-number" title="<?php echo $this->__('Credit Card number') ?>" id="<?php echo $_code; ?>_cc_number" name="payment[cc_number]" autocomplete="off" value="<?php echo $_ccNumber; ?>"<?php echo $_savedCards ? ' disabled="disabled"' : '' ?> />
|
29 |
</div>
|
30 |
</li>
|
31 |
<li>
|
32 |
<label for="<?php echo $_code; ?>_expiration" class="required"><em>*</em><?php echo $this->__('Expiration Date') ?></label>
|
33 |
<div class="input-box">
|
34 |
<div class="v-fix">
|
35 |
+
<select id="<?php echo $_code ?>_expiration" name="payment[cc_exp_month]" class="month validate-cc-exp required-entry"<?php echo $_savedCards ? ' disabled="disabled"' : '' ?>>
|
36 |
<?php foreach ($this->getCcMonths() as $k => $v): ?>
|
37 |
<option value="<?php echo $k ? $k : '' ?>"<?php if ($k == $_ccExpMonth): ?> selected="selected"<?php endif ?>><?php echo $v ?></option>
|
38 |
<?php endforeach ?>
|
39 |
</select>
|
40 |
</div>
|
41 |
<div class="v-fix">
|
42 |
+
<select id="<?php echo $_code ?>_expiration_yr" name="payment[cc_exp_year]" class="yearsavedCards required-entry"<?php echo $_savedCards ? ' disabled="disabled"' : '' ?>>
|
43 |
<?php foreach ($this->getCcYears() as $k => $v): ?>
|
44 |
<option value="<?php echo $k ? $k : '' ?>"<?php if ($k == $_ccExpYear): ?> selected="selected"<?php endif ?>><?php echo $v ?></option>
|
45 |
<?php endforeach ?>
|
51 |
<label for="<?php echo $_code ?>_cc_cid" class=""><em>*</em><?php echo $this->__('Card Verification Number') ?></label>
|
52 |
<div class="input-box">
|
53 |
<div class="v-fix">
|
54 |
+
<input type="text" title="<?php echo Mage::helper('core')->jsQuoteEscape($this->__('Card Verification Number')) ?>" class="input-text cvv required-entry" id="<?php echo $_code ?>_cc_cid" name="payment[cc_cid]" value="" <?php echo $_savedCards ? ' disabled="disabled"' : '' ?> />
|
55 |
</div>
|
56 |
<a href="#" class="cvv-what-is-this"><?php echo $this->__('What is this?') ?></a>
|
57 |
</div>
|
package.xml
CHANGED
@@ -1,18 +1,19 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>ZooZ_payment</name>
|
4 |
-
<version>3.0.0.
|
5 |
<stability>stable</stability>
|
6 |
<license>freeware</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Zooz payments package</summary>
|
10 |
<description>Zooz payments package</description>
|
11 |
-
<notes>
|
|
|
12 |
<authors><author><name>CreativeMinds</name><user>cminds</user><email>wojtek@cminds.com</email></author></authors>
|
13 |
<date>2016-06-01</date>
|
14 |
-
<time>
|
15 |
-
<contents><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="zoozpayments"><file name="sprite-credit-card-types.png" hash="6c2e0ed5488cfeb218ceb27c5577e852"/><file name="zooz-cc.png" hash="3b66a873519785b378acfb0b0e0c8412"/><file name="zoozpayments.css" hash="3416c8bf3064c3856115f0c1b633a67f"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="zoozpayments"><file name="jquery.creditCardValidator.js" hash="17fc482f5c8c4730f28e7d0bbcabe72b"/></dir></dir></target><target name="magecommunity"><dir name="Zooz"><dir name="Payments"><dir name="Block"><dir name="Customer"><file name="Creditcard.php" hash="40ed914093d4dd8505ac5c3896cd4105"/></dir><dir name="Form"><file name="Payments.php" hash="e0fa2a7923c08b38d1d78d233bd6f38e"/></dir><dir name="Info"><file name="Payments.php" hash="b59cf3509272c9d8fa57c806ddb864c1"/></dir></dir><file name="Exception.php" hash="e49547ad5ae8f5648c30c4fab6f606ee"/><dir name="Helper"><file name="Data.php" hash="6302290885cc3007da7e49d288e7998d"/></dir><dir name="Model"><file name="Api.php" hash="fa669ab525c505dddfe29beee0991837"/><file name="Config.php" hash="4e161d3ae3248235d7a4aa5144e60fe4"/><file name="Info.php" hash="c2b148a6ea1897c64050899a6fdc6a5a"/><file name="Ipn.php" hash="c70a448eca02e5b61e8d3464637b694e"/><dir name="Mysql4"><file name="Debug.php" hash="6e5bc2f93042ba4f016f15f81483daea"/></dir><file name="Observer.php" hash="1dc74ce8e949dabf811d567a069640d0"/><dir name="Payments"><file name="Cards.php" hash="927e304e987c4020ce46c8f0d0b53912"/><file name="Request.php" hash="7a0fb26596ceacc64f3aa01987f06feb"/><file name="Result.php" hash="c9608ca92bc7bbe60511fc11b5f8d79a"/><dir name="Source"><file name="Cctype.php" hash="87ad1d9fbfeabddb0b8b38bfb690ee7e"/><file name="PaymentAction.php" hash="6be437ff22f852f2eac556923a3afdf7"/><file name="PaymentMode.php" hash="f2872cc940adfe5351d24201ad094884"/></dir></dir><file name="Payments.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>ZooZ_payment</name>
|
4 |
+
<version>3.0.0.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>freeware</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Zooz payments package</summary>
|
10 |
<description>Zooz payments package</description>
|
11 |
+
<notes>added ip address to place call
|
12 |
+
fixed placing order ID in iframe call</notes>
|
13 |
<authors><author><name>CreativeMinds</name><user>cminds</user><email>wojtek@cminds.com</email></author></authors>
|
14 |
<date>2016-06-01</date>
|
15 |
+
<time>11:20:35</time>
|
16 |
+
<contents><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="zoozpayments"><file name="sprite-credit-card-types.png" hash="6c2e0ed5488cfeb218ceb27c5577e852"/><file name="zooz-cc.png" hash="3b66a873519785b378acfb0b0e0c8412"/><file name="zoozpayments.css" hash="3416c8bf3064c3856115f0c1b633a67f"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="zoozpayments"><file name="jquery.creditCardValidator.js" hash="17fc482f5c8c4730f28e7d0bbcabe72b"/></dir></dir></target><target name="magecommunity"><dir name="Zooz"><dir name="Payments"><dir name="Block"><dir name="Customer"><file name="Creditcard.php" hash="40ed914093d4dd8505ac5c3896cd4105"/></dir><dir name="Form"><file name="Payments.php" hash="e0fa2a7923c08b38d1d78d233bd6f38e"/></dir><dir name="Info"><file name="Payments.php" hash="b59cf3509272c9d8fa57c806ddb864c1"/></dir></dir><file name="Exception.php" hash="e49547ad5ae8f5648c30c4fab6f606ee"/><dir name="Helper"><file name="Data.php" hash="6302290885cc3007da7e49d288e7998d"/></dir><dir name="Model"><file name="Api.php" hash="fa669ab525c505dddfe29beee0991837"/><file name="Config.php" hash="4e161d3ae3248235d7a4aa5144e60fe4"/><file name="Info.php" hash="c2b148a6ea1897c64050899a6fdc6a5a"/><file name="Ipn.php" hash="c70a448eca02e5b61e8d3464637b694e"/><dir name="Mysql4"><file name="Debug.php" hash="6e5bc2f93042ba4f016f15f81483daea"/></dir><file name="Observer.php" hash="1dc74ce8e949dabf811d567a069640d0"/><dir name="Payments"><file name="Cards.php" hash="927e304e987c4020ce46c8f0d0b53912"/><file name="Request.php" hash="7a0fb26596ceacc64f3aa01987f06feb"/><file name="Result.php" hash="c9608ca92bc7bbe60511fc11b5f8d79a"/><dir name="Source"><file name="Cctype.php" hash="87ad1d9fbfeabddb0b8b38bfb690ee7e"/><file name="PaymentAction.php" hash="6be437ff22f852f2eac556923a3afdf7"/><file name="PaymentMode.php" hash="f2872cc940adfe5351d24201ad094884"/></dir></dir><file name="Payments.php" hash="ada53e3448928ce99831a25d4ab2049d"/><dir name="Resource"><dir name="Payments"><file name="Collection.php" hash="c6a4f347e06dc35562ac08444112b6c8"/></dir><file name="Payments.php" hash="b887885de7e101d492689c793c87be65"/></dir></dir><file name="UnavailableException.php" hash="2bfdd035f35d3dffaf44e6bcb9a4f6d6"/><dir name="controllers"><dir name="Adminhtml"><dir name="Zooz"><file name="PaymentController.php" hash="3aac1119e3e861a1ba2aae00b3d59048"/></dir></dir><file name="CustomerController.php" hash="bc18086abe1860e4bb5a686dc0569c06"/><file name="IpnController.php" hash="27fc0087901fe59220758e3848159ada"/><file name="PaymentController.php" hash="62c6927dc44f346e1482abce1218523e"/></dir><dir name="etc"><file name="config.xml" hash="16bc43b1b26d0cea47c37a18dfa42510"/><file name="system.xml" hash="7da86d74bdcbffec8a6db733064e6d87"/></dir><dir name="sql"><dir name="payments_setup"><file name="install-1.0.0.0.php" hash="2e240b26b7dc6d1434aa9f78d3107b5d"/><file name="upgrade-1.0.0.0-1.0.0.1.php" hash="d59299a49ba84795fdae33321b893b48"/><file name="upgrade-1.0.0.1-1.0.0.2.php" hash="9dd0a32f5674834d06845ab5167ff7b0"/><file name="upgrade-1.0.0.2-1.0.0.3.php" hash="78826e6ca8de98fa9f76a5f17df3ebe4"/><file name="upgrade-1.0.0.3-1.0.0.4.php" hash="b4ce3ed58d9d3678268a834d4857f875"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="zoozpayments"><dir name="form"><file name="payments.phtml" hash="08e8347be54fe60c7a6175c0d47b7c98"/></dir><dir name="info"><file name="payments.phtml" hash="5b26244b93e7c079e410159e8e5a7461"/><file name="pdf.phtml" hash="d63e867c1b2269b26d7a31af16da2372"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="payments.xml" hash="6823ee1d13c4cf86ea410d17d68d49c8"/></dir><dir name="template"><dir name="zoozpayments"><dir name="checkout"><dir name="onepage"><file name="payment.phtml" hash="edb64e1fbec271a5e940972d34b3330a"/></dir><file name=".DS_Store" hash="0de33780b8186e211ff7222a9bf9fa6e"/></dir><dir name="customer"><dir name="creditcard"><file name="edit.phtml" hash="b040d06945d191a2b84b61f2362bd86d"/><file name="iframe.phtml" hash="163fb4b0adf9e53547e20f765a365897"/><file name="list.phtml" hash="45073aac94bf0bb7a91f92ce94e37ab3"/></dir></dir><dir name="form"><dir name="payments"><file name="data.phtml" hash="8e3c31eda55c15a53cf12d85cec22be6"/><file name="iframe.phtml" hash="bd7e334e2a77d7a1cb4284a2cc126e9e"/><file name="new.phtml" hash="e77582655e13b495befb05a51be6ca2c"/><file name="saved.phtml" hash="f28a9a69b1082da04e660bf47c5cc7ac"/></dir><file name="payments.phtml" hash="dfd4ff9d4edb8eec8dd9f93382a14513"/></dir><dir name="info"><file name="payments.phtml" hash="141a8094bbeb6c95818f7b9d7dfcbc7c"/></dir><file name="redirect.phtml" hash="546a08a2999203ce90646d78f3857fe3"/><file name=".DS_Store" hash="d902c5d9c62c1d9af9b4f3f2154167e5"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Zooz_Payments.xml" hash="451f889f850d621228b70a8e24845068"/></dir></target></contents>
|
17 |
<compatible/>
|
18 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
19 |
</package>
|