Version Notes
Versão estável.
Os bugs devem ser reportados na área de Issues no github do projeto em https://github.com/r-martins/PagSeguro-Magento-Transparente
Download this release
Release Info
Developer | Ricardo Martins |
Extension | RicardoMartins_PagSeguro |
Version | 3.2.0 |
Comparing to | |
See all releases |
Code changes from version 3.1.0 to 3.2.0
- app/code/community/RicardoMartins/PagSeguro/Helper/Data.php +3 -0
- app/code/community/RicardoMartins/PagSeguro/Helper/Params.php +3 -2
- app/code/community/RicardoMartins/PagSeguro/Model/Abstract.php +1 -1
- app/code/community/RicardoMartins/PagSeguro/Model/Payment/Cc.php +1 -1
- app/code/community/RicardoMartins/PagSeguro/etc/config.xml +2 -1
- app/code/community/RicardoMartins/PagSeguro/etc/system.xml +11 -1
- app/design/adminhtml/base/default/template/ricardomartins_pagseguro/form/cc.phtml +2 -2
- app/design/frontend/base/default/template/ricardomartins_pagseguro/form/cc.phtml +2 -2
- js/pagseguro/pagseguro.js +12 -4
- package.xml +4 -4
app/code/community/RicardoMartins/PagSeguro/Helper/Data.php
CHANGED
@@ -30,6 +30,7 @@ class RicardoMartins_PagSeguro_Helper_Data extends Mage_Core_Helper_Abstract
|
|
30 |
const XML_PATH_PAYMENT_PAGSEGUROPRO_TEF_ACTIVE = 'payment/pagseguropro_tef/active';
|
31 |
const XML_PATH_PAYMENT_PAGSEGUROPRO_BOLETO_ACTIVE = 'payment/pagseguropro_boleto/active';
|
32 |
const XML_PATH_PAYMENT_PAGSEGURO_KEY = 'payment/pagseguropro/key';
|
|
|
33 |
|
34 |
/**
|
35 |
* Returns session ID from PagSeguro that will be used on JavaScript methods.
|
@@ -309,6 +310,8 @@ class RicardoMartins_PagSeguro_Helper_Data extends Mage_Core_Helper_Abstract
|
|
309 |
'PagSeguroSessionId' => $this->getSessionId(),
|
310 |
'is_admin' => Mage::app()->getStore()->isAdmin(),
|
311 |
'show_total' => Mage::getStoreConfigFlag(self::XML_PATH_PAYMENT_PAGSEGURO_CC_SHOW_TOTAL),
|
|
|
|
|
312 |
);
|
313 |
return json_encode($config);
|
314 |
}
|
30 |
const XML_PATH_PAYMENT_PAGSEGUROPRO_TEF_ACTIVE = 'payment/pagseguropro_tef/active';
|
31 |
const XML_PATH_PAYMENT_PAGSEGUROPRO_BOLETO_ACTIVE = 'payment/pagseguropro_boleto/active';
|
32 |
const XML_PATH_PAYMENT_PAGSEGURO_KEY = 'payment/pagseguropro/key';
|
33 |
+
const XML_PATH_PAYMENT_PAGSEGURO_CC_FORCE_INSTALLMENTS = 'payment/rm_pagseguro_cc/force_installments_selection';
|
34 |
|
35 |
/**
|
36 |
* Returns session ID from PagSeguro that will be used on JavaScript methods.
|
310 |
'PagSeguroSessionId' => $this->getSessionId(),
|
311 |
'is_admin' => Mage::app()->getStore()->isAdmin(),
|
312 |
'show_total' => Mage::getStoreConfigFlag(self::XML_PATH_PAYMENT_PAGSEGURO_CC_SHOW_TOTAL),
|
313 |
+
'force_installments_selection' =>
|
314 |
+
Mage::getStoreConfigFlag(self::XML_PATH_PAYMENT_PAGSEGURO_CC_FORCE_INSTALLMENTS)
|
315 |
);
|
316 |
return json_encode($config);
|
317 |
}
|
app/code/community/RicardoMartins/PagSeguro/Helper/Params.php
CHANGED
@@ -391,7 +391,7 @@ class RicardoMartins_PagSeguro_Helper_Params extends Mage_Core_Helper_Abstract
|
|
391 |
*/
|
392 |
private function _getCustomerCcDobValue(Mage_Customer_Model_Customer $customer, $payment)
|
393 |
{
|
394 |
-
$ccDobAttribute = Mage::getStoreConfig('payment/
|
395 |
|
396 |
if (empty($ccDobAttribute)) { //when asked with payment data
|
397 |
if (isset($payment['additional_information']['credit_card_owner_birthdate'])) {
|
@@ -399,7 +399,8 @@ class RicardoMartins_PagSeguro_Helper_Params extends Mage_Core_Helper_Abstract
|
|
399 |
}
|
400 |
}
|
401 |
|
402 |
-
$dob = $customer->getResource()->getAttribute($ccDobAttribute)->getFrontend()->getValue($customer);
|
|
|
403 |
|
404 |
|
405 |
return date('d/m/Y', strtotime($dob));
|
391 |
*/
|
392 |
private function _getCustomerCcDobValue(Mage_Customer_Model_Customer $customer, $payment)
|
393 |
{
|
394 |
+
$ccDobAttribute = Mage::getStoreConfig('payment/rm_pagseguro_cc/owner_dob_attribute');
|
395 |
|
396 |
if (empty($ccDobAttribute)) { //when asked with payment data
|
397 |
if (isset($payment['additional_information']['credit_card_owner_birthdate'])) {
|
399 |
}
|
400 |
}
|
401 |
|
402 |
+
// $dob = $customer->getResource()->getAttribute($ccDobAttribute)->getFrontend()->getValue($customer);
|
403 |
+
$dob = $payment->getOrder()->getData('customer_' . $ccDobAttribute);
|
404 |
|
405 |
|
406 |
return date('d/m/Y', strtotime($dob));
|
app/code/community/RicardoMartins/PagSeguro/Model/Abstract.php
CHANGED
@@ -200,7 +200,7 @@ class RicardoMartins_PagSeguro_Model_Abstract extends Mage_Payment_Model_Method_
|
|
200 |
case '1':
|
201 |
$return->setState(Mage_Sales_Model_Order::STATE_PENDING_PAYMENT);
|
202 |
$return->setIsCustomerNotified($this->getCode()!='pagseguro_cc');
|
203 |
-
if ($this->getCode()=='
|
204 |
$return->setStateChanged(false);
|
205 |
}
|
206 |
$return->setMessage(
|
200 |
case '1':
|
201 |
$return->setState(Mage_Sales_Model_Order::STATE_PENDING_PAYMENT);
|
202 |
$return->setIsCustomerNotified($this->getCode()!='pagseguro_cc');
|
203 |
+
if ($this->getCode()=='rm_pagseguro_cc') {
|
204 |
$return->setStateChanged(false);
|
205 |
}
|
206 |
$return->setMessage(
|
app/code/community/RicardoMartins/PagSeguro/Model/Payment/Cc.php
CHANGED
@@ -80,7 +80,7 @@ class RicardoMartins_PagSeguro_Model_Payment_Cc extends RicardoMartins_PagSeguro
|
|
80 |
}
|
81 |
|
82 |
//DOB
|
83 |
-
$ownerDobAttribute = Mage::getStoreConfig('payment/
|
84 |
if (empty($ownerDobAttribute)) {
|
85 |
$info->setAdditionalInformation(
|
86 |
'credit_card_owner_birthdate',
|
80 |
}
|
81 |
|
82 |
//DOB
|
83 |
+
$ownerDobAttribute = Mage::getStoreConfig('payment/rm_pagseguro_cc/owner_dob_attribute');
|
84 |
if (empty($ownerDobAttribute)) {
|
85 |
$info->setAdditionalInformation(
|
86 |
'credit_card_owner_birthdate',
|
app/code/community/RicardoMartins/PagSeguro/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<RicardoMartins_PagSeguro>
|
5 |
-
<version>3.
|
6 |
</RicardoMartins_PagSeguro>
|
7 |
</modules>
|
8 |
<global>
|
@@ -88,6 +88,7 @@
|
|
88 |
<group_restriction>0</group_restriction>
|
89 |
<info_brl>1</info_brl>
|
90 |
<total_installments>0</total_installments>
|
|
|
91 |
</rm_pagseguro_cc>
|
92 |
<rm_pagseguro>
|
93 |
<customer_cpf_attribute>taxvat</customer_cpf_attribute>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<RicardoMartins_PagSeguro>
|
5 |
+
<version>3.2.0</version>
|
6 |
</RicardoMartins_PagSeguro>
|
7 |
</modules>
|
8 |
<global>
|
88 |
<group_restriction>0</group_restriction>
|
89 |
<info_brl>1</info_brl>
|
90 |
<total_installments>0</total_installments>
|
91 |
+
<force_installments_selection>0</force_installments_selection>
|
92 |
</rm_pagseguro_cc>
|
93 |
<rm_pagseguro>
|
94 |
<customer_cpf_attribute>taxvat</customer_cpf_attribute>
|
app/code/community/RicardoMartins/PagSeguro/etc/system.xml
CHANGED
@@ -304,7 +304,7 @@
|
|
304 |
</depends>
|
305 |
</customer_groups>
|
306 |
<show_total>
|
307 |
-
<label>
|
308 |
<frontend_type>select</frontend_type>
|
309 |
<sort_order>70</sort_order>
|
310 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
@@ -313,6 +313,16 @@
|
|
313 |
<show_in_store>1</show_in_store>
|
314 |
<comment><![CDATA[Quando habilitado, o valor total do pedido é exibido junto com as informações de parcelamento.]]></comment>
|
315 |
</show_total>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
</fields>
|
317 |
</rm_pagseguro_cc>
|
318 |
</groups>
|
304 |
</depends>
|
305 |
</customer_groups>
|
306 |
<show_total>
|
307 |
+
<label>Exibir valor total no seletor de parcelas</label>
|
308 |
<frontend_type>select</frontend_type>
|
309 |
<sort_order>70</sort_order>
|
310 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
313 |
<show_in_store>1</show_in_store>
|
314 |
<comment><![CDATA[Quando habilitado, o valor total do pedido é exibido junto com as informações de parcelamento.]]></comment>
|
315 |
</show_total>
|
316 |
+
<force_installments_selection>
|
317 |
+
<label>Forçar seleção de parcelas</label>
|
318 |
+
<frontend_type>select</frontend_type>
|
319 |
+
<sort_order>80</sort_order>
|
320 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
321 |
+
<show_in_default>1</show_in_default>
|
322 |
+
<show_in_website>1</show_in_website>
|
323 |
+
<show_in_store>1</show_in_store>
|
324 |
+
<comment><![CDATA[Quando habilitado, forçará o cliente a selecionar o valor de parcelas ao invés de deixar pagamento a vista pre-selecionado.]]></comment>
|
325 |
+
</force_installments_selection>
|
326 |
</fields>
|
327 |
</rm_pagseguro_cc>
|
328 |
</groups>
|
app/design/adminhtml/base/default/template/ricardomartins_pagseguro/form/cc.phtml
CHANGED
@@ -77,10 +77,10 @@ $_installments = (!$_installments)?'null':$_installments;
|
|
77 |
</div>
|
78 |
</li>
|
79 |
<li id="<?php echo $_code ?>_cc_installments_div">
|
80 |
-
<label for="<?php echo $_code ?>_cc_installments"><?php echo $this->__('Installments') ?></label>
|
81 |
<div class="input-box">
|
82 |
<div class="v-fix">
|
83 |
-
<select name="payment[ps_cc_installments]" id="<?php echo $_code ?>_cc_installments" class="required">
|
84 |
<option value="">Informe os dados do cartão para calcular</option>
|
85 |
</select>
|
86 |
</div>
|
77 |
</div>
|
78 |
</li>
|
79 |
<li id="<?php echo $_code ?>_cc_installments_div">
|
80 |
+
<label for="<?php echo $_code ?>_cc_installments" class="required"><em>*</em><?php echo $this->__('Installments') ?></label>
|
81 |
<div class="input-box">
|
82 |
<div class="v-fix">
|
83 |
+
<select name="payment[ps_cc_installments]" id="<?php echo $_code ?>_cc_installments" class="required-entry">
|
84 |
<option value="">Informe os dados do cartão para calcular</option>
|
85 |
</select>
|
86 |
</div>
|
app/design/frontend/base/default/template/ricardomartins_pagseguro/form/cc.phtml
CHANGED
@@ -76,10 +76,10 @@ $_installments = (!$_installments)?'null':$_installments;
|
|
76 |
</div>
|
77 |
</li>
|
78 |
<li id="<?php echo $_code ?>_cc_installments_div">
|
79 |
-
<label for="<?php echo $_code ?>_cc_installments"><?php echo $this->__('Installments') ?></label>
|
80 |
<div class="input-box">
|
81 |
<div class="v-fix">
|
82 |
-
<select name="payment[ps_cc_installments]" id="<?php echo $_code ?>_cc_installments" class="required">
|
83 |
<option value="">Informe os dados do cartão para calcular</option>
|
84 |
</select>
|
85 |
</div>
|
76 |
</div>
|
77 |
</li>
|
78 |
<li id="<?php echo $_code ?>_cc_installments_div">
|
79 |
+
<label for="<?php echo $_code ?>_cc_installments" class="required"><em>*</em><?php echo $this->__('Installments') ?></label>
|
80 |
<div class="input-box">
|
81 |
<div class="v-fix">
|
82 |
+
<select name="payment[ps_cc_installments]" id="<?php echo $_code ?>_cc_installments" class="required-entry">
|
83 |
<option value="">Informe os dados do cartão para calcular</option>
|
84 |
</select>
|
85 |
</div>
|
js/pagseguro/pagseguro.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
* PagSeguro Transparente para Magento
|
3 |
* @author Ricardo Martins <ricardo@ricardomartins.net.br>
|
4 |
* @link https://github.com/r-martins/PagSeguro-Magento-Transparente
|
5 |
-
* @version 3.
|
6 |
*/
|
7 |
|
8 |
RMPagSeguro = Class.create({
|
@@ -66,9 +66,9 @@ RMPagSeguro = Class.create({
|
|
66 |
return;
|
67 |
}
|
68 |
this.grandTotal = grandTotal;
|
69 |
-
if(!selectedInstallment){
|
70 |
-
|
71 |
-
}
|
72 |
|
73 |
brandName = RMPagSeguroObj.brand.name;
|
74 |
PagSeguroDirectPayment.getInstallments({
|
@@ -80,6 +80,14 @@ RMPagSeguro = Class.create({
|
|
80 |
// console.log(response.installments);
|
81 |
var b = response.installments[RMPagSeguroObj.brand.name];
|
82 |
parcelsDrop.length = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
for(var x=0; x < b.length; x++){
|
84 |
var option = document.createElement('option');
|
85 |
option.text = b[x].quantity + "x de R$" + b[x].installmentAmount.toFixed(2).toString().replace('.',',');
|
2 |
* PagSeguro Transparente para Magento
|
3 |
* @author Ricardo Martins <ricardo@ricardomartins.net.br>
|
4 |
* @link https://github.com/r-martins/PagSeguro-Magento-Transparente
|
5 |
+
* @version 3.2.0
|
6 |
*/
|
7 |
|
8 |
RMPagSeguro = Class.create({
|
66 |
return;
|
67 |
}
|
68 |
this.grandTotal = grandTotal;
|
69 |
+
// if(!selectedInstallment){
|
70 |
+
// selectedInstallment = 1;
|
71 |
+
// }
|
72 |
|
73 |
brandName = RMPagSeguroObj.brand.name;
|
74 |
PagSeguroDirectPayment.getInstallments({
|
80 |
// console.log(response.installments);
|
81 |
var b = response.installments[RMPagSeguroObj.brand.name];
|
82 |
parcelsDrop.length = 0;
|
83 |
+
|
84 |
+
if(RMPagSeguroObj.config.force_installments_selection){
|
85 |
+
var option = document.createElement('option');
|
86 |
+
option.text = "Selecione a quantidade de parcelas";
|
87 |
+
option.value = "";
|
88 |
+
parcelsDrop.add(option);
|
89 |
+
}
|
90 |
+
|
91 |
for(var x=0; x < b.length; x++){
|
92 |
var option = document.createElement('option');
|
93 |
option.text = b[x].quantity + "x de R$" + b[x].installmentAmount.toFixed(2).toString().replace('.',',');
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>RicardoMartins_PagSeguro</name>
|
4 |
-
<version>3.
|
5 |
<stability>stable</stability>
|
6 |
<license>MIT</license>
|
7 |
<channel>community</channel>
|
@@ -13,9 +13,9 @@ Os dados do cartão são enviados para o site do pagseguro de forma segu
|
|
13 |

|
14 |
Os bugs devem ser reportados na área de Issues no github do projeto em https://github.com/r-martins/PagSeguro-Magento-Transparente</notes>
|
15 |
<authors><author><name>Ricardo Martins</name><user>MAG001517858</user><email>ricardo@ricardomartins.info</email></author></authors>
|
16 |
-
<date>2017-
|
17 |
-
<time>
|
18 |
-
<contents><target name="magecommunity"><dir name="RicardoMartins"><dir name="PagSeguro"><dir name="Block"><dir name="Form"><dir name="Cc"><file name="Dob.php" hash="ed45c9f5576c289897eb5c86a46c6d85"/></dir><file name="Cc.php" hash="be21c9528c260dd377ddc67bd4ed329f"/><file name="Directpayment.php" hash="98ba4fb562b4ad777dc20b15ca345381"/><dir name="Info"><file name="Cc.php" hash="ef4952bfb9d12dae0b6ce13afeb0d1bb"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="
|
19 |
<compatible/>
|
20 |
<dependencies><required><php><min>5.2.1</min><max>7.5.0</max></php></required></dependencies>
|
21 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>RicardoMartins_PagSeguro</name>
|
4 |
+
<version>3.2.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>MIT</license>
|
7 |
<channel>community</channel>
|
13 |

|
14 |
Os bugs devem ser reportados na área de Issues no github do projeto em https://github.com/r-martins/PagSeguro-Magento-Transparente</notes>
|
15 |
<authors><author><name>Ricardo Martins</name><user>MAG001517858</user><email>ricardo@ricardomartins.info</email></author></authors>
|
16 |
+
<date>2017-05-10</date>
|
17 |
+
<time>09:14:14</time>
|
18 |
+
<contents><target name="magecommunity"><dir name="RicardoMartins"><dir name="PagSeguro"><dir name="Block"><dir name="Form"><dir name="Cc"><file name="Dob.php" hash="ed45c9f5576c289897eb5c86a46c6d85"/></dir><file name="Cc.php" hash="be21c9528c260dd377ddc67bd4ed329f"/><file name="Directpayment.php" hash="98ba4fb562b4ad777dc20b15ca345381"/><dir name="Info"><file name="Cc.php" hash="ef4952bfb9d12dae0b6ce13afeb0d1bb"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="0dd3cb536116e4e39417955f1c7ec5e2"/><file name="Internal.php" hash="faed0e7778904c2b74a0632c1ae2f844"/><file name="Params.php" hash="fbbeced5affa1a64b8392af5bea123c7"/></dir><dir name="Model"><file name="Abstract.php" hash="15a6b8a684033b6276ad6f4c03682808"/><file name="Observer.php" hash="6a9d4a53e3cc3c527940d7603b0b1e40"/><dir name="Payment"><file name="Cc.php" hash="e69590afe338c3caa101719b9b941b21"/><file name="Ccview.php" hash="0e8ff1dd7156934d0faa6062900a9cb1"/></dir><dir name="Source"><file name="Ccbrand.php" hash="d9696c3a2854d5e07fb96af55929e738"/><dir name="Customer"><dir name="Address"><dir name="Attributes"><file name="Optional.php" hash="cb7cc6beb016941997051a9d5eb1014c"/></dir><file name="Attributes.php" hash="0ffab3cf1d51871f7d57d95dd95822ec"/></dir><file name="Attributes.php" hash="96c7da94017a8b38bd3804e9b0401a58"/><file name="Cpf.php" hash="da6e6525163d2ba954d69c687d101d7d"/><file name="Dob.php" hash="f82a41da22e5a84e77c35ff91d7dfab9"/></dir><file name="Paymentmethods.php" hash="88897d21a7b5217f834eda0daead22c3"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="Token.php" hash="9d099f156f5bd6b18c8f315954da7b7f"/></dir><dir name="Source"><dir name="Customer"><file name="Groups.php" hash="f08bac32afcde8078a098446db79bc65"/></dir></dir></dir></dir></dir><dir name="Test"><dir name="Helper"><file name="Params.php" hash="a596ea4060cdfe0a4d7e981d9543301f"/></dir></dir><dir name="controllers"><file name="AjaxController.php" hash="c7db6498379d63ef44a3848af6daf987"/><file name="NotificationController.php" hash="e7056961e4ada5cc5614c5a40ef78a75"/><file name="TestController.php" hash="19594af040ac8e903d91e90d608188be"/></dir><dir name="data"><dir name="ricardomartins_pagseguro_setup"><file name="data-install-3.0.0.php" hash="038f4e1d3ff6e8b18b46c356f8499025"/></dir></dir><dir name="etc"><file name="config.xml" hash="e214c289b82c8f81f025957bebe60f42"/><file name="system.xml" hash="642efacc3ef633720798cb9e18ea2462"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="RicardoMartins_PagSeguro.xml" hash="82d8294eccac1fb4047f27566b0c9f2a"/></dir></target><target name="magelocale"><dir name="pt_BR"><file name="RicardoMartins_PagSeguro.csv" hash="84a6cc4fb73769ac822c9e8e22b8cec8"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="pagseguro"><dir><dir name="selo"><file name="brflag.png" hash="ed8f0f1d2cd9cd7bc9a8584af417601e"/><file name="selo01_160x90.gif" hash="e6729bb969abb20588f134f7d29ea0ec"/><file name="selo01_200x60.gif" hash="e91ed131018bae7d9abc2cc1a72f539b"/><file name="selo01_300x60.gif" hash="13b07e35250b30a61c86c98815e3310c"/><file name="selo02_160x90.gif" hash="4e65530d2c42bae4e5fab617a4d0afdf"/><file name="selo02_200x60.gif" hash="ba629a85cef8982423c7679a4875283c"/><file name="selo02_300x60.gif" hash="5827aca40455f22caffee1392917f16c"/><file name="selo03_160x90.gif" hash="e3c69ace0991d7841728c6203fc305bf"/><file name="selo03_200x60.gif" hash="63135b65df64a70629748d66f5c0c453"/><file name="selo03_300x60.gif" hash="e88f1529f2d27d4732cd7c374752618e"/><file name="selo04_160x90.gif" hash="8e71cb1942c15427ba96ac21aacdb9d6"/><file name="selo04_200x60.gif" hash="f08b80b40541e35491a8d966cb420c78"/><file name="selo04_300x60.gif" hash="43f9fc4ad730111654777c26059e9fbf"/></dir></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="ricardomartins_pagseguro"><dir><dir name="form"><dir name="cc"><file name="dob.phtml" hash="0545c2e8967213c298802723d9b1a1a2"/></dir><file name="cc.phtml" hash="f82b13a41b24d5acae5f5da5a8002f1c"/><file name="directpayment.phtml" hash="754716867f9bb46edd6942a45997f666"/><dir name="info"><file name="cc.phtml" hash="0a3aa78e0775cd51bb7a168b813dd466"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="ricardomartins_pagseguro"><dir><dir name="form"><dir name="cc"><file name="dob.phtml" hash="0545c2e8967213c298802723d9b1a1a2"/></dir><file name="cc.phtml" hash="aa72e48d34ecd4c3f3f8b476774c9942"/><file name="directpayment.phtml" hash="2b6de8deb0560a2d0a9898e887bf1a84"/><dir name="info"><file name="cc.phtml" hash="0a3aa78e0775cd51bb7a168b813dd466"/></dir></dir></dir></dir></dir><dir name="layout"><dir name="ricardomartins_pagseguro"><file name="pagseguro.xml" hash="dabe29bc130ac063b1715a66f979b131"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="pagseguro"><file name="card.js" hash="2446373da8bcf1712515d85ad481a464"/><file name="pagseguro.js" hash="0569c16bb5747f73da80aff0c328ce96"/></dir></dir></target></contents>
|
19 |
<compatible/>
|
20 |
<dependencies><required><php><min>5.2.1</min><max>7.5.0</max></php></required></dependencies>
|
21 |
</package>
|