CLS_Paypal_Credit_Card_Tokenization - Version 1.1.2

Version Notes

Fixed system.xml verisign node, which was causing config to vanish for certain countries

Download this release

Release Info

Developer Classy Llama
Extension CLS_Paypal_Credit_Card_Tokenization
Version 1.1.2
Comparing to
See all releases


Code changes from version 1.1.0 to 1.1.2

Files changed (72) hide show
  1. app/code/community/CLS/Paypal/Block/Adminhtml/Sales/Order/Create/Customer.php +1 -1
  2. app/code/community/CLS/Paypal/Block/Customer/Storedcard.php +1 -1
  3. app/code/community/CLS/Paypal/Block/Payment/Form/Cc.php +1 -1
  4. app/code/community/CLS/Paypal/Block/Paypal/Adminhtml/System/Config/Fieldset/Location.php +1 -1
  5. app/code/community/CLS/Paypal/Block/Paypal/Payflow/Advanced/Form.php +1 -1
  6. app/code/community/CLS/Paypal/Block/Paypal/Payflow/Link/Form.php +1 -1
  7. app/code/community/CLS/Paypal/Block/Paypal/Payment/Form/Customerstored.php +1 -1
  8. app/code/community/CLS/Paypal/Block/Paypal/Payment/Form/Orderstored.php +1 -1
  9. app/code/community/CLS/Paypal/Block/Paypal/Payment/Form/Orderstored/Agreement.php +1 -1
  10. app/code/community/CLS/Paypal/Block/Paypaluk/Payment/Form/Orderstored/Agreement.php +1 -1
  11. app/code/community/CLS/Paypal/CHANGELOG.txt +10 -2
  12. app/code/community/CLS/Paypal/Helper/Data.php +1 -1
  13. app/code/community/CLS/Paypal/Helper/Orderstored/Agreement.php +1 -1
  14. app/code/community/CLS/Paypal/Helper/Paypal/Data.php +1 -1
  15. app/code/community/CLS/Paypal/Helper/Storedcard.php +1 -1
  16. app/code/community/CLS/Paypal/Model/Adminhtml/Sales/Order/Create.php +21 -3
  17. app/code/community/CLS/Paypal/Model/Customerstored.php +1 -1
  18. app/code/community/CLS/Paypal/Model/Observer.php +1 -1
  19. app/code/community/CLS/Paypal/Model/Paypal/Api/Nvp.php +1 -1
  20. app/code/community/CLS/Paypal/Model/Paypal/Config.php +1 -1
  21. app/code/community/CLS/Paypal/Model/Paypal/Direct.php +1 -1
  22. app/code/community/CLS/Paypal/Model/Paypal/Express.php +1 -1
  23. app/code/community/CLS/Paypal/Model/Paypal/Express/Checkout.php +1 -1
  24. app/code/community/CLS/Paypal/Model/Paypal/Info.php +1 -1
  25. app/code/community/CLS/Paypal/Model/Paypal/Method/Orderstored/Agreement.php +1 -1
  26. app/code/community/CLS/Paypal/Model/Paypal/Payflowadvanced.php +1 -1
  27. app/code/community/CLS/Paypal/Model/Paypal/Payflowlink.php +1 -1
  28. app/code/community/CLS/Paypal/Model/Paypal/Payflowpro.php +1 -1
  29. app/code/community/CLS/Paypal/Model/Paypal/Stored/Abstract.php +1 -1
  30. app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored.php +1 -1
  31. app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored/Direct.php +1 -1
  32. app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored/Payflow.php +1 -1
  33. app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored/Payflowadvanced.php +1 -1
  34. app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored/Payflowlink.php +1 -1
  35. app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored/Payflowpro.php +1 -1
  36. app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored.php +23 -5
  37. app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored/Direct.php +1 -1
  38. app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored/Payflow.php +1 -1
  39. app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored/Payflowadvanced.php +1 -1
  40. app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored/Payflowlink.php +1 -1
  41. app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored/Payflowpro.php +1 -1
  42. app/code/community/CLS/Paypal/Model/Paypal/Stored/Payflow.php +1 -1
  43. app/code/community/CLS/Paypal/Model/Paypaluk/Api/Express/Nvp.php +1 -1
  44. app/code/community/CLS/Paypal/Model/Paypaluk/Api/Nvp.php +1 -1
  45. app/code/community/CLS/Paypal/Model/Paypaluk/Api/Nvp/Common.php +1 -1
  46. app/code/community/CLS/Paypal/Model/Paypaluk/Express.php +1 -1
  47. app/code/community/CLS/Paypal/Model/Paypaluk/Express/Checkout.php +1 -1
  48. app/code/community/CLS/Paypal/Model/Paypaluk/Method/Agreement.php +23 -4
  49. app/code/community/CLS/Paypal/Model/Paypaluk/Method/Orderstored/Agreement.php +1 -1
  50. app/code/community/CLS/Paypal/Model/Resource/Customerstored.php +1 -1
  51. app/code/community/CLS/Paypal/Model/Resource/Customerstored/Collection.php +1 -1
  52. app/code/community/CLS/Paypal/Model/System/Config/Backend/Payflowbaenabled.php +1 -1
  53. app/code/community/CLS/Paypal/controllers/Adminhtml/Sales/Order/CreateController.php +1 -1
  54. app/code/community/CLS/Paypal/controllers/Customer/StoredcardController.php +1 -1
  55. app/code/community/CLS/Paypal/controllers/Paypal/ExpressController.php +1 -1
  56. app/code/community/CLS/Paypal/controllers/PaypalUk/ExpressController.php +1 -1
  57. app/code/community/CLS/Paypal/etc/config.xml +2 -2
  58. app/code/community/CLS/Paypal/etc/system.xml +3 -3
  59. app/code/community/CLS/Paypal/sql/cls_paypal_setup/mysql4-install-0.0.1.php +1 -1
  60. app/code/community/CLS/Paypal/sql/cls_paypal_setup/mysql4-upgrade-0.3.0-0.3.1.php +1 -1
  61. app/design/adminhtml/default/default/layout/cls_paypal.xml +1 -1
  62. app/design/adminhtml/default/default/template/cls_paypal/payment/form/cc.phtml +1 -1
  63. app/design/adminhtml/default/default/template/cls_paypal/payment/form/customer_stored.phtml +1 -1
  64. app/design/adminhtml/default/default/template/cls_paypal/payment/form/order_stored.phtml +1 -1
  65. app/design/adminhtml/default/default/template/cls_paypal/sales/order/create/form/address.phtml +1 -1
  66. app/design/adminhtml/default/default/template/cls_paypal/sales/payment/form/orderstored/agreement.phtml +1 -1
  67. app/design/frontend/base/default/layout/cls_paypal.xml +1 -1
  68. app/design/frontend/base/default/template/cls_paypal/customer/storedcard.phtml +1 -1
  69. app/design/frontend/base/default/template/cls_paypal/payment/form/cc.phtml +1 -1
  70. app/design/frontend/base/default/template/cls_paypal/payment/form/customer_stored.phtml +1 -1
  71. app/design/frontend/base/default/template/cls_paypal/paypal/payflow/info.phtml +1 -1
  72. package.xml +5 -5
app/code/community/CLS/Paypal/Block/Adminhtml/Sales/Order/Create/Customer.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Block/Customer/Storedcard.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Block/Payment/Form/Cc.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Block/Paypal/Adminhtml/System/Config/Fieldset/Location.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Block/Paypal/Payflow/Advanced/Form.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Block/Paypal/Payflow/Link/Form.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Block/Paypal/Payment/Form/Customerstored.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Block/Paypal/Payment/Form/Orderstored.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Block/Paypal/Payment/Form/Orderstored/Agreement.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Block/Paypaluk/Payment/Form/Orderstored/Agreement.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/CHANGELOG.txt CHANGED
@@ -1,6 +1,14 @@
1
- CLS_Paypal 1.1.0 (09/11/2013)
2
  =======================================
3
- Backward compatibility through Magento 1.5/1.10
 
 
 
 
 
 
 
 
4
 
5
  CLS_Paypal 1.0.9 (3/25/2014)
6
  =======================================
1
+ CLS_Paypal 1.1.2 (4/18/2013)
2
  =======================================
3
+ [FIXED] Fixed system.xml verisign node, which was causing config to vanish for certain countries
4
+
5
+ CLS_Paypal 1.1.1 (4/5/2013)
6
+ =======================================
7
+ [CHANGED] Minor changes to Connect package file
8
+
9
+ CLS_Paypal 1.1.0 (3/28/2013)
10
+ =======================================
11
+ [ADDED] Backward compatibility through Magento 1.5/1.10
12
 
13
  CLS_Paypal 1.0.9 (3/25/2014)
14
  =======================================
app/code/community/CLS/Paypal/Helper/Data.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Helper/Orderstored/Agreement.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypay
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypay
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Helper/Paypal/Data.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Helper/Storedcard.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Adminhtml/Sales/Order/Create.php CHANGED
@@ -1,11 +1,29 @@
1
  <?php
2
  /**
3
- * Create.php
4
  *
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  * @category CLS
6
  * @package Paypal
7
- * @author Jonathan Hodges <jonathan@classyllama.com>
8
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC
9
  */
10
 
11
  class CLS_Paypal_Model_Adminhtml_Sales_Order_Create extends Mage_Adminhtml_Model_Sales_Order_Create
1
  <?php
2
  /**
3
+ * Classy Llama
4
  *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email to us at
13
+ * support+paypal@classyllama.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade this module
18
+ * to newer versions in the future. If you require customizations of this
19
+ * module for your needs, please write us at sales@classyllama.com.
20
+ *
21
+ * To report bugs or issues with this module, please email support+paypal@classyllama.com.
22
+ *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
29
  class CLS_Paypal_Model_Adminhtml_Sales_Order_Create extends Mage_Adminhtml_Model_Sales_Order_Create
app/code/community/CLS/Paypal/Model/Customerstored.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Observer.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Api/Nvp.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Config.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Direct.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Express.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Express/Checkout.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Info.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Method/Orderstored/Agreement.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Payflowadvanced.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Payflowlink.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Payflowpro.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Stored/Abstract.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored/Direct.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored/Payflow.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored/Payflowadvanced.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored/Payflowlink.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Stored/Customerstored/Payflowpro.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored.php CHANGED
@@ -1,11 +1,29 @@
1
  <?php
2
  /**
3
- * Orderstored.php
4
- * Contains common logic for the "Order stored" methods family
5
  *
6
- * @category CLS
7
- * @package Paypal
8
- * @copyright Copyright (c) 2013 Classy Llama Studios
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  */
10
 
11
  class CLS_Paypal_Model_Paypal_Stored_Orderstored extends CLS_Paypal_Model_Paypal_Stored_Abstract
1
  <?php
2
  /**
3
+ * Classy Llama
 
4
  *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email to us at
13
+ * support+paypal@classyllama.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade this module
18
+ * to newer versions in the future. If you require customizations of this
19
+ * module for your needs, please write us at sales@classyllama.com.
20
+ *
21
+ * To report bugs or issues with this module, please email support+paypal@classyllama.com.
22
+ *
23
+ * @category CLS
24
+ * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
29
  class CLS_Paypal_Model_Paypal_Stored_Orderstored extends CLS_Paypal_Model_Paypal_Stored_Abstract
app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored/Direct.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored/Payflow.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored/Payflowadvanced.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored/Payflowlink.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Stored/Orderstored/Payflowpro.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypal/Stored/Payflow.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypaluk/Api/Express/Nvp.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypaluk/Api/Nvp.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypaluk/Api/Nvp/Common.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypaluk/Express.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypaluk/Express/Checkout.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Paypaluk/Method/Agreement.php CHANGED
@@ -1,10 +1,29 @@
1
  <?php
2
  /**
3
- * Agreement.php
4
  *
5
- * @category CLS
6
- * @package Paypal
7
- * @copyright Copyright (c) 2013 Classy Llama Studios
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  */
9
 
10
  class CLS_Paypal_Model_Paypaluk_Method_Agreement extends Mage_Paypal_Model_Method_Agreement
1
  <?php
2
  /**
3
+ * Classy Llama
4
  *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email to us at
13
+ * support+paypal@classyllama.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade this module
18
+ * to newer versions in the future. If you require customizations of this
19
+ * module for your needs, please write us at sales@classyllama.com.
20
+ *
21
+ * To report bugs or issues with this module, please email support+paypal@classyllama.com.
22
+ *
23
+ * @category CLS
24
+ * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
29
  class CLS_Paypal_Model_Paypaluk_Method_Agreement extends Mage_Paypal_Model_Method_Agreement
app/code/community/CLS/Paypal/Model/Paypaluk/Method/Orderstored/Agreement.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Resource/Customerstored.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/Resource/Customerstored/Collection.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/Model/System/Config/Backend/Payflowbaenabled.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/controllers/Adminhtml/Sales/Order/CreateController.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/controllers/Customer/StoredcardController.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/controllers/Paypal/ExpressController.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/controllers/PaypalUk/ExpressController.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/etc/config.xml CHANGED
@@ -23,14 +23,14 @@
23
  *
24
  * @category CLS
25
  * @package Paypal
26
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
27
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
28
  */
29
  -->
30
  <config>
31
  <modules>
32
  <CLS_Paypal>
33
- <version>1.1.0</version>
34
  </CLS_Paypal>
35
  </modules>
36
 
23
  *
24
  * @category CLS
25
  * @package Paypal
26
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
27
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
28
  */
29
  -->
30
  <config>
31
  <modules>
32
  <CLS_Paypal>
33
+ <version>1.1.2</version>
34
  </CLS_Paypal>
35
  </modules>
36
 
app/code/community/CLS/Paypal/etc/system.xml CHANGED
@@ -23,7 +23,7 @@
23
  *
24
  * @category CLS
25
  * @package Paypal
26
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
27
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
28
  */
29
  -->
@@ -597,7 +597,7 @@
597
  </wpp_settings>
598
  </fields>
599
  </wpp>
600
- <paypal_verisign_with_express_checkout>
601
  <fields>
602
  <settings_paypal_payflow>
603
  <fields>
@@ -1039,7 +1039,7 @@
1039
  </fields>
1040
  </paypal_payflow_express_checkout>
1041
  </fields>
1042
- </paypal_verisign_with_express_checkout>
1043
  <payflow_link>
1044
  <fields>
1045
  <settings_payflow_link>
23
  *
24
  * @category CLS
25
  * @package Paypal
26
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
27
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
28
  */
29
  -->
597
  </wpp_settings>
598
  </fields>
599
  </wpp>
600
+ <paypal_verisign>
601
  <fields>
602
  <settings_paypal_payflow>
603
  <fields>
1039
  </fields>
1040
  </paypal_payflow_express_checkout>
1041
  </fields>
1042
+ </paypal_verisign>
1043
  <payflow_link>
1044
  <fields>
1045
  <settings_payflow_link>
app/code/community/CLS/Paypal/sql/cls_paypal_setup/mysql4-install-0.0.1.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/code/community/CLS/Paypal/sql/cls_paypal_setup/mysql4-upgrade-0.3.0-0.3.1.php CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/design/adminhtml/default/default/layout/cls_paypal.xml CHANGED
@@ -23,7 +23,7 @@
23
  *
24
  * @category CLS
25
  * @package Paypal
26
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
27
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
28
  */
29
  -->
23
  *
24
  * @category CLS
25
  * @package Paypal
26
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
27
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
28
  */
29
  -->
app/design/adminhtml/default/default/template/cls_paypal/payment/form/cc.phtml CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/design/adminhtml/default/default/template/cls_paypal/payment/form/customer_stored.phtml CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/design/adminhtml/default/default/template/cls_paypal/payment/form/order_stored.phtml CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/design/adminhtml/default/default/template/cls_paypal/sales/order/create/form/address.phtml CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/design/adminhtml/default/default/template/cls_paypal/sales/payment/form/orderstored/agreement.phtml CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/design/frontend/base/default/layout/cls_paypal.xml CHANGED
@@ -23,7 +23,7 @@
23
  *
24
  * @category CLS
25
  * @package Paypal
26
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
27
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
28
  */
29
  -->
23
  *
24
  * @category CLS
25
  * @package Paypal
26
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
27
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
28
  */
29
  -->
app/design/frontend/base/default/template/cls_paypal/customer/storedcard.phtml CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/design/frontend/base/default/template/cls_paypal/payment/form/cc.phtml CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/design/frontend/base/default/template/cls_paypal/payment/form/customer_stored.phtml CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
 
app/design/frontend/base/default/template/cls_paypal/paypal/payflow/info.phtml CHANGED
@@ -22,7 +22,7 @@
22
  *
23
  * @category CLS
24
  * @package Paypal
25
- * @copyright Copyright (c) 2013 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
  ?>
22
  *
23
  * @category CLS
24
  * @package Paypal
25
+ * @copyright Copyright (c) 2014 Classy Llama Studios, LLC (http://www.classyllama.com)
26
  * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
27
  */
28
  ?>
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.1.0</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>
@@ -75,11 +75,11 @@ Enable the module's various features from these groups, as well as setting&#xD;
75
  their configuration options independently of the standard credit card&#xD;
76
  and billing agreement configurations.&#xD;
77
  </description>
78
- <notes>Backward compatibility through Magento Community 1.5 and Enterprise 1.10</notes>
79
  <authors><author><name>Classy Llama</name><user>classyllama</user><email>info@classyllama.com</email></author></authors>
80
- <date>2014-03-28</date>
81
- <time>14:55:09</time>
82
- <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="bde8da18c615e29395a47a43016afee8"/></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="7121254114bc9e45efe8a72e7296ed23"/></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="45ce2f47469acdd7ab0258f4fa90d3f9"/><dir name="Helper"><file name="Data.php" hash="59afd4602731b2562d574139f69df383"/><dir name="Orderstored"><file name="Agreement.php" hash="2fad52d6d80fb4ece74dbfe6c4b3fc1a"/></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"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Create.php" hash="425a34dc7a333d56e3e943af504685d9"/></dir></dir></dir><file name="Customerstored.php" hash="b2ada8eb2149ac5d3b62eccab4233fb9"/><file name="Observer.php" hash="9e8199b6cdbda7ee531353b539876fad"/><dir name="Paypal"><dir name="Api"><file name="Nvp.php" hash="74be53d000dfb2a9c0884403059d7e4d"/></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="294bf176eabbd2c6dac52497c3bdc5ba"/></dir></dir><file name="Payflowadvanced.php" hash="ff2f0bbdcaa18c2cbaf0c14b36af51e2"/><file name="Payflowlink.php" hash="3998f25e9166bf8b4cec6c804ac0497f"/><file name="Payflowpro.php" hash="dbfa4f171934f4f26d05515ca5ae36b1"/><dir name="Stored"><file name="Abstract.php" hash="946b41be7b003f821fa091e25974e2e1"/><dir name="Customerstored"><file name="Direct.php" hash="1fb16f32ce53c7825d9460c57de571ef"/><file name="Payflow.php" hash="b01eba2260d72dc3dc60efa6277502b1"/><file name="Payflowadvanced.php" hash="07a730ce0007903705cfa6e6d0717950"/><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="53aa37d3ed6e87e9651d7bc3df773feb"/><file name="Payflowlink.php" hash="71b134111dc49d20692c3ffae3bfa1c7"/><file name="Payflowpro.php" hash="08bac93661b9234b0546ab429f4a3931"/></dir><file name="Orderstored.php" hash="c71ddbfb7dd7fc6b0711f727e6373a84"/><file name="Payflow.php" hash="288f16ab9d9d2b0d8957c8887f528b99"/></dir></dir><dir name="Paypaluk"><dir name="Api"><dir name="Express"><file name="Nvp.php" hash="730e90ff8c15e988459776477fbe04a4"/></dir><dir name="Nvp"><file name="Common.php" hash="af309169674e7714e4d30cfa4a070855"/></dir><file name="Nvp.php" hash="0a8faacb663b9668608a99fb482a1bb5"/></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="0eaf0bed8697692d062d821334fd45ba"/><dir name="Orderstored"><file name="Agreement.php" hash="22d736a97a1a2a293484e4241b545230"/></dir></dir></dir><dir name="Resource"><dir name="Customerstored"><file name="Collection.php" hash="24917dda5cdd4c72d0cc79c64eca7b5d"/></dir><file name="Customerstored.php" hash="7fa78de5b2d148d614fb40489928b809"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="Payflowbaenabled.php" hash="073d66efd2af4e051b36c20933da9eb4"/></dir></dir></dir></dir><file name="README.md" hash="52ca1497160aff5a24a6c824dca5ee46"/><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="517178c5a0065f7b532f8d4fd0c66974"/><file name="system.xml" hash="aa634c796db62712e971b286a14f350f"/></dir><dir name="sql"><dir name="cls_paypal_setup"><file name="mysql4-install-0.0.1.php" hash="4a2b014fa3f6e08710bd77f02937e21a"/><file name="mysql4-upgrade-0.3.0-0.3.1.php" hash="2e160692c289c46fcd0a1f37f90ab7ba"/></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="f985163556d1a644af9e203533162998"/><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 name="enterprise"><dir name="default"><dir name="template"><file name="cls_paypal" hash="d41d8cd98f00b204e9800998ecf8427e"/></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>
83
  <compatible/>
84
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
85
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>CLS_Paypal_Credit_Card_Tokenization</name>
4
+ <version>1.1.2</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>
75
  their configuration options independently of the standard credit card&#xD;
76
  and billing agreement configurations.&#xD;
77
  </description>
78
+ <notes>Fixed system.xml verisign node, which was causing config to vanish for certain countries</notes>
79
  <authors><author><name>Classy Llama</name><user>classyllama</user><email>info@classyllama.com</email></author></authors>
80
+ <date>2014-04-18</date>
81
+ <time>18:05:57</time>
82
+ <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="4217b90d94215a6652dcc698ae348f6c"/></dir></dir></dir></dir><dir name="Customer"><file name="Storedcard.php" hash="1f19b685983a801be9a0e3a5224df987"/></dir><dir name="Payment"><dir name="Form"><file name="Cc.php" hash="4a6046c29e70e5d3668ee9840c642c57"/></dir></dir><dir name="Paypal"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Fieldset"><file name="Location.php" hash="f312d7fd388625f6528f2cdb049f04d7"/></dir></dir></dir></dir><dir name="Payflow"><dir name="Advanced"><file name="Form.php" hash="ab4f2b5d5b90d3d9c59793a44bcd3106"/></dir><dir name="Link"><file name="Form.php" hash="2078d80e9d02f4410ad521d669131f8c"/></dir></dir><dir name="Payment"><dir name="Form"><file name="Customerstored.php" hash="bf998008e870864c4af7f4da7b1f3776"/><dir name="Orderstored"><file name="Agreement.php" hash="96d1322d1ee4aaa1bfb1a29705ad3693"/></dir><file name="Orderstored.php" hash="ad8641f36a240b3582f9c2df872f1e7a"/></dir></dir></dir><dir name="Paypaluk"><dir name="Payment"><dir name="Form"><dir name="Orderstored"><file name="Agreement.php" hash="df2393007cedf8f07a9f5c075875287c"/></dir></dir></dir></dir></dir><file name="CHANGELOG.txt" hash="e5b1e959047c4471b9c6b5557534aed4"/><dir name="Helper"><file name="Data.php" hash="bde8720064fa1918b65d5ad6453202e5"/><dir name="Orderstored"><file name="Agreement.php" hash="87bc057e438e2364bfef6c8aaf298b72"/></dir><dir name="Paypal"><file name="Data.php" hash="334a4067ea02a750ad92d6ef228e5620"/></dir><file name="Storedcard.php" hash="d1dcbd3169146a8be0b0f743e780219b"/></dir><file name="LICENSE.txt" hash="71db18446bebc23ced8dd62644d16b5f"/><dir name="Model"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="Create.php" hash="c4495227ebcf57985c76aee3484fdda8"/></dir></dir></dir><file name="Customerstored.php" hash="b665668e2dea947732e15b807d0ac0d9"/><file name="Observer.php" hash="adc978c7f0d89bc4bfb07a41d4ca1749"/><dir name="Paypal"><dir name="Api"><file name="Nvp.php" hash="1a39867d97056840b3b7220f21e7d8a8"/></dir><file name="Config.php" hash="4c94e4720c26c36373ee60b95fa4f855"/><file name="Direct.php" hash="ef3b0556bf0a42e06540918f6a199c89"/><dir name="Express"><file name="Checkout.php" hash="0089b290510d6558f405837c04b0d28d"/></dir><file name="Express.php" hash="01df608f519c2686f2b92bb29f0d710b"/><file name="Info.php" hash="e9e62f9a4de192ad2e4475cd329239ac"/><dir name="Method"><dir name="Orderstored"><file name="Agreement.php" hash="4e835c3ced7234f1fa85a9ac2135d159"/></dir></dir><file name="Payflowadvanced.php" hash="0c1b29ae87e3d99bc9213c98cd6fce62"/><file name="Payflowlink.php" hash="43d11dce5912b1065c09fc1deb1b8a55"/><file name="Payflowpro.php" hash="6d9dcd5593184acd546ead60988f7b9c"/><dir name="Stored"><file name="Abstract.php" hash="d3d462fdec47a0c7a9fbe400f3db7570"/><dir name="Customerstored"><file name="Direct.php" hash="4d8c9ca1bd51387e30020a5ab7cf18e0"/><file name="Payflow.php" hash="8f7bc5a7711c090c99e368269dff0256"/><file name="Payflowadvanced.php" hash="140b8ce3772c1b1e7eba27fda3621b40"/><file name="Payflowlink.php" hash="ec10930f8e13759b7eee19eca2a1a402"/><file name="Payflowpro.php" hash="e3e9106c86b2121d5bc22346cedb5e70"/></dir><file name="Customerstored.php" hash="b23a5792ec29617d5a67dc2b46eec014"/><dir name="Orderstored"><file name="Direct.php" hash="b5e43e468696da57104d14558cbf6796"/><file name="Payflow.php" hash="39d2b02a4ca5f21966d3733800edeb74"/><file name="Payflowadvanced.php" hash="81983792d914701ff5853e2372c62e87"/><file name="Payflowlink.php" hash="b2a23f8f793d4791207580eec2a1614c"/><file name="Payflowpro.php" hash="e740ceaeb6b6eabb7bf69d91c802248c"/></dir><file name="Orderstored.php" hash="da3695a5c11bc9692c44985682faf763"/><file name="Payflow.php" hash="cf8395c60cd48a890366932e0b771a2b"/></dir></dir><dir name="Paypaluk"><dir name="Api"><dir name="Express"><file name="Nvp.php" hash="e7f2f3d43460963e0c03be0e2570b945"/></dir><dir name="Nvp"><file name="Common.php" hash="61d14420b595f41ee05dcac38e7b6a30"/></dir><file name="Nvp.php" hash="cd91e35953728ec23cc3d12d370b3d01"/></dir><dir name="Express"><file name="Checkout.php" hash="30be50f4f37c4dd86a030ef8d8e746ab"/></dir><file name="Express.php" hash="3bd2447989120a23637112e83440bc34"/><dir name="Method"><file name="Agreement.php" hash="6130d3dd630e45822af00c03e43d2fdd"/><dir name="Orderstored"><file name="Agreement.php" hash="128ebc81894ff25ba713b4d4817dfda3"/></dir></dir></dir><dir name="Resource"><dir name="Customerstored"><file name="Collection.php" hash="c4005ceb547f913b6045ec83176d1183"/></dir><file name="Customerstored.php" hash="4817d0cc17fd7878db7635bdaf4d28ca"/></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="Payflowbaenabled.php" hash="01eea301e74636cfb3446a32875696f8"/></dir></dir></dir></dir><file name="README.md" hash="52ca1497160aff5a24a6c824dca5ee46"/><dir name="controllers"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="CreateController.php" hash="7f38863fd347676405af75c90fce8eff"/></dir></dir></dir><dir name="Customer"><file name="StoredcardController.php" hash="265534f272fb6fc7a8c6198db29d0bbe"/></dir><dir name="Paypal"><file name="ExpressController.php" hash="8fed9e49c3fa4bf4d4f8f29e724a662c"/></dir><dir name="PaypalUk"><file name="ExpressController.php" hash="ffe83acff5913404d49009a18c912884"/></dir></dir><dir name="etc"><file name="config.xml" hash="e682a1ccdc29a84f26c71997a345830d"/><file name="system.xml" hash="ca0b09ccdfc71097e537e28188fb29d6"/></dir><dir name="sql"><dir name="cls_paypal_setup"><file name="mysql4-install-0.0.1.php" hash="11c35e801f758a3ce8b72cdeb8582ca1"/><file name="mysql4-upgrade-0.3.0-0.3.1.php" hash="238220d8673832b5c6bdc6904cd616b5"/></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="79f01d08391f43d036eda62b7e065ab0"/></dir><dir name="template"><dir name="cls_paypal"><dir name="payment"><dir name="form"><file name="cc.phtml" hash="18374f975a2b4a2ff54d4694be4a994c"/><file name="customer_stored.phtml" hash="12522cb9f7acd46b1ffb61d1537994da"/><file name="order_stored.phtml" hash="b621f2c672d66cf418737cf68669976c"/></dir></dir><dir name="sales"><dir name="order"><dir name="create"><dir name="form"><file name="address.phtml" hash="1c6b60a4758aac055e935dfd56f468ae"/></dir></dir></dir><dir name="payment"><dir name="form"><dir name="orderstored"><file name="agreement.phtml" hash="a7c7568b9a7dda44673c1c195906f611"/></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="4c37fcb580cbcaa1a01a897045758728"/></dir><dir name="template"><dir name="cls_paypal"><dir name="customer"><file name="storedcard.phtml" hash="0561300c7a3185739f42a60d4afe0c6d"/></dir><dir name="payment"><dir name="form"><file name="cc.phtml" hash="3980e7d249cfd0990ec2a1b9a26d6f5c"/><file name="customer_stored.phtml" hash="71a894688d69f295f24e79239b2735c0"/></dir></dir><dir name="paypal"><dir name="payflow"><file name="info.phtml" hash="634070bc37d37dcb5a434f388d8a303c"/></dir></dir></dir></dir></dir></dir><dir name="enterprise"><dir name="default"><dir name="template"><file name="cls_paypal" hash="d41d8cd98f00b204e9800998ecf8427e"/></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>
83
  <compatible/>
84
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
85
  </package>