Version Notes
Fixed bugs with Previously Used payment methods when enabled/configured in store scope but not global.
Download this release
Release Info
Developer | Classy Llama |
Extension | CLS_Paypal_Credit_Card_Tokenization |
Version | 1.0.4 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.4
- app/code/community/CLS/Paypal/CHANGELOG.txt +6 -0
- app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored/Payflowadvanced.php +11 -0
- app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored/Payflowlink.php +11 -0
- app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored/Payflowpro.php +11 -0
- app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored/Payflowadvanced.php +11 -0
- app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored/Payflowlink.php +11 -0
- app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored/Payflowpro.php +11 -0
- app/code/community/CLS/Paypal/{README.txt → README.md} +0 -0
- app/code/community/CLS/Paypal/etc/config.xml +1 -1
- package.xml +5 -5
app/code/community/CLS/Paypal/CHANGELOG.txt
CHANGED
@@ -1,3 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
CLS_Paypal 1.0.0 (07/01/2013)
|
2 |
=======================================
|
3 |
Initial release
|
1 |
+
CLS_Paypal 1.0.4 (10/23/2013)
|
2 |
+
=======================================
|
3 |
+
Fixed bugs in orderstored and customerstored methods when
|
4 |
+
enabled for a specific website
|
5 |
+
|
6 |
+
|
7 |
CLS_Paypal 1.0.0 (07/01/2013)
|
8 |
=======================================
|
9 |
Initial release
|
app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored/Payflowadvanced.php
CHANGED
@@ -158,4 +158,15 @@ class CLS_Paypal_Model_Paypal_Stored_Customerstored_Payflowadvanced extends CLS_
|
|
158 |
return $this->_commonPayflowMethod->getConfigData($field, $storeId);
|
159 |
}
|
160 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
}
|
158 |
return $this->_commonPayflowMethod->getConfigData($field, $storeId);
|
159 |
}
|
160 |
|
161 |
+
/**
|
162 |
+
* Set the store on the model instance and common method
|
163 |
+
*
|
164 |
+
* @param int $store
|
165 |
+
* @return $this
|
166 |
+
*/
|
167 |
+
public function setStore($store) {
|
168 |
+
$this->_commonPayflowMethod->setStore($store);
|
169 |
+
$this->setData('store', $store);
|
170 |
+
return $this;
|
171 |
+
}
|
172 |
}
|
app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored/Payflowlink.php
CHANGED
@@ -158,4 +158,15 @@ class CLS_Paypal_Model_Paypal_Stored_Customerstored_Payflowlink extends CLS_Payp
|
|
158 |
return $this->_commonPayflowMethod->getConfigData($field, $storeId);
|
159 |
}
|
160 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
}
|
158 |
return $this->_commonPayflowMethod->getConfigData($field, $storeId);
|
159 |
}
|
160 |
|
161 |
+
/**
|
162 |
+
* Set the store on the model instance and common method
|
163 |
+
*
|
164 |
+
* @param int $store
|
165 |
+
* @return $this
|
166 |
+
*/
|
167 |
+
public function setStore($store) {
|
168 |
+
$this->_commonPayflowMethod->setStore($store);
|
169 |
+
$this->setData('store', $store);
|
170 |
+
return $this;
|
171 |
+
}
|
172 |
}
|
app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored/Payflowpro.php
CHANGED
@@ -152,4 +152,15 @@ class CLS_Paypal_Model_Paypal_Stored_Customerstored_Payflowpro extends CLS_Paypa
|
|
152 |
return $this->_commonPayflowMethod->getConfigData($field, $storeId);
|
153 |
}
|
154 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
}
|
152 |
return $this->_commonPayflowMethod->getConfigData($field, $storeId);
|
153 |
}
|
154 |
|
155 |
+
/**
|
156 |
+
* Set the store on the model instance and common method
|
157 |
+
*
|
158 |
+
* @param int $store
|
159 |
+
* @return $this
|
160 |
+
*/
|
161 |
+
public function setStore($store) {
|
162 |
+
$this->_commonPayflowMethod->setStore($store);
|
163 |
+
$this->setData('store', $store);
|
164 |
+
return $this;
|
165 |
+
}
|
166 |
}
|
app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored/Payflowadvanced.php
CHANGED
@@ -158,4 +158,15 @@ class CLS_Paypal_Model_Paypal_Stored_Orderstored_Payflowadvanced extends CLS_Pay
|
|
158 |
return $this->_commonPayflowMethod->getConfigData($field, $storeId);
|
159 |
}
|
160 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
}
|
158 |
return $this->_commonPayflowMethod->getConfigData($field, $storeId);
|
159 |
}
|
160 |
|
161 |
+
/**
|
162 |
+
* Set the store on the model instance and common method
|
163 |
+
*
|
164 |
+
* @param int $store
|
165 |
+
* @return $this
|
166 |
+
*/
|
167 |
+
public function setStore($store) {
|
168 |
+
$this->_commonPayflowMethod->setStore($store);
|
169 |
+
$this->setData('store', $store);
|
170 |
+
return $this;
|
171 |
+
}
|
172 |
}
|
app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored/Payflowlink.php
CHANGED
@@ -158,4 +158,15 @@ class CLS_Paypal_Model_Paypal_Stored_Orderstored_Payflowlink extends CLS_Paypal_
|
|
158 |
return $this->_commonPayflowMethod->getConfigData($field, $storeId);
|
159 |
}
|
160 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
}
|
158 |
return $this->_commonPayflowMethod->getConfigData($field, $storeId);
|
159 |
}
|
160 |
|
161 |
+
/**
|
162 |
+
* Set the store on the model instance and common method
|
163 |
+
*
|
164 |
+
* @param int $store
|
165 |
+
* @return $this
|
166 |
+
*/
|
167 |
+
public function setStore($store) {
|
168 |
+
$this->_commonPayflowMethod->setStore($store);
|
169 |
+
$this->setData('store', $store);
|
170 |
+
return $this;
|
171 |
+
}
|
172 |
}
|
app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored/Payflowpro.php
CHANGED
@@ -152,4 +152,15 @@ class CLS_Paypal_Model_Paypal_Stored_Orderstored_Payflowpro extends CLS_Paypal_M
|
|
152 |
return $this->_commonPayflowMethod->getConfigData($field, $storeId);
|
153 |
}
|
154 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
}
|
152 |
return $this->_commonPayflowMethod->getConfigData($field, $storeId);
|
153 |
}
|
154 |
|
155 |
+
/**
|
156 |
+
* Set the store on the model instance and common method
|
157 |
+
*
|
158 |
+
* @param int $store
|
159 |
+
* @return $this
|
160 |
+
*/
|
161 |
+
public function setStore($store) {
|
162 |
+
$this->_commonPayflowMethod->setStore($store);
|
163 |
+
$this->setData('store', $store);
|
164 |
+
return $this;
|
165 |
+
}
|
166 |
}
|
app/code/community/CLS/Paypal/{README.txt → README.md}
RENAMED
File without changes
|
app/code/community/CLS/Paypal/etc/config.xml
CHANGED
@@ -30,7 +30,7 @@
|
|
30 |
<config>
|
31 |
<modules>
|
32 |
<CLS_Paypal>
|
33 |
-
<version>1.0.
|
34 |
</CLS_Paypal>
|
35 |
</modules>
|
36 |
|
30 |
<config>
|
31 |
<modules>
|
32 |
<CLS_Paypal>
|
33 |
+
<version>1.0.4</version>
|
34 |
</CLS_Paypal>
|
35 |
</modules>
|
36 |
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>CLS_Paypal_Credit_Card_Tokenization</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
@@ -73,11 +73,11 @@ Enable the module's various features from these groups, as well as setting
|
|
73 |
their configuration options independently of the standard credit card
|
74 |
and billing agreement configurations.
|
75 |
</description>
|
76 |
-
<notes>
|
77 |
<authors><author><name>Classy Llama</name><user>classyllama</user><email>info@classyllama.com</email></author></authors>
|
78 |
-
<date>2013-
|
79 |
-
<time>15:
|
80 |
-
<contents><target name="magecommunity"><dir name="CLS"><dir name="Paypal"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Create"><file name="Customer.php" hash="bdda7f26580da00836dc14c760ce7bd4"/></dir></dir></dir></dir><dir name="Customer"><file name="Storedcard.php" hash="1f0ea64d4d88d8acc69b491ad157013d"/></dir><dir name="Payment"><dir name="Form"><file name="Cc.php" hash="bd28bf5a1476b6d000f7ddcfc8097520"/></dir></dir><dir name="Paypal"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Location.php" hash="51a66bf4179183e15d74e2dd60867d08"/></dir></dir></dir></dir><dir name="Payflow"><dir name="Advanced"><file name="Form.php" hash="431cc885b585b3a6ae44b3e63b4a3500"/></dir><dir name="Link"><file name="Form.php" hash="803988293c751db8be065174648ea789"/></dir></dir><dir name="Payment"><dir name="Form"><file name="Customerstored.php" hash="705a1066768956fa2757aa6974df6a90"/><dir name="Orderstored"><file name="Agreement.php" hash="51a809dde7da3c5fb7adaccfc94583fe"/></dir><file name="Orderstored.php" hash="aae8127491dcace2d2800879b2743157"/></dir></dir></dir><dir name="Paypaluk"><dir name="Payment"><dir name="Form"><dir name="Orderstored"><file name="Agreement.php" hash="f2cefe3e8fc148a628b8c7275401845d"/></dir></dir></dir></dir></dir><file name="CHANGELOG.txt" hash="
|
81 |
<compatible/>
|
82 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
83 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>CLS_Paypal_Credit_Card_Tokenization</name>
|
4 |
+
<version>1.0.4</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
<channel>community</channel>
|
73 |
their configuration options independently of the standard credit card
|
74 |
and billing agreement configurations.
|
75 |
</description>
|
76 |
+
<notes>Fixed bugs with Previously Used payment methods when enabled/configured in store scope but not global.</notes>
|
77 |
<authors><author><name>Classy Llama</name><user>classyllama</user><email>info@classyllama.com</email></author></authors>
|
78 |
+
<date>2013-10-24</date>
|
79 |
+
<time>15:46:42</time>
|
80 |
+
<contents><target name="magecommunity"><dir name="CLS"><dir name="Paypal"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="Create"><file name="Customer.php" hash="bdda7f26580da00836dc14c760ce7bd4"/></dir></dir></dir></dir><dir name="Customer"><file name="Storedcard.php" hash="1f0ea64d4d88d8acc69b491ad157013d"/></dir><dir name="Payment"><dir name="Form"><file name="Cc.php" hash="bd28bf5a1476b6d000f7ddcfc8097520"/></dir></dir><dir name="Paypal"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Location.php" hash="51a66bf4179183e15d74e2dd60867d08"/></dir></dir></dir></dir><dir name="Payflow"><dir name="Advanced"><file name="Form.php" hash="431cc885b585b3a6ae44b3e63b4a3500"/></dir><dir name="Link"><file name="Form.php" hash="803988293c751db8be065174648ea789"/></dir></dir><dir name="Payment"><dir name="Form"><file name="Customerstored.php" hash="705a1066768956fa2757aa6974df6a90"/><dir name="Orderstored"><file name="Agreement.php" hash="51a809dde7da3c5fb7adaccfc94583fe"/></dir><file name="Orderstored.php" hash="aae8127491dcace2d2800879b2743157"/></dir></dir></dir><dir name="Paypaluk"><dir name="Payment"><dir name="Form"><dir name="Orderstored"><file name="Agreement.php" hash="f2cefe3e8fc148a628b8c7275401845d"/></dir></dir></dir></dir></dir><file name="CHANGELOG.txt" hash="6aa05639621db3f33539917ccfbdfa67"/><dir name="Helper"><file name="Data.php" hash="0d3f45c57c94284712bd91aa4b19351b"/><dir name="Orderstored"><file name="Agreement.php" hash="d84455b451593c2eaa46522e09834da7"/></dir><dir name="Paypal"><file name="Data.php" hash="f60bf2892eb63645f2eab96bc7dc6b4a"/></dir><file name="Storedcard.php" hash="874a70e486c9b8ed353167245f9ed07a"/></dir><file name="LICENSE.txt" hash="71db18446bebc23ced8dd62644d16b5f"/><dir name="Model"><file name="Customerstored.php" hash="8be7c468362ad43b6a09d4c223d36515"/><file name="Observer.php" hash="b3bef212d6632fe85feb02898a382efc"/><dir name="Paypal"><dir name="Api"><file name="Nvp.php" hash="cef7500ca76ea7f62ed4ee5843fcf17c"/></dir><file name="Config.php" hash="dc8223a0fc3b8d6659184d1fe6c0330b"/><file name="Direct.php" hash="9f551d5e14e99451ca02f79d2f78f4ab"/><dir name="Express"><file name="Checkout.php" hash="021cbbf4e0985106ab24bfa8bd62abb4"/></dir><file name="Express.php" hash="67b5631bf57b2797050c73c7378aee9c"/><file name="Info.php" hash="d6d8415242d2a63eb831cac84f276701"/><dir name="Method"><dir name="Orderstored"><file name="Agreement.php" hash="dea76e2815bdffc8a7225840574b12ac"/></dir></dir><file name="Payflowadvanced.php" hash="333a909b6b48c6c3c864e591d5ee0a4d"/><file name="Payflowlink.php" hash="98129dfc3d9a5236e8c5a94cddbeb6d3"/><file name="Payflowpro.php" hash="dbfa4f171934f4f26d05515ca5ae36b1"/><dir name="Stored"><file name="Abstract.php" hash="946b41be7b003f821fa091e25974e2e1"/><dir name="Customerstored"><file name="Direct.php" hash="4677b9c142d635c9f77249cd87f51150"/><file name="Payflow.php" hash="0c4cbbac9db29160ff4a7c352bc915f2"/><file name="Payflowadvanced.php" hash="5d5b02436cf305412bfec098eea85e09"/><file name="Payflowlink.php" hash="83a4de2a5192635c48af3aac8b2cb7e2"/><file name="Payflowpro.php" hash="394ec117863b90196f141d1df367b068"/></dir><file name="Customerstored.php" hash="f9fe1df0936372d6abcb30b3129c080b"/><dir name="Orderstored"><file name="Direct.php" hash="403bd0b06c2f235c9480eaf05d449b3b"/><file name="Payflow.php" hash="98fae36789f67423db4a520b7feaa01f"/><file name="Payflowadvanced.php" hash="8dd64cf3c2b9ae5560b3a06204d59751"/><file name="Payflowlink.php" hash="71b134111dc49d20692c3ffae3bfa1c7"/><file name="Payflowpro.php" hash="08bac93661b9234b0546ab429f4a3931"/></dir><file name="Orderstored.php" hash="2f9b44b951f3f7dfe80ab8153be7f8bc"/><file name="Payflow.php" hash="288f16ab9d9d2b0d8957c8887f528b99"/></dir></dir><dir name="Paypaluk"><dir name="Api"><file name="Nvp.php" hash="ef27f778fde49eab569c6f3944702ec4"/></dir><dir name="Express"><file name="Checkout.php" hash="6a2a85e0acb0645d025c8823a5b3cd2f"/></dir><file name="Express.php" hash="b491f2d6acf89a29f4a23dc573f8e44f"/><dir name="Method"><file name="Agreement.php" hash="c86f295fa6312888b45c0f4a68fd27df"/><dir name="Orderstored"><file name="Agreement.php" hash="8534a919294e533247ef5cebdef434ce"/></dir></dir></dir><dir name="Resource"><dir name="Customerstored"><file name="Collection.php" hash="818889cb1eedd1e2047d09f6270f9b30"/></dir><file name="Customerstored.php" hash="0dd4ba6646ffbd32efbe6e4f0bc4e3c7"/></dir></dir><file name="README.md" hash="3371344d77a0c17859e4b7e75380b0a7"/><dir name="controllers"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="CreateController.php" hash="edd90db7fcc89ccfd5519864debed3ad"/></dir></dir></dir><dir name="Customer"><file name="StoredcardController.php" hash="60c3403cd13a9ff1805506f5988cabdb"/></dir><dir name="Paypal"><file name="ExpressController.php" hash="53f83f79f948ffc0eb6abdfc5d8f60b0"/></dir><dir name="PaypalUk"><file name="ExpressController.php" hash="639821dc1c01a0276052579c5507a599"/></dir></dir><dir name="etc"><file name="config.xml" hash="0b2bb9bb35292cd6dcf9ac86d4ce50c9"/><file name="system.xml" hash="4d5998c927b5739a52c078c99644bd32"/></dir><dir name="sql"><dir name="cls_paypal_setup"><file name="install-0.0.1.php" hash="33f870045a3cc0da094eed143adaf57b"/><file name="upgrade-0.3.0-0.3.1.php" hash="240dd4eae586f033ec6efad99773fbce"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="cls_paypal.xml" hash="6747dd281152c450e1511f9d551c9766"/></dir><dir name="template"><dir name="cls_paypal"><dir name="payment"><dir name="form"><file name="cc.phtml" hash="a23359ef60f0cf4041f4dd406c1cb286"/><file name="customer_stored.phtml" hash="6004f23604bb7de0a409494bb0c0c439"/><file name="order_stored.phtml" hash="7620eacd6d2351df7e827eb168d03236"/></dir></dir><dir name="sales"><dir name="order"><dir name="create"><dir name="form"><file name="address.phtml" hash="a452ddc2a6e812f0872e82ad931b9dac"/></dir></dir></dir><dir name="payment"><dir name="form"><dir name="orderstored"><file name="agreement.phtml" hash="5a080925e336f505381cba5e43f70e07"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="cls_paypal.xml" hash="0e2a6af1135e6fb29dda4b267797a6bd"/></dir><dir name="template"><dir name="cls_paypal"><dir name="customer"><file name="storedcard.phtml" hash="4756af996c65fb83a09ab0312a66bd1f"/></dir><dir name="payment"><dir name="form"><file name="cc.phtml" hash="bd55fa445bea026721116b29dfadbb73"/><file name="customer_stored.phtml" hash="591d82906294e37f5c2e317f71144a0f"/></dir></dir><dir name="paypal"><dir name="payflow"><file name="info.phtml" hash="548f1b761782c2351482dd1d1f44a7af"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="CLS_Paypal.xml" hash="9e629aac18f2e5f2c9feb266985c912f"/></dir></target><target name="magelocale"><dir name="en_US"><file name="CLS_Paypal.csv" hash="ab57482877d914bb1d02021d95c65520"/></dir></target></contents>
|
81 |
<compatible/>
|
82 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
83 |
</package>
|