Quadra_Paybox - Version 2.1.4

Version Notes

Changelog:

2.1.4:
- Add paybox payment server response debug.

2.1.3:
- Add new Paybox server address IP used in IP check

2.1.2:
- Fix bug with api debug multishipping informaion
- Fix bug with api debug view in back-office

2.1.1:
- Fix bug with api debug table
- Add table view in back-office

2.1.0:
- Bug fixed with Paybox Direct
- Bug fixed with multishipping
- Add Paybox System intermediate page configuration

2.0.2:
- Some fields in the configuration of the module are now configurable in store view
- The field "empty cart" was added

2.0.1:
- Stable version

2.0.0:
- Magento 1.5 compatibility
- Multishipping compatibility
- Bug fixed with magento 1.4
- Beta version

Download this release

Release Info

Developer Magento Core Team
Extension Quadra_Paybox
Version 2.1.4
Comparing to
See all releases


Code changes from version 2.1.3 to 2.1.4

Files changed (73) hide show
  1. app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug.php +1 -1
  2. app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/Grid.php +6 -1
  3. app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/Request.php +1 -1
  4. app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/Request/Grid.php +1 -1
  5. app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/Response.php +1 -1
  6. app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/Response/Grid.php +1 -1
  7. app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/ResponseServer/Grid.php +85 -0
  8. app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View.php +1 -1
  9. app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View/Form.php +1 -1
  10. app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View/Tab/Request.php +1 -1
  11. app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View/Tab/Response.php +1 -1
  12. app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View/Tab/ResponseServer.php +75 -0
  13. app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View/Tabs.php +6 -1
  14. app/code/community/Quadra/Paybox/Block/Adminhtml/Cart/Type.php +1 -1
  15. app/code/community/Quadra/Paybox/Block/Adminhtml/Cart/Type/Select.php +1 -1
  16. app/code/community/Quadra/Paybox/Block/Adminhtml/Question/Number.php +1 -1
  17. app/code/community/Quadra/Paybox/Block/Adminhtml/Question/Number/Grid.php +1 -1
  18. app/code/community/Quadra/Paybox/Block/Adminhtml/System/Config/Form/Field/Backuppaymentserver.php +1 -1
  19. app/code/community/Quadra/Paybox/Block/Direct/Form.php +1 -1
  20. app/code/community/Quadra/Paybox/Block/Direct/Info.php +1 -1
  21. app/code/community/Quadra/Paybox/Block/System/Error.php +1 -1
  22. app/code/community/Quadra/Paybox/Block/System/Failure.php +1 -1
  23. app/code/community/Quadra/Paybox/Block/System/Form.php +1 -1
  24. app/code/community/Quadra/Paybox/Block/System/Redirect.php +1 -1
  25. app/code/community/Quadra/Paybox/Helper/Data.php +1 -1
  26. app/code/community/Quadra/Paybox/Model/Api/Debug.php +1 -1
  27. app/code/community/Quadra/Paybox/Model/Config/Data/Paybox.php +1 -1
  28. app/code/community/Quadra/Paybox/Model/Direct.php +1 -1
  29. app/code/community/Quadra/Paybox/Model/Mysql4/Api/Debug.php +1 -1
  30. app/code/community/Quadra/Paybox/Model/Mysql4/Api/Debug/Collection.php +1 -1
  31. app/code/community/Quadra/Paybox/Model/Mysql4/Question/Number.php +1 -1
  32. app/code/community/Quadra/Paybox/Model/Mysql4/Question/Number/Collection.php +1 -1
  33. app/code/community/Quadra/Paybox/Model/Mysql4/Setup.php +1 -1
  34. app/code/community/Quadra/Paybox/Model/Observer.php +1 -1
  35. app/code/community/Quadra/Paybox/Model/Question/Number.php +1 -1
  36. app/code/community/Quadra/Paybox/Model/Source/CartType.php +1 -1
  37. app/code/community/Quadra/Paybox/Model/Source/Cctype.php +1 -1
  38. app/code/community/Quadra/Paybox/Model/Source/Language.php +1 -1
  39. app/code/community/Quadra/Paybox/Model/Source/ManagementMode.php +1 -1
  40. app/code/community/Quadra/Paybox/Model/Source/MethodCall.php +1 -1
  41. app/code/community/Quadra/Paybox/Model/Source/PaymentAction.php +1 -1
  42. app/code/community/Quadra/Paybox/Model/Source/PaymentMode.php +1 -1
  43. app/code/community/Quadra/Paybox/Model/Source/PaymentType.php +1 -1
  44. app/code/community/Quadra/Paybox/Model/System.php +3 -3
  45. app/code/community/Quadra/Paybox/Model/System/Config/Source/Order/Status.php +1 -1
  46. app/code/community/Quadra/Paybox/Model/System/Config/Source/Order/Status/Accepted.php +1 -1
  47. app/code/community/Quadra/Paybox/Model/System/Config/Source/Order/Status/Canceled.php +1 -1
  48. app/code/community/Quadra/Paybox/Model/System/Config/Source/Order/Status/New.php +1 -1
  49. app/code/community/Quadra/Paybox/Model/System/Config/Source/Order/Status/Refused.php +1 -1
  50. app/code/community/Quadra/Paybox/controllers/Adminhtml/Api/DebugController.php +1 -1
  51. app/code/community/Quadra/Paybox/controllers/Adminhtml/Question/NumberController.php +1 -1
  52. app/code/community/Quadra/Paybox/controllers/SystemController.php +8 -1
  53. app/code/community/Quadra/Paybox/etc/config.xml +2 -8
  54. app/code/community/Quadra/Paybox/etc/currency.xml +1 -1
  55. app/code/community/Quadra/Paybox/etc/system.xml +1 -1
  56. app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-install-0.1.0.php +1 -1
  57. app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-upgrade-0.1.0-0.1.1.php +1 -1
  58. app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-upgrade-0.1.1-0.1.2.php +1 -1
  59. app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-upgrade-0.1.2-0.1.3.php +1 -1
  60. app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-upgrade-1.2.4-1.2.5.php +1 -1
  61. app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-upgrade-2.1.3-2.1.4.php +27 -0
  62. app/design/adminhtml/default/default/template/paybox/adminhtml/cart/type/select.phtml +1 -1
  63. app/design/adminhtml/default/default/template/paybox/direct/form.phtml +1 -1
  64. app/design/adminhtml/default/default/template/paybox/direct/info.phtml +1 -1
  65. app/design/adminhtml/default/default/template/paybox/direct/pdf/info.phtml +1 -1
  66. app/design/frontend/default/default/layout/paybox.xml +1 -1
  67. app/design/frontend/default/default/template/paybox/direct/form.phtml +1 -1
  68. app/design/frontend/default/default/template/paybox/direct/info.phtml +1 -1
  69. app/design/frontend/default/default/template/paybox/system/error.phtml +1 -1
  70. app/design/frontend/default/default/template/paybox/system/form.phtml +1 -1
  71. app/design/frontend/default/default/template/paybox/system/notify.phtml +1 -1
  72. app/etc/modules/Quadra_Paybox.xml +1 -1
  73. package.xml +7 -4
app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug extends Mage_Adminhtml_Block_Widget_Grid_Container {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug extends Mage_Adminhtml_Block_Widget_Grid_Container {
app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/Grid.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_Grid extends Mage_Adminhtml_Block_Widget_Grid {
@@ -56,6 +56,11 @@ class Quadra_Paybox_Block_Adminhtml_Api_Debug_Grid extends Mage_Adminhtml_Block_
56
  'index' => 'response_body'
57
  ));
58
 
 
 
 
 
 
59
  $this->addColumn('action', array(
60
  'header' => Mage::helper('paybox')->__('Action'),
61
  'type' => 'action',
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_Grid extends Mage_Adminhtml_Block_Widget_Grid {
56
  'index' => 'response_body'
57
  ));
58
 
59
+ $this->addColumn('pbx_response_body', array(
60
+ 'header' => Mage::helper('paybox')->__('Paybox Server Response'),
61
+ 'index' => 'pbx_response_body'
62
+ ));
63
+
64
  $this->addColumn('action', array(
65
  'header' => Mage::helper('paybox')->__('Action'),
66
  'type' => 'action',
app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/Request.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_Request extends Mage_Adminhtml_Block_Widget_Grid_Container {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_Request extends Mage_Adminhtml_Block_Widget_Grid_Container {
app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/Request/Grid.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_Request_Grid extends Mage_Adminhtml_Block_Widget_Grid {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_Request_Grid extends Mage_Adminhtml_Block_Widget_Grid {
app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/Response.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_Response extends Mage_Adminhtml_Block_Widget_Grid_Container {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_Response extends Mage_Adminhtml_Block_Widget_Grid_Container {
app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/Response/Grid.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_Response_Grid extends Mage_Adminhtml_Block_Widget_Grid {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_Response_Grid extends Mage_Adminhtml_Block_Widget_Grid {
app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/ResponseServer/Grid.php ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * 1997-2013 Quadra Informatique
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0) that is available
9
+ * through the world-wide-web at this URL: http://www.opensource.org/licenses/OSL-3.0
10
+ * If you are unable to obtain it through the world-wide-web, please send an email
11
+ * to ecommerce@quadra-informatique.fr so we can send you a copy immediately.
12
+ *
13
+ * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
+ * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
+ * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
+ */
18
+ class Quadra_Paybox_Block_Adminhtml_Api_Debug_ResponseServer_Grid extends Mage_Adminhtml_Block_Widget_Grid {
19
+
20
+ public function __construct() {
21
+ parent::__construct();
22
+ $this->setId('paybox_api_debug_responseserver_grid');
23
+ $this->_filterVisibility = false;
24
+ $this->_pagerVisibility = false;
25
+ }
26
+
27
+ protected function _prepareGrid() {
28
+ $this->_prepareCollection();
29
+ $this->_prepareColumns();
30
+ $this->_prepareMassactionBlock();
31
+ return $this;
32
+ }
33
+
34
+ protected function _prepareCollection() {
35
+ $this->_collection = new Varien_Data_Collection();
36
+ $this->_loadCollection();
37
+ $this->setCollection($this->_collection);
38
+ return parent::_prepareCollection();
39
+ }
40
+
41
+ protected function _loadCollection() {
42
+ $collection = Mage::getResourceModel('paybox/api_debug_collection')
43
+ ->addFieldToFilter('debug_id', $this->getRequest()->getParam('id'));
44
+ $object = new Varien_Object();
45
+ foreach ($collection->getItems() as $item) {
46
+ $item = $item->getData();
47
+ if ($item['real_order_id'] > 0) {
48
+ // Paybox System
49
+ foreach (unserialize($item['pbx_response_body']) as $key => $value)
50
+ $object->setData($key, $value);
51
+ } else {
52
+ // Paybox Direct
53
+ $object->setData('Response', 'No payment server response with direct method, check the reponse.');
54
+ }
55
+
56
+ $this->_collection->addItem($object);
57
+ }
58
+ }
59
+
60
+ protected function _prepareColumns() {
61
+ foreach ($this->getCollection()->getItems() as $item) {
62
+ foreach (array_keys($item->getData()) as $key) {
63
+ $this->addColumn($key, array(
64
+ 'header' => Mage::helper('paybox')->__($key),
65
+ 'index' => $key
66
+ ));
67
+ }
68
+ }
69
+
70
+ return parent::_prepareColumns();
71
+ }
72
+
73
+ protected function _prepareMassaction() {
74
+ return $this;
75
+ }
76
+
77
+ public function getGridUrl() {
78
+ return false;
79
+ }
80
+
81
+ public function getRowUrl($row) {
82
+ return false;
83
+ }
84
+
85
+ }
app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_View extends Mage_Adminhtml_Block_Widget_Form_Container {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_View extends Mage_Adminhtml_Block_Widget_Form_Container {
app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View/Form.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_View_Form extends Mage_Adminhtml_Block_Widget_Form {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_View_Form extends Mage_Adminhtml_Block_Widget_Form {
app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View/Tab/Request.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_View_Tab_Request extends Quadra_Paybox_Block_Adminhtml_Api_Debug_Request_Grid
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_View_Tab_Request extends Quadra_Paybox_Block_Adminhtml_Api_Debug_Request_Grid
app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View/Tab/Response.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_View_Tab_Response extends Quadra_Paybox_Block_Adminhtml_Api_Debug_Response_Grid
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_View_Tab_Response extends Quadra_Paybox_Block_Adminhtml_Api_Debug_Response_Grid
app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View/Tab/ResponseServer.php ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * 1997-2013 Quadra Informatique
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0) that is available
9
+ * through the world-wide-web at this URL: http://www.opensource.org/licenses/OSL-3.0
10
+ * If you are unable to obtain it through the world-wide-web, please send an email
11
+ * to ecommerce@quadra-informatique.fr so we can send you a copy immediately.
12
+ *
13
+ * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
+ * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
+ * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
+ */
18
+ class Quadra_Paybox_Block_Adminhtml_Api_Debug_View_Tab_ResponseServer extends Quadra_Paybox_Block_Adminhtml_Api_Debug_ResponseServer_Grid
19
+ implements Mage_Adminhtml_Block_Widget_Tab_Interface {
20
+
21
+ /**
22
+ * Retrieve grid url
23
+ *
24
+ * @return string
25
+ */
26
+ public function getGridUrl() {
27
+ return false;
28
+ }
29
+
30
+ /**
31
+ * Retrieve grid row url
32
+ *
33
+ * @return string
34
+ */
35
+ public function getRowUrl($item) {
36
+ return false;
37
+ }
38
+
39
+ /**
40
+ * Retrieve tab label
41
+ *
42
+ * @return string
43
+ */
44
+ public function getTabLabel() {
45
+ return Mage::helper('paybox')->__('Paybox Payment Server Response');
46
+ }
47
+
48
+ /**
49
+ * Retrieve tab title
50
+ *
51
+ * @return string
52
+ */
53
+ public function getTabTitle() {
54
+ return Mage::helper('paybox')->__('Paybox Payment Server Response');
55
+ }
56
+
57
+ /**
58
+ * Check whether can show tab
59
+ *
60
+ * @return bool
61
+ */
62
+ public function canShowTab() {
63
+ return true;
64
+ }
65
+
66
+ /**
67
+ * Check whether tab is hidden
68
+ *
69
+ * @return bool
70
+ */
71
+ public function isHidden() {
72
+ return false;
73
+ }
74
+
75
+ }
app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View/Tabs.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_View_Tabs extends Mage_Adminhtml_Block_Widget_Tabs {
@@ -35,6 +35,11 @@ class Quadra_Paybox_Block_Adminhtml_Api_Debug_View_Tabs extends Mage_Adminhtml_B
35
  'title' => $this->__('Response'),
36
  'content' => $this->getLayout()->createBlock('paybox/adminhtml_api_debug_view_tab_response')->toHtml()
37
  ));
 
 
 
 
 
38
  return parent::_beforeToHtml();
39
  }
40
 
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Api_Debug_View_Tabs extends Mage_Adminhtml_Block_Widget_Tabs {
35
  'title' => $this->__('Response'),
36
  'content' => $this->getLayout()->createBlock('paybox/adminhtml_api_debug_view_tab_response')->toHtml()
37
  ));
38
+ $this->addTab('responseserver_section', array(
39
+ 'label' => $this->__('Server Response'),
40
+ 'title' => $this->__('Server Response'),
41
+ 'content' => $this->getLayout()->createBlock('paybox/adminhtml_api_debug_view_tab_responseServer')->toHtml()
42
+ ));
43
  return parent::_beforeToHtml();
44
  }
45
 
app/code/community/Quadra/Paybox/Block/Adminhtml/Cart/Type.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Cart_Type extends Mage_Adminhtml_Block_System_Config_Form_Field {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Cart_Type extends Mage_Adminhtml_Block_System_Config_Form_Field {
app/code/community/Quadra/Paybox/Block/Adminhtml/Cart/Type/Select.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Cart_Type_Select extends Mage_Adminhtml_Block_Template {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Cart_Type_Select extends Mage_Adminhtml_Block_Template {
app/code/community/Quadra/Paybox/Block/Adminhtml/Question/Number.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Question_Number extends Mage_Adminhtml_Block_Widget_Grid_Container {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Question_Number extends Mage_Adminhtml_Block_Widget_Grid_Container {
app/code/community/Quadra/Paybox/Block/Adminhtml/Question/Number/Grid.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Question_Number_Grid extends Mage_Adminhtml_Block_Widget_Grid {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_Question_Number_Grid extends Mage_Adminhtml_Block_Widget_Grid {
app/code/community/Quadra/Paybox/Block/Adminhtml/System/Config/Form/Field/Backuppaymentserver.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_System_Config_Form_Field_Backuppaymentserver extends Mage_Adminhtml_Block_System_Config_Form_Field_Array_Abstract {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Adminhtml_System_Config_Form_Field_Backuppaymentserver extends Mage_Adminhtml_Block_System_Config_Form_Field_Array_Abstract {
app/code/community/Quadra/Paybox/Block/Direct/Form.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Direct_Form extends Mage_Payment_Block_Form_Cc {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Direct_Form extends Mage_Payment_Block_Form_Cc {
app/code/community/Quadra/Paybox/Block/Direct/Info.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Direct_Info extends Mage_Payment_Block_Info_Cc {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_Direct_Info extends Mage_Payment_Block_Info_Cc {
app/code/community/Quadra/Paybox/Block/System/Error.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_System_Error extends Mage_Core_Block_Template {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_System_Error extends Mage_Core_Block_Template {
app/code/community/Quadra/Paybox/Block/System/Failure.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_System_Failure extends Mage_Core_Block_Template {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_System_Failure extends Mage_Core_Block_Template {
app/code/community/Quadra/Paybox/Block/System/Form.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_System_Form extends Mage_Payment_Block_Form {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_System_Form extends Mage_Payment_Block_Form {
app/code/community/Quadra/Paybox/Block/System/Redirect.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_System_Redirect extends Mage_Core_Block_Abstract {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Block_System_Redirect extends Mage_Core_Block_Abstract {
app/code/community/Quadra/Paybox/Helper/Data.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Helper_Data extends Mage_Core_Helper_Abstract {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Helper_Data extends Mage_Core_Helper_Abstract {
app/code/community/Quadra/Paybox/Model/Api/Debug.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Api_Debug extends Mage_Core_Model_Abstract {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Api_Debug extends Mage_Core_Model_Abstract {
app/code/community/Quadra/Paybox/Model/Config/Data/Paybox.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Config_Data_Paybox extends Mage_Core_Model_Config_Data {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Config_Data_Paybox extends Mage_Core_Model_Config_Data {
app/code/community/Quadra/Paybox/Model/Direct.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Direct extends Mage_Payment_Model_Method_Cc {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Direct extends Mage_Payment_Model_Method_Cc {
app/code/community/Quadra/Paybox/Model/Mysql4/Api/Debug.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Mysql4_Api_Debug extends Mage_Core_Model_Mysql4_Abstract {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Mysql4_Api_Debug extends Mage_Core_Model_Mysql4_Abstract {
app/code/community/Quadra/Paybox/Model/Mysql4/Api/Debug/Collection.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Mysql4_Api_Debug_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Mysql4_Api_Debug_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract {
app/code/community/Quadra/Paybox/Model/Mysql4/Question/Number.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Mysql4_Question_Number extends Mage_Core_Model_Mysql4_Abstract {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Mysql4_Question_Number extends Mage_Core_Model_Mysql4_Abstract {
app/code/community/Quadra/Paybox/Model/Mysql4/Question/Number/Collection.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Mysql4_Question_Number_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Mysql4_Question_Number_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract {
app/code/community/Quadra/Paybox/Model/Mysql4/Setup.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Mysql4_Setup extends Mage_Sales_Model_Mysql4_Setup {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Mysql4_Setup extends Mage_Sales_Model_Mysql4_Setup {
app/code/community/Quadra/Paybox/Model/Observer.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Observer {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Observer {
app/code/community/Quadra/Paybox/Model/Question/Number.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Question_Number extends Mage_Core_Model_Abstract {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Question_Number extends Mage_Core_Model_Abstract {
app/code/community/Quadra/Paybox/Model/Source/CartType.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Source_CartType {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Source_CartType {
app/code/community/Quadra/Paybox/Model/Source/Cctype.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Source_Cctype extends Mage_Payment_Model_Source_Cctype {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Source_Cctype extends Mage_Payment_Model_Source_Cctype {
app/code/community/Quadra/Paybox/Model/Source/Language.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Source_Language {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Source_Language {
app/code/community/Quadra/Paybox/Model/Source/ManagementMode.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Source_ManagementMode {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Source_ManagementMode {
app/code/community/Quadra/Paybox/Model/Source/MethodCall.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Source_MethodCall {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Source_MethodCall {
app/code/community/Quadra/Paybox/Model/Source/PaymentAction.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Source_PaymentAction {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Source_PaymentAction {
app/code/community/Quadra/Paybox/Model/Source/PaymentMode.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Source_PaymentMode {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Source_PaymentMode {
app/code/community/Quadra/Paybox/Model/Source/PaymentType.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Source_PaymentType {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_Source_PaymentType {
app/code/community/Quadra/Paybox/Model/System.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_System extends Mage_Payment_Model_Method_Abstract {
@@ -524,7 +524,7 @@ class Quadra_Paybox_Model_System extends Mage_Payment_Model_Method_Abstract {
524
  }
525
 
526
  if ($this->getDebugFlag()) {
527
- Mage::getModel('paybox/api_debug')
528
  ->setRealOrderId($this->getOrderList())
529
  ->setRequestBody(serialize($fieldsArr))
530
  ->save();
@@ -541,7 +541,7 @@ class Quadra_Paybox_Model_System extends Mage_Payment_Model_Method_Abstract {
541
  */
542
  public function checkResponse($response) {
543
  if ($this->getDebugFlag()) {
544
- $debug = Mage::getModel('paybox/api_debug')
545
  ->load($response['ref'], 'real_order_id')
546
  ->setResponseBody(serialize($response))
547
  ->save();
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_System extends Mage_Payment_Model_Method_Abstract {
524
  }
525
 
526
  if ($this->getDebugFlag()) {
527
+ Mage::getSingleton('paybox/api_debug')
528
  ->setRealOrderId($this->getOrderList())
529
  ->setRequestBody(serialize($fieldsArr))
530
  ->save();
541
  */
542
  public function checkResponse($response) {
543
  if ($this->getDebugFlag()) {
544
+ $debug = Mage::getSingleton('paybox/api_debug')
545
  ->load($response['ref'], 'real_order_id')
546
  ->setResponseBody(serialize($response))
547
  ->save();
app/code/community/Quadra/Paybox/Model/System/Config/Source/Order/Status.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_System_Config_Source_Order_Status {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_System_Config_Source_Order_Status {
app/code/community/Quadra/Paybox/Model/System/Config/Source/Order/Status/Accepted.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_System_Config_Source_Order_Status_Accepted extends Quadra_Paybox_Model_System_Config_Source_Order_Status {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_System_Config_Source_Order_Status_Accepted extends Quadra_Paybox_Model_System_Config_Source_Order_Status {
app/code/community/Quadra/Paybox/Model/System/Config/Source/Order/Status/Canceled.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_System_Config_Source_Order_Status_Canceled extends Quadra_Paybox_Model_System_Config_Source_Order_Status {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_System_Config_Source_Order_Status_Canceled extends Quadra_Paybox_Model_System_Config_Source_Order_Status {
app/code/community/Quadra/Paybox/Model/System/Config/Source/Order/Status/New.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_System_Config_Source_Order_Status_New extends Quadra_Paybox_Model_System_Config_Source_Order_Status {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_System_Config_Source_Order_Status_New extends Quadra_Paybox_Model_System_Config_Source_Order_Status {
app/code/community/Quadra/Paybox/Model/System/Config/Source/Order/Status/Refused.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_System_Config_Source_Order_Status_Refused extends Quadra_Paybox_Model_System_Config_Source_Order_Status {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Model_System_Config_Source_Order_Status_Refused extends Quadra_Paybox_Model_System_Config_Source_Order_Status {
app/code/community/Quadra/Paybox/controllers/Adminhtml/Api/DebugController.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Adminhtml_Api_DebugController extends Mage_Adminhtml_Controller_Action {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Adminhtml_Api_DebugController extends Mage_Adminhtml_Controller_Action {
app/code/community/Quadra/Paybox/controllers/Adminhtml/Question/NumberController.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Adminhtml_Question_NumberController extends Mage_Adminhtml_Controller_Action {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_Adminhtml_Question_NumberController extends Mage_Adminhtml_Controller_Action {
app/code/community/Quadra/Paybox/controllers/SystemController.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_SystemController extends Mage_Core_Controller_Front_Action {
@@ -485,6 +485,13 @@ class Quadra_Paybox_SystemController extends Mage_Core_Controller_Front_Action {
485
  $params = $this->getRequest()->getParams();
486
  $this->setPayboxResponse($params);
487
 
 
 
 
 
 
 
 
488
  // Vérification des adresses IP des serveurs Paybox
489
  $unauthorized_server = false;
490
  if ($model->getConfigData('pbx_check_ip')) {
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  class Quadra_Paybox_SystemController extends Mage_Core_Controller_Front_Action {
485
  $params = $this->getRequest()->getParams();
486
  $this->setPayboxResponse($params);
487
 
488
+ if ($model->getDebugFlag()) {
489
+ Mage::getSingleton('paybox/api_debug')
490
+ ->load($params['ref'], 'real_order_id')
491
+ ->setPbxResponseBody(serialize($params))
492
+ ->save();
493
+ }
494
+
495
  // Vérification des adresses IP des serveurs Paybox
496
  $unauthorized_server = false;
497
  if ($model->getConfigData('pbx_check_ip')) {
app/code/community/Quadra/Paybox/etc/config.xml CHANGED
@@ -12,14 +12,14 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  -->
19
  <config>
20
  <modules>
21
  <Quadra_Paybox>
22
- <version>2.1.3</version>
23
  </Quadra_Paybox>
24
  </modules>
25
  <global>
@@ -47,12 +47,6 @@
47
  <question_number>
48
  <table>paybox_question_number</table>
49
  </question_number>
50
- <log_request>
51
- <table>paybox_system_log_request</table>
52
- </log_request>
53
- <log_response>
54
- <table>payblox_system_log_response</table>
55
- </log_response>
56
  </entities>
57
  </paybox_mysql4>
58
  </models>
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  -->
19
  <config>
20
  <modules>
21
  <Quadra_Paybox>
22
+ <version>2.1.4</version>
23
  </Quadra_Paybox>
24
  </modules>
25
  <global>
47
  <question_number>
48
  <table>paybox_question_number</table>
49
  </question_number>
 
 
 
 
 
 
50
  </entities>
51
  </paybox_mysql4>
52
  </models>
app/code/community/Quadra/Paybox/etc/currency.xml CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  -->
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  -->
app/code/community/Quadra/Paybox/etc/system.xml CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  -->
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  -->
app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-install-0.1.0.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
 
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
 
app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-upgrade-0.1.0-0.1.1.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
 
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
 
app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-upgrade-0.1.1-0.1.2.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
 
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
 
app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-upgrade-0.1.2-0.1.3.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
 
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
 
app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-upgrade-1.2.4-1.2.5.php CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
 
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
 
app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-upgrade-2.1.3-2.1.4.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * 1997-2013 Quadra Informatique
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Open Software License (OSL 3.0) that is available
9
+ * through the world-wide-web at this URL: http://www.opensource.org/licenses/OSL-3.0
10
+ * If you are unable to obtain it through the world-wide-web, please send an email
11
+ * to ecommerce@quadra-informatique.fr so we can send you a copy immediately.
12
+ *
13
+ * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
+ * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
+ * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
+ */
18
+
19
+ $installer = $this;
20
+
21
+ $installer->startSetup();
22
+
23
+ $installer->run("
24
+ ALTER TABLE `{$this->getTable('paybox/api_debug')}` ADD COLUMN `pbx_response_body` text;
25
+ ");
26
+
27
+ $installer->endSetup();
app/design/adminhtml/default/default/template/paybox/adminhtml/cart/type/select.phtml CHANGED
@@ -11,7 +11,7 @@
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
- * @version Release: $Revision: 2.1.3 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
+ * @version Release: $Revision: 2.1.4 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
app/design/adminhtml/default/default/template/paybox/direct/form.phtml CHANGED
@@ -11,7 +11,7 @@
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
- * @version Release: $Revision: 2.1.3 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
+ * @version Release: $Revision: 2.1.4 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
app/design/adminhtml/default/default/template/paybox/direct/info.phtml CHANGED
@@ -11,7 +11,7 @@
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
- * @version Release: $Revision: 2.1.3 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
+ * @version Release: $Revision: 2.1.4 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
app/design/adminhtml/default/default/template/paybox/direct/pdf/info.phtml CHANGED
@@ -11,7 +11,7 @@
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
- * @version Release: $Revision: 2.1.3 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
+ * @version Release: $Revision: 2.1.4 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
app/design/frontend/default/default/layout/paybox.xml CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  -->
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  -->
app/design/frontend/default/default/template/paybox/direct/form.phtml CHANGED
@@ -11,7 +11,7 @@
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
- * @version Release: $Revision: 2.1.3 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
+ * @version Release: $Revision: 2.1.4 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
app/design/frontend/default/default/template/paybox/direct/info.phtml CHANGED
@@ -11,7 +11,7 @@
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
- * @version Release: $Revision: 2.1.3 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
+ * @version Release: $Revision: 2.1.4 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
app/design/frontend/default/default/template/paybox/system/error.phtml CHANGED
@@ -11,7 +11,7 @@
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
- * @version Release: $Revision: 2.1.3 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
+ * @version Release: $Revision: 2.1.4 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
app/design/frontend/default/default/template/paybox/system/form.phtml CHANGED
@@ -11,7 +11,7 @@
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
- * @version Release: $Revision: 2.1.3 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
+ * @version Release: $Revision: 2.1.4 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
app/design/frontend/default/default/template/paybox/system/notify.phtml CHANGED
@@ -11,7 +11,7 @@
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
- * @version Release: $Revision: 2.1.3 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
11
  *
12
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
13
  * @copyright 1997-2013 Quadra Informatique
14
+ * @version Release: $Revision: 2.1.4 $
15
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
16
  */
17
  ?>
app/etc/modules/Quadra_Paybox.xml CHANGED
@@ -12,7 +12,7 @@
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
- * @version Release: $Revision: 2.1.3 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  -->
12
  *
13
  * @author Quadra Informatique <ecommerce@quadra-informatique.fr>
14
  * @copyright 1997-2013 Quadra Informatique
15
+ * @version Release: $Revision: 2.1.4 $
16
  * @license http://www.opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
17
  */
18
  -->
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Quadra_Paybox</name>
4
- <version>2.1.3</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>
@@ -10,6 +10,9 @@
10
  <description>The extension provides Paybox payment integration. Allows make payments through Paybox methods.</description>
11
  <notes>Changelog:&#xD;
12
  &#xD;
 
 
 
13
  2.1.3:&#xD;
14
  - Add new Paybox server address IP used in IP check&#xD;
15
  &#xD;
@@ -39,9 +42,9 @@
39
  - Bug fixed with magento 1.4&#xD;
40
  - Beta version</notes>
41
  <authors><author><name>Quadra Informatique</name><user>auto-converted</user><email>ecommerce@quadra-informatique.fr</email></author></authors>
42
- <date>2013-05-16</date>
43
- <time>15:21:39</time>
44
- <contents><target name="magecommunity"><dir name="Quadra"><dir name="Paybox"><dir name="Block"><dir name="Adminhtml"><dir name="Api"><dir name="Debug"><dir name="Request"><file name="Grid.php" hash="8759eb47efc41a268b87a75f62b82e3d"/></dir><dir name="Response"><file name="Grid.php" hash="15427970fa6d452a814adebf35bb426c"/></dir><dir name="View"><dir name="Tab"><file name="Request.php" hash="b44caac4dc09c248e0ccb48a08a4837a"/><file name="Response.php" hash="d27f9b8e7accfbe3ebb9ecb7230e0a07"/></dir><file name="Form.php" hash="5eeaf4f730fb685448ff4db1b9af049e"/><file name="Tabs.php" hash="bf071a7785239210f7684b97b0016361"/></dir><file name="Grid.php" hash="cd132e298eb0f2548c742abd3cfd5120"/><file name="Request.php" hash="8136d132c16a2aa0285481c9df52c80d"/><file name="Response.php" hash="4c1aeccd5adfd27799c0e54e1d6f8741"/><file name="View.php" hash="11c93c9ecce0dc0bef769514c8ed5ff6"/></dir><file name="Debug.php" hash="d4ca9daac4a45c4b239f7a243c652d52"/></dir><dir name="Cart"><dir name="Type"><file name="Select.php" hash="7b5bb354239d607a75545684cd860c0a"/></dir><file name="Type.php" hash="41d3911e59a5b6f200ca7c0fd89d7f76"/></dir><dir name="Question"><dir name="Number"><file name="Grid.php" hash="30f6e56cfe99567395eff8ba30aef7df"/></dir><file name="Number.php" hash="ccdb95b922210fc70b27fa191e21ea17"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Backuppaymentserver.php" hash="ebef846d5dcc4bfd24a3de79087d678a"/></dir></dir></dir></dir></dir><dir name="Direct"><file name="Form.php" hash="54801f15e7a5d14507590cb24d116273"/><file name="Info.php" hash="b17a130fe54696f81e85a865efbe052d"/></dir><dir name="System"><file name="Error.php" hash="5793c1a54c83ec7ab42e4d7a6b03ebc9"/><file name="Failure.php" hash="ef43b7d8c80b44e43d39b819b912979d"/><file name="Form.php" hash="e9713b0bcf1344d1a919a67b99008b90"/><file name="Redirect.php" hash="3e03ea141ffd5a114948f2b6ef6adef1"/></dir></dir><dir name="Helper"><file name="Data.php" hash="7a8e6d88ac4b3a8c4d28042b7e7d9180"/></dir><dir name="Model"><dir name="Api"><file name="Debug.php" hash="7c73019575e29609c816a58b3740fd96"/></dir><dir name="Config"><dir name="Data"><file name="Paybox.php" hash="95f9a2c8fae89922535d95684ac1b84c"/></dir></dir><dir name="Mysql4"><dir name="Api"><dir name="Debug"><file name="Collection.php" hash="224d42a3bbb369983d28d63861b7f35c"/></dir><file name="Debug.php" hash="ee130907d39ae62ffbeef0726cb72cf3"/></dir><dir name="Question"><dir name="Number"><file name="Collection.php" hash="0f658fa510cb0cabd03fe143eac8f952"/></dir><file name="Number.php" hash="b16104179f78256b2269cf8eaad18b0d"/></dir><file name="Setup.php" hash="81c3397195e0ef712a12dc26939f3bd7"/></dir><dir name="Question"><file name="Number.php" hash="5c3a08011a1f293e4167f3d919cff34a"/></dir><dir name="Source"><file name="CartType.php" hash="11c24c654506e3f93e487e72176ad16a"/><file name="Cctype.php" hash="fe39fa48663d9d1cf18ac3b2be7ff0a3"/><file name="Language.php" hash="7c8d42a4030e76fd2c237e52d8ff2940"/><file name="ManagementMode.php" hash="459a4bdf7c407bc9c45b886f8d70ee4f"/><file name="MethodCall.php" hash="24e055b5e476e399476a46f788f6b248"/><file name="PaymentAction.php" hash="a2524b38d9070a00740f4791250c22ee"/><file name="PaymentMode.php" hash="7439265d33a80d5c993bf40d81a806a4"/><file name="PaymentType.php" hash="5930d4bc98385d3940e316750e497660"/></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Order"><dir name="Status"><file name="Accepted.php" hash="c1a92d148f2fe89ede3d65b0bd96542e"/><file name="Canceled.php" hash="604b6164e40b6b99971f7f12831b9761"/><file name="New.php" hash="5244863fac41cc99a65c5c26ec85fe4f"/><file name="Refused.php" hash="2f92bf8079a6c3a52e1f9bd73e04f2cf"/></dir><file name="Status.php" hash="8810b54a51201cf2e4f6d6432af63f10"/><file name="Statuswithoutcanceled.php" hash="56d8c2b6f84e2829a099c034847cd170"/></dir></dir></dir></dir><file name="Direct.php" hash="4e9098481580634f04f68d61d1fccd65"/><file name="Observer.php" hash="1afceac50aa381fe98b49ce6e0a68033"/><file name="System.php" hash="025a79b5efc0a3b9eb5cbac62db15541"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Api"><file name="DebugController.php" hash="627776d57bfa3bd8abeaecf76724bfec"/></dir><dir name="Question"><file name="NumberController.php" hash="ac216ca8bae6f75fc6abe1fd88400a4a"/></dir></dir><file name="SystemController.php" hash="1f496ee44cff485d078f00e5d0dab118"/></dir><dir name="etc"><file name="config.xml" hash="1d506cde193347de167ff9f433c1808c"/><file name="currency.xml" hash="8e8f0faa5ddb645c22f53d83655a98b4"/><file name="pubkey.pem" hash="9bf5be38bde5f19c40acf3d8e4e7806b"/><file name="system.xml" hash="025b9ce9fa46824f8ac0ab929a347b7c"/></dir><dir name="sql"><dir name="paybox_setup"><file name="mysql4-install-0.1.0.php" hash="d119666355ecb7c250471cce7c9f6bbf"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="2079d87bc8f651f7b9e57a1a887db10c"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="61a8e6ee275f49a40fb43e6dd8aa0054"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="5938c9a672787811f39eded60720a1ab"/><file name="mysql4-upgrade-1.2.4-1.2.5.php" hash="76fd22a06211ec7f2930f7c1d805e018"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Quadra_Paybox.xml" hash="fb8aa651e2666347ae4384141391d2ec"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="paybox"><dir name="adminhtml"><dir name="cart"><dir name="type"><file name="select.phtml" hash="91f8eeed7102c23561bb8cffe0964a60"/></dir></dir></dir><dir name="direct"><dir name="pdf"><file name="info.phtml" hash="e4171618d58d69b40274629b4b8c3351"/></dir><file name="form.phtml" hash="70539321634ef8d6e007803910a2ce4b"/><file name="info.phtml" hash="fa948309091ae37a5bdc74704461b8ab"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="paybox"><dir name="direct"><file name="form.phtml" hash="04b680e909d732ca186ad6281a9fa31f"/><file name="info.phtml" hash="f6b84ca0f08f332baccd3470d7c504f6"/></dir><dir name="system"><file name="error.phtml" hash="cba9ab4abfac7698c29d60ec1435df00"/><file name="form.phtml" hash="dcbac52df9783e1fe99d7554a54f1345"/><file name="notify.phtml" hash="dcd7409b17c33a42534cf76ae17c3efd"/></dir></dir></dir><dir name="layout"><file name="paybox.xml" hash="7974de5dbf7fe42d68935a75878c4000"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="fr_FR"><file name="Quadra_Paybox.csv" hash="3e93b483137b0f2770f656bd02e48336"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="media"><dir name="paybox"><file name="PayboxPaiementSecurise.png" hash="de66247ae1debc79a0f3cd015247307e"/><file name="paybox.png" hash="87f2b567282864162b5af79d7ab7d44b"/></dir></dir></dir></dir></dir></dir></target></contents>
45
  <compatible/>
46
  <dependencies><required><package><name>Quadra_Extensions</name><channel>community</channel><min>1.0.0</min><max></max></package></required></dependencies>
47
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Quadra_Paybox</name>
4
+ <version>2.1.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>
10
  <description>The extension provides Paybox payment integration. Allows make payments through Paybox methods.</description>
11
  <notes>Changelog:&#xD;
12
  &#xD;
13
+ 2.1.4:&#xD;
14
+ - Add paybox payment server response debug.&#xD;
15
+ &#xD;
16
  2.1.3:&#xD;
17
  - Add new Paybox server address IP used in IP check&#xD;
18
  &#xD;
42
  - Bug fixed with magento 1.4&#xD;
43
  - Beta version</notes>
44
  <authors><author><name>Quadra Informatique</name><user>auto-converted</user><email>ecommerce@quadra-informatique.fr</email></author></authors>
45
+ <date>2013-05-21</date>
46
+ <time>10:02:25</time>
47
+ <contents><target name="magecommunity"><dir name="Quadra"><dir name="Paybox"><dir name="Block"><dir name="Adminhtml"><dir name="Api"><dir name="Debug"><dir name="Request"><file name="Grid.php" hash="5f228694b4fbbe924a40aaedba1bc08d"/></dir><dir name="Response"><file name="Grid.php" hash="7cd12fe95bcc1627106cdc7f287f075f"/></dir><dir name="ResponseServer"><file name="Grid.php" hash="8bebae9ad786495b6c232699dffe90ef"/></dir><dir name="View"><dir name="Tab"><file name="Request.php" hash="c281243fb4fa9cdf72dd41797abecda2"/><file name="Response.php" hash="6e3a9c597ef3914b55fe526e5d43e09c"/><file name="ResponseServer.php" hash="e9ce0304d7036f2c7e0b6744706c8120"/></dir><file name="Form.php" hash="825aa81759eccacf35724f3042b1a09c"/><file name="Tabs.php" hash="b7e422aa3e2e972c01825b0dffb1c4cd"/></dir><file name="Grid.php" hash="17291cb4867dc05676a4b27125c398af"/><file name="Request.php" hash="7dadfa97d5155e3e2ffebe46a7f6d98b"/><file name="Response.php" hash="fa70f561222fe01d46c2f8c26574c61c"/><file name="View.php" hash="2bafcf288520768a77f82bf09b03b90c"/></dir><file name="Debug.php" hash="267e5d3c4ab8dc6d3cd3dc1d2f7a4c76"/></dir><dir name="Cart"><dir name="Type"><file name="Select.php" hash="6c0decb5e1373db6c6898f80b23923a9"/></dir><file name="Type.php" hash="a81cccf394f6df7d8bb41b6b6ea9629c"/></dir><dir name="Question"><dir name="Number"><file name="Grid.php" hash="49c091b43dae86f68f64ee1e0ce2f6dc"/></dir><file name="Number.php" hash="78a8d4ef8f79b3980b49d21beee52556"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Backuppaymentserver.php" hash="b50613fc6d10756b44a707dc3a116222"/></dir></dir></dir></dir></dir><dir name="Direct"><file name="Form.php" hash="1c5e2a6587a1af7e1f24860ee057a8a8"/><file name="Info.php" hash="3a68d9da78889dcd5074740966c0e4a7"/></dir><dir name="System"><file name="Error.php" hash="f8b34e666f6237bb1b652c2a6826a1d5"/><file name="Failure.php" hash="b191dcf287985a3098eee8a66a382269"/><file name="Form.php" hash="96cba1aa4ed4d94289f04ff0f12a96b4"/><file name="Redirect.php" hash="5cc67a58d225ebc2971ba01958a093d2"/></dir></dir><dir name="Helper"><file name="Data.php" hash="5c69da3d2ad42e87d34569164112a187"/></dir><dir name="Model"><dir name="Api"><file name="Debug.php" hash="d572453ad664ef831621746782dee522"/></dir><dir name="Config"><dir name="Data"><file name="Paybox.php" hash="27df519c893a789c38c09ab86c409bed"/></dir></dir><dir name="Mysql4"><dir name="Api"><dir name="Debug"><file name="Collection.php" hash="3048853aa8e76c62d845ed4cec57083f"/></dir><file name="Debug.php" hash="80e7c64029bf435a1600b0a0fc69307b"/></dir><dir name="Question"><dir name="Number"><file name="Collection.php" hash="b76d979f386e0ebd8e42bc2891edd36a"/></dir><file name="Number.php" hash="b2f8eed19db59dc293eed60e260e13d4"/></dir><file name="Setup.php" hash="b7128ffedbe4376ffd481bd57c06b874"/></dir><dir name="Question"><file name="Number.php" hash="745c66465b89398d3a22866f7763c8ae"/></dir><dir name="Source"><file name="CartType.php" hash="20d7f7ce6133837da1abb8b3e99301cc"/><file name="Cctype.php" hash="c1be19b7267d2da0efcc3f1f2164ee55"/><file name="Language.php" hash="d14b1c8ff8ea3e4aa4e7579ed04fd764"/><file name="ManagementMode.php" hash="9ae193b91fe7d251a534bfa29c3b6983"/><file name="MethodCall.php" hash="26109997f7c359946592f16266ad8176"/><file name="PaymentAction.php" hash="0097fe95871cfbaecde6fbf748cc9e26"/><file name="PaymentMode.php" hash="5376eb6bc4993651bcbf83e88c625393"/><file name="PaymentType.php" hash="31ab41f12ac4c212d0b3d5f6e8dc461c"/></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Order"><dir name="Status"><file name="Accepted.php" hash="139fdacd9edb6182bd6f343b63aa1b13"/><file name="Canceled.php" hash="70b58a6b0cb6dc6c6452b6079225ab42"/><file name="New.php" hash="25636d41c020c2a2b0e3dfbf2f289038"/><file name="Refused.php" hash="1053a83cd27eaa179e93ad3b2b32d932"/></dir><file name="Status.php" hash="4f5cabef18976f4c17dc7d7ea86a7a0f"/><file name="Statuswithoutcanceled.php" hash="56d8c2b6f84e2829a099c034847cd170"/></dir></dir></dir></dir><file name="Direct.php" hash="2b920607206e9a0a8c3ba124b7a7bd4f"/><file name="Observer.php" hash="b72eaf74f06b2b6f38d448d4a6c1135b"/><file name="System.php" hash="33033b4ec8443ccca476684be5e1e885"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Api"><file name="DebugController.php" hash="d27d2ac39c09ca12fbf57eb64f100805"/></dir><dir name="Question"><file name="NumberController.php" hash="adee89db7ae14e7711234a76eea8cde4"/></dir></dir><file name="SystemController.php" hash="96b1617afb42e49252a2772e9904ad58"/></dir><dir name="etc"><file name="config.xml" hash="eed52cbc30c8488c904c30f4a1765429"/><file name="currency.xml" hash="d3788bfabf21fcb8dbc05b05ae3ba25e"/><file name="pubkey.pem" hash="9bf5be38bde5f19c40acf3d8e4e7806b"/><file name="system.xml" hash="1dff8016559a0394a9379d80e3a718cc"/></dir><dir name="sql"><dir name="paybox_setup"><file name="mysql4-install-0.1.0.php" hash="d67be495c27e124360143e88c9594536"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="00dce028683fef2bc536e48a1fa597e8"/><file name="mysql4-upgrade-0.1.1-0.1.2.php" hash="6184aa9e892edaad02853623f46cec1e"/><file name="mysql4-upgrade-0.1.2-0.1.3.php" hash="e1865a6bc7289d593449c770c2eac786"/><file name="mysql4-upgrade-1.2.4-1.2.5.php" hash="c2e8ec1ce1c115b07316a5caf4c4f3b2"/><file name="mysql4-upgrade-2.1.3-2.1.4.php" hash="5d6361ed7237ea2bdf035aa148b0752d"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Quadra_Paybox.xml" hash="44f3bab10a5dbf77ef87fcf18c9742b9"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="paybox"><dir name="adminhtml"><dir name="cart"><dir name="type"><file name="select.phtml" hash="bcce39e93a6a8d20a99c530749bf6003"/></dir></dir></dir><dir name="direct"><dir name="pdf"><file name="info.phtml" hash="7b3f957a9e68e2da9739a1fe23110cca"/></dir><file name="form.phtml" hash="245fbdabfae25b0287448de39d24cb95"/><file name="info.phtml" hash="6c3dc6ba22fd08d2da84bf2a265ff3ee"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="paybox"><dir name="direct"><file name="form.phtml" hash="4162d20232b0ed480c2c0ecf987912ef"/><file name="info.phtml" hash="6f0ec731e9b9fa3342b17936b8cbdd0d"/></dir><dir name="system"><file name="error.phtml" hash="a8764a50e293e1dadf6b5d369dbef089"/><file name="form.phtml" hash="aae3a0e21cdff89fbe2fa79acd6f8d11"/><file name="notify.phtml" hash="e633c60fc3f451e58bb269b39ab28255"/></dir></dir></dir><dir name="layout"><file name="paybox.xml" hash="c361a92aeb0c1f67880a5247883fdead"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="fr_FR"><file name="Quadra_Paybox.csv" hash="3e93b483137b0f2770f656bd02e48336"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="media"><dir name="paybox"><file name="PayboxPaiementSecurise.png" hash="de66247ae1debc79a0f3cd015247307e"/><file name="paybox.png" hash="87f2b567282864162b5af79d7ab7d44b"/></dir></dir></dir></dir></dir></dir></target></contents>
48
  <compatible/>
49
  <dependencies><required><package><name>Quadra_Extensions</name><channel>community</channel><min>1.0.0</min><max></max></package></required></dependencies>
50
  </package>