Version Notes
Auguria_DebitPayment
Download this release
Release Info
Developer | Auguria |
Extension | Auguria_DebitPayment |
Version | 0.0.2 |
Comparing to | |
See all releases |
Version 0.0.2
app/design/frontend/base/default/template/auguria/debitpayment/form.phtml
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @category Auguria
|
4 |
+
* @package Auguria_DebitPayment
|
5 |
+
* @copyright Auguria
|
6 |
+
* @license http://opensource.org/licenses/gpl-3.0.html GNU General Public License version 3 (GPLv3)
|
7 |
+
*/
|
8 |
+
?>
|
9 |
+
<fieldset class="form-list">
|
10 |
+
<ul id="payment_form_<?php echo $this->getMethodCode(); ?>" style="display:none">
|
11 |
+
<li>
|
12 |
+
<div class="<?php echo $this->getMethodCode(); ?>_instruction">
|
13 |
+
<?php echo $this->getInstruction(); ?>
|
14 |
+
</div>
|
15 |
+
<?php
|
16 |
+
if ($_cmsPage = $this->getFormCmsUrl()):
|
17 |
+
?>
|
18 |
+
<div class="<?php echo $this->getMethodCode(); ?>_information">
|
19 |
+
<?php echo $this->__("More information on this payment method can be found <a target='_blank' href='%s'>here</a>.", $_cmsPage); ?>
|
20 |
+
</div>
|
21 |
+
<?php
|
22 |
+
endif;
|
23 |
+
?>
|
24 |
+
</li>
|
25 |
+
</ul>
|
26 |
+
</fieldset>
|
app/design/frontend/base/default/template/auguria/debitpayment/info.phtml
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @category Auguria
|
4 |
+
* @package Auguria_DebitPayment
|
5 |
+
* @copyright Auguria
|
6 |
+
* @license http://opensource.org/licenses/gpl-3.0.html GNU General Public License version 3 (GPLv3)
|
7 |
+
*/
|
8 |
+
?>
|
9 |
+
<p>
|
10 |
+
<?php echo $this->getMethod()->getTitle(); ?>
|
11 |
+
<div class="<?php echo $this->getMethodCode(); ?>_instruction">
|
12 |
+
<?php echo $this->getInstruction(); ?>
|
13 |
+
</div>
|
14 |
+
<?php
|
15 |
+
if ($_cmsPage = $this->getFormCmsUrl()):
|
16 |
+
?>
|
17 |
+
<div class="<?php echo $this->getMethodCode(); ?>_information">
|
18 |
+
<?php echo $this->__("More information on this payment method can be found <a target='_blank' href='%s'>here</a>.", $_cmsPage); ?>
|
19 |
+
</div>
|
20 |
+
<?php
|
21 |
+
endif;
|
22 |
+
?>
|
23 |
+
</p>
|
app/locale/fr_FR/Auguria_DebitPayment.csv
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"Debit Payment","Prélèvement automatique"
|
2 |
+
"Enabled","Activé"
|
3 |
+
"Title","Titre"
|
4 |
+
"Order status for validated customers","Statut des commandes pour les clients validés"
|
5 |
+
"Order status for not validated customers","Statut des commandes pour les clients non validés"
|
6 |
+
"Sort order","Ordre de tri"
|
7 |
+
"Payment from applicable countries","Mode de paiement autorisé pour"
|
8 |
+
"Payment from Specific countries","Mode de paiement autorisé pour les pays spécifiques"
|
9 |
+
"Minimum Order Total","Montant minimum de commande"
|
10 |
+
"Maximum Order Total","Montant maximum de commande"
|
11 |
+
"Instructions for validated customers","Instructions pour les clients validés"
|
12 |
+
"Instructions for not validated customers","Instructions pour les clients non validés"
|
13 |
+
"Form CMS Page","Form CMS Page"
|
14 |
+
"Add link to CMS page","Ajouter un lien vers une page CMS"
|
15 |
+
"Pending debit authorization","En attente de l'autorisation de prélèvement"
|
16 |
+
"More information on this payment method can be found <a target='_blank' href='%s'>here</a>.","Plus d'informations sur ce mode de paiement <a target='_blank' href='%s'>ici</a>."
|
media/wysiwyg/documents/demande_prelevement.pdf
ADDED
Binary file
|
package.xml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<package>
|
3 |
+
<name>Auguria_DebitPayment</name>
|
4 |
+
<version>0.0.2</version>
|
5 |
+
<stability>stable</stability>
|
6 |
+
<license uri="http://opensource.org/licenses/osl-3.0.php">OSL 3.0</license>
|
7 |
+
<channel>community</channel>
|
8 |
+
<extends/>
|
9 |
+
<summary>Auguria_DebitPayment</summary>
|
10 |
+
<description>Auguria_DebitPayment</description>
|
11 |
+
<notes>Auguria_DebitPayment</notes>
|
12 |
+
<authors><author><name>Auguria</name><user>Auguria</user><email>magento@auguria.net</email></author></authors>
|
13 |
+
<date>2012-06-22</date>
|
14 |
+
<time>15:39:35</time>
|
15 |
+
<contents><target name="mageetc"><dir name="app"><dir name="etc"><dir name="modules"><file name="Auguria_DebitPayment.xml" hash=""/></dir></dir></dir></target><target name="magecommunity"><dir name="Auguria"><file name="DebitPayment" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="auguria"><dir name="debitpayment"><file name="form.phtml" hash="9f3e76e5a1db2711e6bf45fb068177b0"/><file name="info.phtml" hash="0cd47b7241016b328fedf08e9fddd086"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="fr_FR"><file name="Auguria_DebitPayment.csv" hash="e3f38b708268c3a78aabca983d902649"/></dir></target><target name="magemedia"><dir name="wysiwyg"><dir name="documents"><file name="demande_prelevement.pdf" hash="486fbed5b00e2a00230b2a806460d8ab"/></dir></dir></target></contents>
|
16 |
+
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.2.0</min><max>5.6.0</max></php><package><name>Mage_Payment</name><channel>core</channel><min></min><max></max></package></required></dependencies>
|
18 |
+
</package>
|