Version Notes
Buscapé Pagamento Digital é compatível com Magento Enterprise Edition 1.7.0.0 ou superior, Professional Edition 1.9.0.0 ou superior, e Magento Community Edition 1.3.3.0 ou superior.
Download this release
Release Info
Developer | Adriano Aguiar |
Extension | Buscape_PagamentoDigital |
Version | 0.1.2 |
Comparing to | |
See all releases |
Code changes from version 0.1.1 to 0.1.2
- app/design/frontend/base/default/template/buscape/pagamentodigital/payment.phtml +34 -19
- app/design/frontend/default/default/template/buscape/pagamentodigital/payment.phtml +32 -18
- package.xml +6 -6
- skin/frontend/default/default/images/buscape/pagamentodigital/close.png +0 -0
- skin/frontend/default/default/images/buscape/pagamentodigital/overlay.png +0 -0
app/design/frontend/base/default/template/buscape/pagamentodigital/payment.phtml
CHANGED
@@ -19,6 +19,20 @@
|
|
19 |
*/
|
20 |
?>
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
<div class="page-head">
|
23 |
<h2 class="sub-title">Finalizando sua compra com Pagamento Digital</h2>
|
24 |
</div>
|
@@ -26,30 +40,31 @@
|
|
26 |
<tr>
|
27 |
<td style="width:100%">
|
28 |
Sua compra está em processo de finalização.<br />
|
29 |
-
Caso a página de finalização de pagamento não se inicie automaticamente, <a href="#
|
30 |
-
<object type="application/x-shockwave-flash" data="https://www.pagamentodigital.com.br/site/banner/campanhas/_24x/05/PD_Institucional_468x60.swf?oas=https://www.pagamentodigital.com.br" width="468" height="60"
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
</div>
|
36 |
-
|
37 |
<?php $this->getPayment(); ?>
|
38 |
|
39 |
</td>
|
40 |
</tr>
|
41 |
</table>
|
42 |
-
|
43 |
<script type="text/javascript">
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
jQuery('#pd_form').submit();
|
53 |
-
});
|
54 |
-
|
55 |
</script>
|
19 |
*/
|
20 |
?>
|
21 |
|
22 |
+
<style>
|
23 |
+
|
24 |
+
#overlay{
|
25 |
+
background-image: url(<?php echo $this->getSkinUrl('images/buscape/pagamentodigital/overlay.png')?>);
|
26 |
+
display:block;
|
27 |
+
position: fixed;
|
28 |
+
top: 0px;
|
29 |
+
left: 0px;
|
30 |
+
width: 100%;
|
31 |
+
height: 100%;
|
32 |
+
z-index: 9999;
|
33 |
+
}
|
34 |
+
|
35 |
+
</style>
|
36 |
<div class="page-head">
|
37 |
<h2 class="sub-title">Finalizando sua compra com Pagamento Digital</h2>
|
38 |
</div>
|
40 |
<tr>
|
41 |
<td style="width:100%">
|
42 |
Sua compra está em processo de finalização.<br />
|
43 |
+
Caso a página de finalização de pagamento não se inicie automaticamente, <a href="#" id="pd_lightbox">Clique Aqui</a><br /><br />
|
44 |
+
<object type="application/x-shockwave-flash" data="https://www.pagamentodigital.com.br/site/banner/campanhas/_24x/05/PD_Institucional_468x60.swf?oas=https://www.pagamentodigital.com.br" width="468" height="60">
|
45 |
+
<param name="movie" value="https://www.pagamentodigital.com.br/site/banner/campanhas/_24x/05/PD_Institucional_468x60.swf?oas=https://www.pagamentodigital.com.br" />
|
46 |
+
<param name="wmode" value="transparent"/>
|
47 |
+
</object>
|
48 |
+
<div id="overlay">
|
49 |
+
<center>
|
50 |
+
<div id="lightbox" style="padding: 10px;background-color: #fff;width: 980px;margin-top: 50px" >
|
51 |
+
<img src="<?php echo $this->getSkinUrl('images/buscape/pagamentodigital/close.png'); ?>" style="position: relative;margin-left: 970px;margin-top: -20px;" />
|
52 |
+
<iframe name="pd_frame" width="970" height="650" style="border:0px" ></iframe>
|
53 |
+
</div>
|
54 |
+
</center>
|
55 |
</div>
|
|
|
56 |
<?php $this->getPayment(); ?>
|
57 |
|
58 |
</td>
|
59 |
</tr>
|
60 |
</table>
|
|
|
61 |
<script type="text/javascript">
|
62 |
+
document.getElementById('pd_form').setAttribute("target", "pd_frame");
|
63 |
+
document.getElementById('pd_form').submit();
|
64 |
+
document.getElementById('overlay').onclick = function (){
|
65 |
+
this.style.display = "none";
|
66 |
+
};
|
67 |
+
document.getElementById('pd_lightbox').onclick = function (){
|
68 |
+
document.getElementById('overlay').style.display = "block";
|
69 |
+
};
|
|
|
|
|
|
|
70 |
</script>
|
app/design/frontend/default/default/template/buscape/pagamentodigital/payment.phtml
CHANGED
@@ -18,6 +18,21 @@
|
|
18 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
*/
|
20 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
<div class="page-head">
|
22 |
<h2 class="sub-title">Finalizando sua compra com Pagamento Digital</h2>
|
23 |
</div>
|
@@ -25,30 +40,29 @@
|
|
25 |
<tr>
|
26 |
<td style="width:100%">
|
27 |
Sua compra está em processo de finalização.<br />
|
28 |
-
Caso a página de finalização de pagamento não se inicie automaticamente, <a href="#
|
29 |
<object type="application/x-shockwave-flash" data="https://www.pagamentodigital.com.br/site/banner/campanhas/_24x/05/PD_Institucional_468x60.swf?oas=https://www.pagamentodigital.com.br" width="468" height="60"><param name="movie" value="https://www.pagamentodigital.com.br/site/banner/campanhas/_24x/05/PD_Institucional_468x60.swf?oas=https://www.pagamentodigital.com.br" /><param name="wmode" value="transparent"/></object>
|
30 |
-
<div
|
31 |
-
<
|
32 |
-
<
|
33 |
-
|
|
|
|
|
|
|
|
|
34 |
</div>
|
35 |
-
|
36 |
<?php $this->getPayment(); ?>
|
37 |
|
38 |
</td>
|
39 |
</tr>
|
40 |
</table>
|
41 |
-
|
42 |
<script type="text/javascript">
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
jQuery('#pd_form').submit();
|
52 |
-
});
|
53 |
-
|
54 |
</script>
|
18 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
19 |
*/
|
20 |
?>
|
21 |
+
|
22 |
+
<style>
|
23 |
+
|
24 |
+
#overlay{
|
25 |
+
background-image: url(<?php echo $this->getSkinUrl('images/buscape/pagamentodigital/overlay.png')?>);
|
26 |
+
display:block;
|
27 |
+
position: fixed;
|
28 |
+
top: 0px;
|
29 |
+
left: 0px;
|
30 |
+
width: 100%;
|
31 |
+
height: 100%;
|
32 |
+
z-index: 9999;
|
33 |
+
}
|
34 |
+
|
35 |
+
</style>
|
36 |
<div class="page-head">
|
37 |
<h2 class="sub-title">Finalizando sua compra com Pagamento Digital</h2>
|
38 |
</div>
|
40 |
<tr>
|
41 |
<td style="width:100%">
|
42 |
Sua compra está em processo de finalização.<br />
|
43 |
+
Caso a página de finalização de pagamento não se inicie automaticamente, <a href="#" id="pd_lightbox">Clique Aqui</a><br /><br />
|
44 |
<object type="application/x-shockwave-flash" data="https://www.pagamentodigital.com.br/site/banner/campanhas/_24x/05/PD_Institucional_468x60.swf?oas=https://www.pagamentodigital.com.br" width="468" height="60"><param name="movie" value="https://www.pagamentodigital.com.br/site/banner/campanhas/_24x/05/PD_Institucional_468x60.swf?oas=https://www.pagamentodigital.com.br" /><param name="wmode" value="transparent"/></object>
|
45 |
+
<div id="overlay">
|
46 |
+
<center>
|
47 |
+
<div id="lightbox" style="padding: 10px;background-color: #fff;width: 980px;margin-top: 50px" >
|
48 |
+
|
49 |
+
<img src="<?php echo $this->getSkinUrl('images/buscape/pagamentodigital/close.png'); ?>" style="position: relative;margin-left: 970px;margin-top: -20px;" />
|
50 |
+
<iframe name="pd_frame" width="970" height="650" style="border:0px" ></iframe>
|
51 |
+
</div>
|
52 |
+
</center>
|
53 |
</div>
|
|
|
54 |
<?php $this->getPayment(); ?>
|
55 |
|
56 |
</td>
|
57 |
</tr>
|
58 |
</table>
|
|
|
59 |
<script type="text/javascript">
|
60 |
+
document.getElementById('pd_form').setAttribute("target", "pd_frame");
|
61 |
+
document.getElementById('pd_form').submit();
|
62 |
+
document.getElementById('overlay').onclick = function (){
|
63 |
+
this.style.display = "none";
|
64 |
+
};
|
65 |
+
document.getElementById('pd_lightbox').onclick = function (){
|
66 |
+
document.getElementById('overlay').style.display = "block";
|
67 |
+
};
|
|
|
|
|
|
|
68 |
</script>
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Buscape_PagamentoDigital</name>
|
4 |
-
<version>0.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -9,10 +9,10 @@
|
|
9 |
<summary>Extensão Buscapé Pagamento Digital para Magento</summary>
|
10 |
<description>O Pagamento Digital é um serviço completo de soluções de pagamento. Com nossa tecnologia, temos um canal direto de comunicação com bancos e operadoras de cartões de crédito ( Visa 12x, Mastercard 12x, American Express 12x, Aura 24x, Diners 12x, HiperCard 12x, Boleto Bancário, Transferência online para os bancos Itaú, Bradesco e Banco do Brasil e também com seu Saldo Virtual Pagamento Digital), fazendo com que todas as transações no ambiente Pagamento Digital sejam seguras.</description>
|
11 |
<notes>Buscapé Pagamento Digital é compatível com Magento Enterprise Edition 1.7.0.0 ou superior, Professional Edition 1.9.0.0 ou superior, e Magento Community Edition 1.3.3.0 ou superior.</notes>
|
12 |
-
<authors><author><name>Adriano Aguiar</name><user>
|
13 |
-
<date>
|
14 |
-
<time>
|
15 |
-
<contents><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="buscape_pagamentodigital.xml" hash="1f81830b46aeb06609b472ceb9b04d04"/></dir><dir name="template"><dir name="buscape"><dir name="pagamentodigital"><dir name="form"><file name="geral.phtml" hash="4077fbea0f7e552e9cff7f895f0b49fe"/><file name="prazo.phtml" hash="837167fb2e1ff177b9ef18039557281e"/><file name="vista.phtml" hash="5168da9e7a845577e0fe58a613c2f674"/></dir><file name="
|
16 |
<compatible/>
|
17 |
-
<dependencies
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Buscape_PagamentoDigital</name>
|
4 |
+
<version>0.1.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
9 |
<summary>Extensão Buscapé Pagamento Digital para Magento</summary>
|
10 |
<description>O Pagamento Digital é um serviço completo de soluções de pagamento. Com nossa tecnologia, temos um canal direto de comunicação com bancos e operadoras de cartões de crédito ( Visa 12x, Mastercard 12x, American Express 12x, Aura 24x, Diners 12x, HiperCard 12x, Boleto Bancário, Transferência online para os bancos Itaú, Bradesco e Banco do Brasil e também com seu Saldo Virtual Pagamento Digital), fazendo com que todas as transações no ambiente Pagamento Digital sejam seguras.</description>
|
11 |
<notes>Buscapé Pagamento Digital é compatível com Magento Enterprise Edition 1.7.0.0 ou superior, Professional Edition 1.9.0.0 ou superior, e Magento Community Edition 1.3.3.0 ou superior.</notes>
|
12 |
+
<authors><author><name>Adriano Aguiar</name><user>adrianoaguiar</user><email>adrianoaguiaralves@gmail.com</email></author></authors>
|
13 |
+
<date>2012-02-01</date>
|
14 |
+
<time>17:21:19</time>
|
15 |
+
<contents><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="buscape_pagamentodigital.xml" hash="1f81830b46aeb06609b472ceb9b04d04"/></dir><dir name="template"><dir name="buscape"><dir name="pagamentodigital"><file name="error.phtml" hash="7b3cdbd94f67af52964f5f3cc84ee0d5"/><dir name="form"><file name="geral.phtml" hash="4077fbea0f7e552e9cff7f895f0b49fe"/><file name="prazo.phtml" hash="837167fb2e1ff177b9ef18039557281e"/><file name="vista.phtml" hash="5168da9e7a845577e0fe58a613c2f674"/></dir><file name="head.phtml" hash="8498491865368b05b5f92f2eeb45a873"/><file name="payment.phtml" hash="89a8dcdc2aec8c7ea91b592cb8c368cd"/><file name="return.phtml" hash="25d12759d131c86cc81d2c19637d5f64"/></dir></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="buscape_pagamentodigital.xml" hash="1f81830b46aeb06609b472ceb9b04d04"/></dir><dir name="template"><dir name="buscape"><dir name="pagamentodigital"><file name="error.phtml" hash="7b3cdbd94f67af52964f5f3cc84ee0d5"/><dir name="form"><file name="geral.phtml" hash="4077fbea0f7e552e9cff7f895f0b49fe"/><file name="prazo.phtml" hash="837167fb2e1ff177b9ef18039557281e"/><file name="vista.phtml" hash="5168da9e7a845577e0fe58a613c2f674"/></dir><file name="head.phtml" hash="8498491865368b05b5f92f2eeb45a873"/><file name="payment.phtml" hash="3f64184dd55ed9c8c0c288b522efda5c"/><file name="return.phtml" hash="25d12759d131c86cc81d2c19637d5f64"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Buscape_PagamentoDigital.xml" hash="4b7fff0bb6f034c600fb8fd084c5cf5a"/></dir></target><target name="magecommunity"><dir name="Buscape"><dir name="PagamentoDigital"><dir name="Block"><file name="Error.php" hash="0957c100babdd4ebe41a195840e188bb"/><dir name="Form"><file name="Geral.php" hash="aeb083bfedc4bb426827fa3959eec112"/><file name="Prazo.php" hash="2dbf3b07ce78406141d2f6bb4adb0af3"/><file name="Vista.php" hash="a30e9c0f19f7118cf0a746870c36e1bd"/></dir><dir name="Html"><file name="Head.php" hash="7b42cb901a54b3d8652c7e248984da2d"/></dir><file name="Link.php" hash="e69fe88ec62ffe80bd7622d2c56dcb89"/><file name="Payment.php" hash="cbd3b51a41274e59ba8e11c844074e98"/><file name="Redirect.php" hash="c8776ddc29afba919ea0fd4fbf114a6b"/><file name="Return.php" hash="74fc99f0c684186bfc2cf3092274b220"/></dir><dir name="Helper"><file name="Data.php" hash="1196cb8e87d93e78eb6a268fe92198f8"/></dir><dir name="Model"><file name="Config.php" hash="fa9f76aa9f500c07362d8aedea17f372"/><file name="Geral.php" hash="ce81da595c55fd5596d697fbd5856a9e"/><dir name="Mysql4"><file name="Setup.php" hash="a8981d3d42f9a483a0be3fbdada8df76"/></dir><file name="Prazo.php" hash="6c455be1dfc19ab3c002c655bed71bd5"/><dir name="Source"><file name="Parcelas.php" hash="5660c43330b42a0fc5745c8337d93806"/></dir><file name="Standard.php" hash="221c6b081027250970235024052398a9"/><file name="Vista.php" hash="3e4aac7e9d8ff41c08f765019db961ab"/></dir><dir name="controllers"><file name="StandardController.php" hash="b5302498fdf573aa251bb5db829a243a"/></dir><dir name="etc"><file name="config.xml" hash="4432ecc5ed18aa3a47f1e7a1c345e092"/><file name="system.xml" hash="06b973201fe1c52ea2356293982ac6eb"/></dir><dir name="sql"><dir name="pagamentodigital_setup"><file name="mysql4-install-0.1.0.php" hash="67aeb99814e07d2229f7595f7e4ca0bc"/><file name="mysql4-install-0.1.1.php" hash="67aeb99814e07d2229f7595f7e4ca0bc"/></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="buscape"><dir name="pagamentodigital"><dir name="fancybox"><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="fancy_close.png" hash="6e2879a324a76e9972ebc98201aae1d8"/><file name="fancy_loading.png" hash="b1d54c240cf06e7f41e372d56919b738"/><file name="fancy_nav_left.png" hash="3f3e406102152cd8236383568a40ba35"/><file name="fancy_nav_right.png" hash="216e4bde5bddeeaa60dc3d692890a68e"/><file name="fancy_shadow_e.png" hash="fd4f491080d29fade5080877f1ba4c8b"/><file name="fancy_shadow_n.png" hash="18cde16379b2ceadef714d9b346d09ec"/><file name="fancy_shadow_ne.png" hash="63adf788acf193d4e4f3642d7d793125"/><file name="fancy_shadow_nw.png" hash="c820c878aedb7a7f9ebd7135a58e7c65"/><file name="fancy_shadow_s.png" hash="9b9e5c888028aaef40fe5b6a363f1e29"/><file name="fancy_shadow_se.png" hash="a8afd5a008884380ee712d177105268f"/><file name="fancy_shadow_sw.png" hash="f81cc0fee5581d76ad3cebe47e7e791b"/><file name="fancy_shadow_w.png" hash="59b0e63eb059e58d932cfd53da4d87e6"/><file name="fancy_title_left.png" hash="1582ac2d3bef6a6445bf02ceca2741cd"/><file name="fancy_title_main.png" hash="38dad6c1ed4bdc81c0bec721b2deb8c2"/><file name="fancy_title_over.png" hash="b886fd165d4b7ac77d41fb52d87ffc60"/><file name="fancy_title_right.png" hash="6cbe0c935511e7f9a2555ccb6a7324c4"/><file name="fancybox-x.png" hash="168696d8a694214090ef90e029cdf393"/><file name="fancybox-y.png" hash="36a58859beb9a6b19322a37466b9f78e"/><file name="fancybox.png" hash="11e57e492ee0311540967cc7a1e6e3e2"/><file name="jquery.easing-1.3.pack.js" hash="def257dbb0ab805c4996fd8abb1a6b49"/><file name="jquery.fancybox-1.3.4.css" hash="4638ce99ef00cf62bfb22d230f9924b8"/><file name="jquery.fancybox-1.3.4.js" hash="e7fc2f8a70f0a9f966207c3f71130721"/><file name="jquery.fancybox-1.3.4.pack.js" hash="8bc36a08c46719377528d962966ce37c"/><file name="jquery.mousewheel-3.0.4.pack.js" hash="3b0a821567b463e70bcc1e90ed2bc9b6"/></dir><file name="jquery.min.js" hash="73a9c334c5ca71d70d092b42064f6476"/></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="buscape"><dir name="pagamentodigital"><file name="close.png" hash="6e2879a324a76e9972ebc98201aae1d8"/><file name="overlay.png" hash="143d209e15051311fdae758b295036b5"/></dir></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
skin/frontend/default/default/images/buscape/pagamentodigital/close.png
ADDED
Binary file
|
skin/frontend/default/default/images/buscape/pagamentodigital/overlay.png
ADDED
Binary file
|