Version Notes
Initial Release
Download this release
Release Info
Developer | Jan Strohmeier |
Extension | hankeme_pprevival |
Version | 0.1.0 |
Comparing to | |
See all releases |
Version 0.1.0
app/code/community/Hankeme/Pprevival/Helper/Data.php
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Hankeme_Pprevival_Helper_Data extends Mage_Core_Helper_Abstract
|
3 |
+
{}
|
app/code/community/Hankeme/Pprevival/etc/config.xml
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<Hankeme_Pprevival>
|
5 |
+
<version>0.1.0</version>
|
6 |
+
</Hankeme_Pprevival>
|
7 |
+
</modules>
|
8 |
+
<global>
|
9 |
+
<blocks>
|
10 |
+
<hankeme_pprevival>
|
11 |
+
<class>Hankeme_Pprevival_Block</class>
|
12 |
+
</hankeme_pprevival>
|
13 |
+
</blocks>
|
14 |
+
<models>
|
15 |
+
<hankeme_pprevival>
|
16 |
+
<class>Hankeme_Pprevival_Model</class>
|
17 |
+
</hankeme_pprevival>
|
18 |
+
</models>
|
19 |
+
<helpers>
|
20 |
+
<hankeme_pprevival><class>Hankeme_Pprevival_Helper</class></hankeme_pprevival>
|
21 |
+
</helpers>
|
22 |
+
</global>
|
23 |
+
</config>
|
app/code/community/Hankeme/Pprevival/etc/system.xml
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<sections>
|
4 |
+
<payment>
|
5 |
+
<groups>
|
6 |
+
<paypal_payments>
|
7 |
+
<wps type="group" translate="label comment">
|
8 |
+
<!--frontend_model>paypal/adminhtml_system_config_fieldset_deprecated</frontend_model-->
|
9 |
+
<frontend_model>paypal/adminhtml_system_config_fieldset_payment</frontend_model>
|
10 |
+
</wps>
|
11 |
+
</paypal_payments>
|
12 |
+
</groups>
|
13 |
+
</payment>
|
14 |
+
</sections>
|
15 |
+
</config>
|
package.xml
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<package>
|
3 |
+
<name>hankeme_pprevival</name>
|
4 |
+
<version>0.1.0</version>
|
5 |
+
<stability>stable</stability>
|
6 |
+
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL 3.0)</license>
|
7 |
+
<channel>community</channel>
|
8 |
+
<extends/>
|
9 |
+
<summary>Re-enables PayPal Standard Website Payments in Magento 1.9.</summary>
|
10 |
+
<description>PayPal API has changed in Magento Core Version 1.9+ setting the good old Website Payment standard as deprecated. The new Express Gateway has been set as the new Default. 
|
11 |
+
However the new Express Gateway is incompatible with some local Laws (e.g. Germany) as it forces Users to leave Checkout and pay for their Order BEFORE they reach the Order Review Page and hit the final Confirmation Button.
|
12 |
+
This Extensions re-enables the Paypal Standard Website Payment</description>
|
13 |
+
<notes>Initial Release</notes>
|
14 |
+
<authors><author><name>Jan Strohmeier</name><user>hankeme_de</user><email>jan.strohmeier@hanke.me</email></author></authors>
|
15 |
+
<date>2015-02-13</date>
|
16 |
+
<time>13:49:16</time>
|
17 |
+
<contents><target name="magecommunity"><dir name="Hankeme"><dir name="Pprevival"><dir name="Helper"><file name="Data.php" hash="d7073c630c0d9f0ae9441cd72553790d"/></dir><dir name="etc"><file name="config.xml" hash="6e7b0b812e269046a2ffa7ec976fb89d"/><file name="system.xml" hash="8983ff7eb790770ed8037103d4a4d1b4"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Hankeme_Pprevival.xml" hash=""/></dir></target></contents>
|
18 |
+
<compatible/>
|
19 |
+
<dependencies><required><php><min>5.2.0</min><max>5.6.0</max></php></required></dependencies>
|
20 |
+
</package>
|