Version Notes
Sends invoice automatically after an order is paid using PayPal.
Download this release
Release Info
| Developer | Magento Core Team |
| Extension | xonu_PayPalInvoiceSender |
| Version | 1.0.2 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.1 to 1.0.2
- app/code/community/{xonu → Xonu}/PayPalInvoiceSender/Block/Adminhtml/Notification/Window.php +1 -1
- app/code/community/{xonu → Xonu}/PayPalInvoiceSender/Helper/Data.php +2 -2
- app/code/community/{xonu → Xonu}/PayPalInvoiceSender/Model/Ipn.php +2 -2
- app/code/community/{xonu → Xonu}/PayPalInvoiceSender/etc/config.xml +9 -9
- app/code/community/{xonu → Xonu}/PayPalInvoiceSender/etc/system.xml +0 -0
- app/code/community/{xonu → Xonu}/PayPalInvoiceSender/sql/paypalinvoicesender_setup/mysql4-install-1.0.0.php +0 -0
- app/etc/modules/xonu_PayPalInvoiceSender.xml +3 -3
- package.xml +7 -7
app/code/community/{xonu → Xonu}/PayPalInvoiceSender/Block/Adminhtml/Notification/Window.php
RENAMED
|
@@ -9,7 +9,7 @@
|
|
| 9 |
<?php
|
| 10 |
|
| 11 |
require_once ('Mage/Adminhtml/Block/Notification/Window.php');
|
| 12 |
-
class
|
| 13 |
{
|
| 14 |
public function __construct()
|
| 15 |
{
|
| 9 |
<?php
|
| 10 |
|
| 11 |
require_once ('Mage/Adminhtml/Block/Notification/Window.php');
|
| 12 |
+
class Xonu_PayPalInvoiceSender_Block_Adminhtml_Notification_Window extends Mage_Adminhtml_Block_Notification_Window
|
| 13 |
{
|
| 14 |
public function __construct()
|
| 15 |
{
|
app/code/community/{xonu → Xonu}/PayPalInvoiceSender/Helper/Data.php
RENAMED
|
@@ -8,7 +8,7 @@
|
|
| 8 |
|
| 9 |
<?php
|
| 10 |
|
| 11 |
-
class
|
| 12 |
{
|
| 13 |
|
| 14 |
-
}
|
| 8 |
|
| 9 |
<?php
|
| 10 |
|
| 11 |
+
class Xonu_PayPalInvoiceSender_Helper_Data extends Mage_Core_Helper_Abstract
|
| 12 |
{
|
| 13 |
|
| 14 |
+
}
|
app/code/community/{xonu → Xonu}/PayPalInvoiceSender/Model/Ipn.php
RENAMED
|
@@ -9,7 +9,7 @@
|
|
| 9 |
<?php
|
| 10 |
|
| 11 |
require_once ('Mage/Paypal/Model/Ipn.php');
|
| 12 |
-
class
|
| 13 |
{
|
| 14 |
|
| 15 |
/**
|
|
@@ -68,4 +68,4 @@ class xonu_PayPalInvoiceSender_Model_Ipn extends Mage_Paypal_Model_Ipn
|
|
| 68 |
}
|
| 69 |
}
|
| 70 |
|
| 71 |
-
}
|
| 9 |
<?php
|
| 10 |
|
| 11 |
require_once ('Mage/Paypal/Model/Ipn.php');
|
| 12 |
+
class Xonu_PayPalInvoiceSender_Model_Ipn extends Mage_Paypal_Model_Ipn
|
| 13 |
{
|
| 14 |
|
| 15 |
/**
|
| 68 |
}
|
| 69 |
}
|
| 70 |
|
| 71 |
+
}
|
app/code/community/{xonu → Xonu}/PayPalInvoiceSender/etc/config.xml
RENAMED
|
@@ -6,9 +6,9 @@
|
|
| 6 |
-->
|
| 7 |
<config>
|
| 8 |
<modules>
|
| 9 |
-
<
|
| 10 |
<version>1.0.1</version>
|
| 11 |
-
</
|
| 12 |
</modules>
|
| 13 |
|
| 14 |
<admin>
|
|
@@ -16,7 +16,7 @@
|
|
| 16 |
<paypalinvoicesender>
|
| 17 |
<use>admin</use>
|
| 18 |
<args>
|
| 19 |
-
<module>
|
| 20 |
<frontName>paypalinvoicesender</frontName>
|
| 21 |
</args>
|
| 22 |
</paypalinvoicesender>
|
|
@@ -39,7 +39,7 @@
|
|
| 39 |
<!-- Rewrite PayPal IPN Model -->
|
| 40 |
<paypal>
|
| 41 |
<rewrite>
|
| 42 |
-
<ipn>
|
| 43 |
</rewrite>
|
| 44 |
</paypal>
|
| 45 |
|
|
@@ -48,7 +48,7 @@
|
|
| 48 |
<resources>
|
| 49 |
<paypalinvoicesender_setup>
|
| 50 |
<setup>
|
| 51 |
-
<module>
|
| 52 |
</setup>
|
| 53 |
<connection>
|
| 54 |
<use>core_setup</use>
|
|
@@ -69,21 +69,21 @@
|
|
| 69 |
<blocks>
|
| 70 |
|
| 71 |
<paypalinvoicesender>
|
| 72 |
-
<class>
|
| 73 |
</paypalinvoicesender>
|
| 74 |
|
| 75 |
<adminhtml>
|
| 76 |
<rewrite>
|
| 77 |
-
<notification_window>
|
| 78 |
</rewrite>
|
| 79 |
</adminhtml>
|
| 80 |
</blocks>
|
| 81 |
|
| 82 |
<helpers>
|
| 83 |
<paypalinvoicesender>
|
| 84 |
-
<class>
|
| 85 |
</paypalinvoicesender>
|
| 86 |
</helpers>
|
| 87 |
|
| 88 |
</global>
|
| 89 |
-
</config>
|
| 6 |
-->
|
| 7 |
<config>
|
| 8 |
<modules>
|
| 9 |
+
<Xonu_PayPalInvoiceSender>
|
| 10 |
<version>1.0.1</version>
|
| 11 |
+
</Xonu_PayPalInvoiceSender>
|
| 12 |
</modules>
|
| 13 |
|
| 14 |
<admin>
|
| 16 |
<paypalinvoicesender>
|
| 17 |
<use>admin</use>
|
| 18 |
<args>
|
| 19 |
+
<module>Xonu_PayPalInvoiceSender</module>
|
| 20 |
<frontName>paypalinvoicesender</frontName>
|
| 21 |
</args>
|
| 22 |
</paypalinvoicesender>
|
| 39 |
<!-- Rewrite PayPal IPN Model -->
|
| 40 |
<paypal>
|
| 41 |
<rewrite>
|
| 42 |
+
<ipn>Xonu_PayPalInvoiceSender_Model_Ipn</ipn>
|
| 43 |
</rewrite>
|
| 44 |
</paypal>
|
| 45 |
|
| 48 |
<resources>
|
| 49 |
<paypalinvoicesender_setup>
|
| 50 |
<setup>
|
| 51 |
+
<module>Xonu_PayPalInvoiceSender</module>
|
| 52 |
</setup>
|
| 53 |
<connection>
|
| 54 |
<use>core_setup</use>
|
| 69 |
<blocks>
|
| 70 |
|
| 71 |
<paypalinvoicesender>
|
| 72 |
+
<class>Xonu_PayPalInvoiceSender_Block</class>
|
| 73 |
</paypalinvoicesender>
|
| 74 |
|
| 75 |
<adminhtml>
|
| 76 |
<rewrite>
|
| 77 |
+
<notification_window>Xonu_PayPalInvoiceSender_Block_Adminhtml_Notification_Window</notification_window>
|
| 78 |
</rewrite>
|
| 79 |
</adminhtml>
|
| 80 |
</blocks>
|
| 81 |
|
| 82 |
<helpers>
|
| 83 |
<paypalinvoicesender>
|
| 84 |
+
<class>Xonu_PayPalInvoiceSender_Helper</class>
|
| 85 |
</paypalinvoicesender>
|
| 86 |
</helpers>
|
| 87 |
|
| 88 |
</global>
|
| 89 |
+
</config>
|
app/code/community/{xonu → Xonu}/PayPalInvoiceSender/etc/system.xml
RENAMED
|
File without changes
|
app/code/community/{xonu → Xonu}/PayPalInvoiceSender/sql/paypalinvoicesender_setup/mysql4-install-1.0.0.php
RENAMED
|
File without changes
|
app/etc/modules/xonu_PayPalInvoiceSender.xml
CHANGED
|
@@ -6,9 +6,9 @@
|
|
| 6 |
-->
|
| 7 |
<config>
|
| 8 |
<modules>
|
| 9 |
-
<
|
| 10 |
<active>true</active>
|
| 11 |
<codePool>community</codePool>
|
| 12 |
-
</
|
| 13 |
</modules>
|
| 14 |
-
</config>
|
| 6 |
-->
|
| 7 |
<config>
|
| 8 |
<modules>
|
| 9 |
+
<Xonu_PayPalInvoiceSender>
|
| 10 |
<active>true</active>
|
| 11 |
<codePool>community</codePool>
|
| 12 |
+
</Xonu_PayPalInvoiceSender>
|
| 13 |
</modules>
|
| 14 |
+
</config>
|
package.xml
CHANGED
|
@@ -1,18 +1,18 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>xonu_PayPalInvoiceSender</name>
|
| 4 |
-
<version>1.0.
|
| 5 |
<stability>stable</stability>
|
| 6 |
-
<license>xonu.de EULA</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>Sends invoice automatically after an order is paid using PayPal.</summary>
|
| 10 |
<description>After successful PayPal payment, Magento automatically creates invoice but it is not sent to customer. PayPal Invoice Sender automatically sends the invoice after an order have been paid using PayPal.</description>
|
| 11 |
<notes>Sends invoice automatically after an order is paid using PayPal.</notes>
|
| 12 |
-
<authors><author><name>Pawel Kazakow</name><user>
|
| 13 |
-
<date>2012-
|
| 14 |
-
<time>07:
|
| 15 |
-
<contents><target name="magecommunity"><dir name="
|
| 16 |
<compatible/>
|
| 17 |
-
<dependencies
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>xonu_PayPalInvoiceSender</name>
|
| 4 |
+
<version>1.0.2</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
+
<license uri="http://xonu.de/license/">xonu.de EULA</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>Sends invoice automatically after an order is paid using PayPal.</summary>
|
| 10 |
<description>After successful PayPal payment, Magento automatically creates invoice but it is not sent to customer. PayPal Invoice Sender automatically sends the invoice after an order have been paid using PayPal.</description>
|
| 11 |
<notes>Sends invoice automatically after an order is paid using PayPal.</notes>
|
| 12 |
+
<authors><author><name>Pawel Kazakow</name><user>auto-converted</user><email>support@xonu.de</email></author></authors>
|
| 13 |
+
<date>2012-10-17</date>
|
| 14 |
+
<time>07:46:15</time>
|
| 15 |
+
<contents><target name="magecommunity"><dir name="Xonu"><dir name="PayPalInvoiceSender"><dir name="Block"><dir name="Adminhtml"><dir name="Notification"><file name="Window.php" hash="d764ea1c251b27c6d5b21fa1b1304a34"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="fee76ed60543ebf1f2357c9c226af113"/></dir><dir name="Model"><file name="Ipn.php" hash="316ed387122651fce4c3b47eaa2ff4cf"/></dir><dir name="etc"><file name="config.xml" hash="ce355f6d26d606061c543a6e1e0b1578"/><file name="system.xml" hash="00e6ba0db9aa402a9cd64b1b7847500b"/></dir><dir name="sql"><dir name="paypalinvoicesender_setup"><file name="mysql4-install-1.0.0.php" hash="a3f6f0e131df9d802185e64bcd467809"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="xonu_PayPalInvoiceSender.xml" hash="0e45ae150966e6249d5b9b1887c07910"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="paypalinvoicesender.xml" hash="6730a005e4d073ee003778a984d5803a"/></dir><dir name="template"><dir name="paypalinvoicesender"><dir name="notification"><file name="window.phtml" hash="c70aee980c939556e8598ff14cfb21d7"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><file name="paypalinvoice.png" hash="8d4e360fd375f0e4e22ffdbcf24ac020"/></dir></dir></dir></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
+
<dependencies/>
|
| 18 |
</package>
|
