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
- app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug.php +1 -1
- app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/Grid.php +6 -1
- app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/Request.php +1 -1
- app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/Request/Grid.php +1 -1
- app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/Response.php +1 -1
- app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/Response/Grid.php +1 -1
- app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/ResponseServer/Grid.php +85 -0
- app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View.php +1 -1
- app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View/Form.php +1 -1
- app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View/Tab/Request.php +1 -1
- app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View/Tab/Response.php +1 -1
- app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View/Tab/ResponseServer.php +75 -0
- app/code/community/Quadra/Paybox/Block/Adminhtml/Api/Debug/View/Tabs.php +6 -1
- app/code/community/Quadra/Paybox/Block/Adminhtml/Cart/Type.php +1 -1
- app/code/community/Quadra/Paybox/Block/Adminhtml/Cart/Type/Select.php +1 -1
- app/code/community/Quadra/Paybox/Block/Adminhtml/Question/Number.php +1 -1
- app/code/community/Quadra/Paybox/Block/Adminhtml/Question/Number/Grid.php +1 -1
- app/code/community/Quadra/Paybox/Block/Adminhtml/System/Config/Form/Field/Backuppaymentserver.php +1 -1
- app/code/community/Quadra/Paybox/Block/Direct/Form.php +1 -1
- app/code/community/Quadra/Paybox/Block/Direct/Info.php +1 -1
- app/code/community/Quadra/Paybox/Block/System/Error.php +1 -1
- app/code/community/Quadra/Paybox/Block/System/Failure.php +1 -1
- app/code/community/Quadra/Paybox/Block/System/Form.php +1 -1
- app/code/community/Quadra/Paybox/Block/System/Redirect.php +1 -1
- app/code/community/Quadra/Paybox/Helper/Data.php +1 -1
- app/code/community/Quadra/Paybox/Model/Api/Debug.php +1 -1
- app/code/community/Quadra/Paybox/Model/Config/Data/Paybox.php +1 -1
- app/code/community/Quadra/Paybox/Model/Direct.php +1 -1
- app/code/community/Quadra/Paybox/Model/Mysql4/Api/Debug.php +1 -1
- app/code/community/Quadra/Paybox/Model/Mysql4/Api/Debug/Collection.php +1 -1
- app/code/community/Quadra/Paybox/Model/Mysql4/Question/Number.php +1 -1
- app/code/community/Quadra/Paybox/Model/Mysql4/Question/Number/Collection.php +1 -1
- app/code/community/Quadra/Paybox/Model/Mysql4/Setup.php +1 -1
- app/code/community/Quadra/Paybox/Model/Observer.php +1 -1
- app/code/community/Quadra/Paybox/Model/Question/Number.php +1 -1
- app/code/community/Quadra/Paybox/Model/Source/CartType.php +1 -1
- app/code/community/Quadra/Paybox/Model/Source/Cctype.php +1 -1
- app/code/community/Quadra/Paybox/Model/Source/Language.php +1 -1
- app/code/community/Quadra/Paybox/Model/Source/ManagementMode.php +1 -1
- app/code/community/Quadra/Paybox/Model/Source/MethodCall.php +1 -1
- app/code/community/Quadra/Paybox/Model/Source/PaymentAction.php +1 -1
- app/code/community/Quadra/Paybox/Model/Source/PaymentMode.php +1 -1
- app/code/community/Quadra/Paybox/Model/Source/PaymentType.php +1 -1
- app/code/community/Quadra/Paybox/Model/System.php +3 -3
- app/code/community/Quadra/Paybox/Model/System/Config/Source/Order/Status.php +1 -1
- app/code/community/Quadra/Paybox/Model/System/Config/Source/Order/Status/Accepted.php +1 -1
- app/code/community/Quadra/Paybox/Model/System/Config/Source/Order/Status/Canceled.php +1 -1
- app/code/community/Quadra/Paybox/Model/System/Config/Source/Order/Status/New.php +1 -1
- app/code/community/Quadra/Paybox/Model/System/Config/Source/Order/Status/Refused.php +1 -1
- app/code/community/Quadra/Paybox/controllers/Adminhtml/Api/DebugController.php +1 -1
- app/code/community/Quadra/Paybox/controllers/Adminhtml/Question/NumberController.php +1 -1
- app/code/community/Quadra/Paybox/controllers/SystemController.php +8 -1
- app/code/community/Quadra/Paybox/etc/config.xml +2 -8
- app/code/community/Quadra/Paybox/etc/currency.xml +1 -1
- app/code/community/Quadra/Paybox/etc/system.xml +1 -1
- app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-install-0.1.0.php +1 -1
- app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-upgrade-0.1.0-0.1.1.php +1 -1
- app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-upgrade-0.1.1-0.1.2.php +1 -1
- app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-upgrade-0.1.2-0.1.3.php +1 -1
- app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-upgrade-1.2.4-1.2.5.php +1 -1
- app/code/community/Quadra/Paybox/sql/paybox_setup/mysql4-upgrade-2.1.3-2.1.4.php +27 -0
- app/design/adminhtml/default/default/template/paybox/adminhtml/cart/type/select.phtml +1 -1
- app/design/adminhtml/default/default/template/paybox/direct/form.phtml +1 -1
- app/design/adminhtml/default/default/template/paybox/direct/info.phtml +1 -1
- app/design/adminhtml/default/default/template/paybox/direct/pdf/info.phtml +1 -1
- app/design/frontend/default/default/layout/paybox.xml +1 -1
- app/design/frontend/default/default/template/paybox/direct/form.phtml +1 -1
- app/design/frontend/default/default/template/paybox/direct/info.phtml +1 -1
- app/design/frontend/default/default/template/paybox/system/error.phtml +1 -1
- app/design/frontend/default/default/template/paybox/system/form.phtml +1 -1
- app/design/frontend/default/default/template/paybox/system/notify.phtml +1 -1
- app/etc/modules/Quadra_Paybox.xml +1 -1
- 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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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::
|
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::
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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:
|
12 |

|
|
|
|
|
|
|
13 |
2.1.3:
|
14 |
- Add new Paybox server address IP used in IP check
|
15 |

|
@@ -39,9 +42,9 @@
|
|
39 |
- Bug fixed with magento 1.4
|
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-
|
43 |
-
<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="
|
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:
|
12 |

|
13 |
+
2.1.4:
|
14 |
+
- Add paybox payment server response debug.
|
15 |
+

|
16 |
2.1.3:
|
17 |
- Add new Paybox server address IP used in IP check
|
18 |

|
42 |
- Bug fixed with magento 1.4
|
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>
|