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 | 2.5.3 |
Comparing to | |
See all releases |
Code changes from version 2.5.2 to 2.5.3
- app/code/community/RicardoMartins/PagSeguro/Model/System/Config/Backend/Token.php +3 -0
- app/code/community/RicardoMartins/PagSeguro/etc/config.xml +1 -1
- app/code/community/RicardoMartins/PagSeguro/etc/system.xml +1 -2
- app/design/adminhtml/base/default/layout/ricardomartins_pagseguro/pagseguro.xml +10 -0
- app/design/adminhtml/base/default/template/ricardomartins_pagseguro/form/directpayment.phtml +18 -0
- app/design/adminhtml/base/default/template/ricardomartins_pagseguro/form/info/cc.phtml +15 -0
- package.xml +4 -4
app/code/community/RicardoMartins/PagSeguro/Model/System/Config/Backend/Token.php
CHANGED
@@ -8,12 +8,14 @@
|
|
8 |
* @author Ricardo Martins
|
9 |
* @copyright Copyright (c) 2015 Ricardo Martins (http://r-martins.github.io/PagSeguro-Magento-Transparente/)
|
10 |
* @license https://opensource.org/licenses/MIT MIT License
|
|
|
11 |
*/
|
12 |
class RicardoMartins_PagSeguro_Model_System_Config_Backend_Token
|
13 |
extends Mage_Adminhtml_Model_System_Config_Backend_Encrypted
|
14 |
{
|
15 |
/**
|
16 |
* Decrypt and test current saved token
|
|
|
17 |
*/
|
18 |
public function _afterSave()
|
19 |
{
|
@@ -32,6 +34,7 @@ class RicardoMartins_PagSeguro_Model_System_Config_Backend_Token
|
|
32 |
* Test token by calling PagSeguro session API
|
33 |
* @param $email
|
34 |
* @param $token
|
|
|
35 |
*
|
36 |
* @return bool|string
|
37 |
*/
|
8 |
* @author Ricardo Martins
|
9 |
* @copyright Copyright (c) 2015 Ricardo Martins (http://r-martins.github.io/PagSeguro-Magento-Transparente/)
|
10 |
* @license https://opensource.org/licenses/MIT MIT License
|
11 |
+
* @deprecated 2.5.3 There is no official method to validate token at PagSeguro.
|
12 |
*/
|
13 |
class RicardoMartins_PagSeguro_Model_System_Config_Backend_Token
|
14 |
extends Mage_Adminhtml_Model_System_Config_Backend_Encrypted
|
15 |
{
|
16 |
/**
|
17 |
* Decrypt and test current saved token
|
18 |
+
* @deprecated 2.5.3 There is no official method to validate token at PagSeguro.
|
19 |
*/
|
20 |
public function _afterSave()
|
21 |
{
|
34 |
* Test token by calling PagSeguro session API
|
35 |
* @param $email
|
36 |
* @param $token
|
37 |
+
* @deprecated 2.5.3 There is no official method to validate token at PagSeguro.
|
38 |
*
|
39 |
* @return bool|string
|
40 |
*/
|
app/code/community/RicardoMartins/PagSeguro/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<RicardoMartins_PagSeguro>
|
5 |
-
<version>2.5.
|
6 |
</RicardoMartins_PagSeguro>
|
7 |
</modules>
|
8 |
<global>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<RicardoMartins_PagSeguro>
|
5 |
+
<version>2.5.3</version>
|
6 |
</RicardoMartins_PagSeguro>
|
7 |
</modules>
|
8 |
<global>
|
app/code/community/RicardoMartins/PagSeguro/etc/system.xml
CHANGED
@@ -51,8 +51,7 @@
|
|
51 |
<token translate="label">
|
52 |
<label>Token</label>
|
53 |
<frontend_type>obscure</frontend_type>
|
54 |
-
|
55 |
-
<backend_model>ricardomartins_pagseguro/system_config_backend_token</backend_model>
|
56 |
<sort_order>20</sort_order>
|
57 |
<show_in_default>1</show_in_default>
|
58 |
<show_in_website>1</show_in_website>
|
51 |
<token translate="label">
|
52 |
<label>Token</label>
|
53 |
<frontend_type>obscure</frontend_type>
|
54 |
+
<backend_model>adminhtml/system_config_backend_encrypted</backend_model>
|
|
|
55 |
<sort_order>20</sort_order>
|
56 |
<show_in_default>1</show_in_default>
|
57 |
<show_in_website>1</show_in_website>
|
app/design/adminhtml/base/default/layout/ricardomartins_pagseguro/pagseguro.xml
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<layout>
|
3 |
+
<adminhtml_sales_order_create_index>
|
4 |
+
<reference name="billing_method">
|
5 |
+
<action method="append">
|
6 |
+
<block helper="ricardomartins_pagseguro/getPagSeguroScriptBlock"/>
|
7 |
+
</action>
|
8 |
+
</reference>
|
9 |
+
</adminhtml_sales_order_create_index>
|
10 |
+
</layout>
|
app/design/adminhtml/base/default/template/ricardomartins_pagseguro/form/directpayment.phtml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$_helper = Mage::helper('ricardomartins_pagseguro');
|
3 |
+
?>
|
4 |
+
<input type="hidden" name="payment[sender_hash]"/>
|
5 |
+
<script type="text/javascript">
|
6 |
+
//<![CDATA[
|
7 |
+
PagSeguroDirectPayment.setSessionId('<?php echo $_helper->getSessionId();?>');
|
8 |
+
var iid = setInterval(function()
|
9 |
+
{
|
10 |
+
if(typeof PagSeguroDirectPayment != "undefined" && PagSeguroDirectPayment.ready){
|
11 |
+
console.log('PagSeguro ready');
|
12 |
+
|
13 |
+
clearInterval(iid);
|
14 |
+
RMPagSeguro.updateSenderHash();
|
15 |
+
}
|
16 |
+
}, 4000);
|
17 |
+
//]]>
|
18 |
+
</script>
|
app/design/adminhtml/base/default/template/ricardomartins_pagseguro/form/info/cc.phtml
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<strong><?php echo $this->escapeHtml($this->getMethod()->getTitle()) ?> (PagSeguro)</strong>
|
2 |
+
<?php if($info = $this->getInfo()): ?>
|
3 |
+
<br/>
|
4 |
+
<?php if($additional = $info->getAdditionalInformation()):?>
|
5 |
+
Id Transação: <?php echo (isset($additional['transaction_id']))?$this->escapeHtml($additional['transaction_id']):'Desconhecido';?>
|
6 |
+
<br/>
|
7 |
+
<?php endif;?>
|
8 |
+
Bandeira: <?php echo ucfirst($this->escapeHtml($info->getCcType()));?>
|
9 |
+
<br/>
|
10 |
+
Últimos 4 dígitos: <?php echo $this->escapeHtml($info->getCcLast4());?>
|
11 |
+
<?php if(isset($additional['installment_quantity']) && isset($additional['installment_value'])):?>
|
12 |
+
<br/>
|
13 |
+
Parcelas: <?php echo $this->escapeHtml($additional['installment_quantity']);?>x <?php echo Mage::helper('core')->formatCurrency($additional['installment_value']);?>
|
14 |
+
<?php endif;?>
|
15 |
+
<?php endif; ?>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>RicardoMartins_PagSeguro</name>
|
4 |
-
<version>2.5.
|
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>2016-
|
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="23c8de35776d54f9717327ba8520f1b6"/><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="f714d82e737808c49bbf623ff38c1823"/><file name="Internal.php" hash="5911252bc71b056c888a61df5f3bf58d"/><file name="Params.php" hash="8d614be2eafb974634a7108cf5311231"/></dir><dir name="Model"><file name="Abstract.php" hash="d0864beabaad0b8da84a4c0aadfbe85e"/><file name="Observer.php" hash="29a784cdb6203baf6b5f0abeeeda99ed"/><dir name="Payment"><file name="Cc.php" hash="b6201a7857ff683e660ae3ff566b1905"/></dir><dir name="Source"><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="
|
19 |
<compatible/>
|
20 |
<dependencies><required><php><min>5.2.1</min><max>5.7.5</max></php></required></dependencies>
|
21 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>RicardoMartins_PagSeguro</name>
|
4 |
+
<version>2.5.3</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>2016-07-03</date>
|
17 |
+
<time>14:53:28</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="23c8de35776d54f9717327ba8520f1b6"/><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="f714d82e737808c49bbf623ff38c1823"/><file name="Internal.php" hash="5911252bc71b056c888a61df5f3bf58d"/><file name="Params.php" hash="8d614be2eafb974634a7108cf5311231"/></dir><dir name="Model"><file name="Abstract.php" hash="d0864beabaad0b8da84a4c0aadfbe85e"/><file name="Observer.php" hash="29a784cdb6203baf6b5f0abeeeda99ed"/><dir name="Payment"><file name="Cc.php" hash="b6201a7857ff683e660ae3ff566b1905"/></dir><dir name="Source"><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="controllers"><file name="AjaxController.php" hash="89b915bbfc061beb7550a56248177c9f"/><file name="NotificationController.php" hash="e7056961e4ada5cc5614c5a40ef78a75"/><file name="TestController.php" hash="0e2c2bd2fc77ced55f880d1860e4318d"/></dir><dir name="etc"><file name="config.xml" hash="2f8dd09fa4a2735c229352da706a22aa"/><file name="system.xml" hash="cdb81843dc7f5023a2d35ca1fd0dcdd8"/></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="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="0ea9d4ff767a43d1393ddf1e2882a5da"/></dir><file name="cc.phtml" hash="1e5f98f09a867256ddfbd17b22320dcb"/><file name="directpayment.phtml" hash="ff5cb599a494f436024fd63a96f0420c"/><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"><file name="directpayment.phtml" hash="f87e23e166b4f9b7db8fa08db1de6c5b"/><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="29cd2dcb80c765d129bba99252ba532c"/></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="pagseguro"><file name="pagseguro.js" hash="e6d2349ef4b24d89d533bd362cd6360a"/></dir></dir></target></contents>
|
19 |
<compatible/>
|
20 |
<dependencies><required><php><min>5.2.1</min><max>5.7.5</max></php></required></dependencies>
|
21 |
</package>
|