Channelpilotsolutions_Channelpilot - Version 2.0.0.2

Version Notes

new plugin for new ChannelPilot release
- small bug fixes

Download this release

Release Info

Developer Magento Core Team
Extension Channelpilotsolutions_Channelpilot
Version 2.0.0.2
Comparing to
See all releases


Code changes from version 2.0.0.1 to 2.0.0.2

app/code/community/Channelpilotsolutions/Channelpilot/Helper/ExportData.php CHANGED
@@ -356,7 +356,6 @@ class ExportData {
356
  $this->_dbConnection->setFetchMode(ZEND_DB::FETCH_NUM);
357
  $EntityIds = $this->_dbConnection->fetchAll($query);
358
  // Loop through each product and output the data
359
- CPErrorHandler::logError("products: \n" . print_r($EntityIds, true));
360
  foreach ($EntityIds as $entity) {
361
 
362
  // Fill the master query with the entity ID
356
  $this->_dbConnection->setFetchMode(ZEND_DB::FETCH_NUM);
357
  $EntityIds = $this->_dbConnection->fetchAll($query);
358
  // Loop through each product and output the data
 
359
  foreach ($EntityIds as $entity) {
360
 
361
  // Fill the master query with the entity ID
app/code/community/Channelpilotsolutions/Channelpilot/sql/channelpilot_setup/{install-2.0.0.0.php → mysql4-install-2.0.0.php} RENAMED
@@ -13,25 +13,25 @@ $table = $adapter->newTable($installer->getTable('channelpilot/registration'))
13
  ->addColumn('shopId', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
14
  'nullable' => false,
15
  'primary' => true
16
- ), '')
17
  ->addColumn('ips_authorized', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
18
  'nullable' => false
19
- ), '')
20
  ->addColumn('merchantId', Varien_Db_Ddl_Table::TYPE_VARCHAR, 150, array(
21
  'nullable' => false
22
- ), '')
23
  ->addColumn('securityToken', Varien_Db_Ddl_Table::TYPE_VARCHAR, 150, array(
24
  'nullable' => false
25
- ), '')
26
  ->addColumn('last_stock_update', Varien_Db_Ddl_Table::TYPE_TIMESTAMP, null, array(
27
  'nullable' => true
28
- ), '')
29
  ->addColumn('last_price_update', Varien_Db_Ddl_Table::TYPE_TIMESTAMP, null, array(
30
  'nullable' => true
31
- ), '')
32
  ->addColumn('last_catalog_update', Varien_Db_Ddl_Table::TYPE_TIMESTAMP, null, array(
33
  'nullable' => true
34
- ), '')
35
  ->addIndex(
36
  $installer->getIdxName(
37
  $installer->getTable('channelpilot/registration'),
@@ -50,26 +50,26 @@ $table = $adapter->newTable($installer->getTable('channelpilot/orders'))
50
  ->addColumn('order_id', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
51
  'nullable' => false,
52
  'primary' => true
53
- ), '')
54
  ->addColumn('order_nr', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
55
  'nullable' => false
56
- ), '')
57
  ->addColumn('marketplace_order_id', Varien_Db_Ddl_Table::TYPE_VARCHAR, 150, array(
58
  'nullable' => false
59
- ), '')
60
  ->addColumn('marketplace', Varien_Db_Ddl_Table::TYPE_VARCHAR, 150, array(
61
  'nullable' => false
62
- ), '')
63
  ->addColumn('shop', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
64
  'nullable' => false
65
- ), '')
66
  ->addColumn('created', Varien_Db_Ddl_Table::TYPE_TIMESTAMP, null, array(
67
  'default' => Varien_Db_Ddl_Table::TIMESTAMP_INIT,
68
  'nullable' => false
69
- ), '')
70
  ->addColumn('status', Varien_Db_Ddl_Table::TYPE_INTEGER, 10, array(
71
  'nullable' => true
72
- ), '')
73
  ->addIndex($installer->getIdxName(
74
  'channelpilot/orders',
75
  array('order_nr'),
@@ -96,25 +96,25 @@ $table = $adapter->newTable($installer->getTable('channelpilot/items'))
96
  ->addColumn('order_item_id', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
97
  'nullable' => false,
98
  'primary' => true
99
- ), '')
100
  ->addColumn('marketplace_order_item_id', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
101
  'nullable' => false
102
- ), '')
103
  ->addColumn('order_id', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
104
  'nullable' => false
105
- ), '')
106
  ->addColumn('cancelled', Varien_Db_Ddl_Table::TYPE_INTEGER, 11, array(
107
  'default' => 0,
108
  'nullable' => false
109
- ), '')
110
  ->addColumn('amount', Varien_Db_Ddl_Table::TYPE_INTEGER, 11, array(
111
  'default' => 0,
112
  'nullable' => false
113
- ), '')
114
  ->addColumn('amount_delivered', Varien_Db_Ddl_Table::TYPE_INTEGER, 11, array(
115
  'default' => 0,
116
  'nullable' => false
117
- ), '')
118
  ->addIndex($installer->getIdxName(
119
  'channelpilot/items',
120
  array('order_item_id'),
@@ -141,14 +141,14 @@ $table = $adapter->newTable($installer->getTable('channelpilot/logs'))
141
  'auto_increment' => true,
142
  'nullable' => false,
143
  'primary' => true
144
- ), '')
145
  ->addColumn('created', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
146
  'default' => Varien_Db_Ddl_Table::TIMESTAMP_INIT,
147
  'nullable' => false
148
- ), '')
149
  ->addColumn('content', Varien_Db_Ddl_Table::TYPE_TEXT, '64k', array(
150
  'nullable' => false
151
- ), '')
152
  ->addIndex($installer->getIdxName(
153
  'channelpilot/logs',
154
  array('created')
13
  ->addColumn('shopId', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
14
  'nullable' => false,
15
  'primary' => true
16
+ ), 'shopId')
17
  ->addColumn('ips_authorized', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
18
  'nullable' => false
19
+ ), 'ips_authorized')
20
  ->addColumn('merchantId', Varien_Db_Ddl_Table::TYPE_VARCHAR, 150, array(
21
  'nullable' => false
22
+ ), 'merchantId')
23
  ->addColumn('securityToken', Varien_Db_Ddl_Table::TYPE_VARCHAR, 150, array(
24
  'nullable' => false
25
+ ), 'securityToken')
26
  ->addColumn('last_stock_update', Varien_Db_Ddl_Table::TYPE_TIMESTAMP, null, array(
27
  'nullable' => true
28
+ ), 'last_stock_update')
29
  ->addColumn('last_price_update', Varien_Db_Ddl_Table::TYPE_TIMESTAMP, null, array(
30
  'nullable' => true
31
+ ), 'last_price_update')
32
  ->addColumn('last_catalog_update', Varien_Db_Ddl_Table::TYPE_TIMESTAMP, null, array(
33
  'nullable' => true
34
+ ), 'last_catalog_update')
35
  ->addIndex(
36
  $installer->getIdxName(
37
  $installer->getTable('channelpilot/registration'),
50
  ->addColumn('order_id', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
51
  'nullable' => false,
52
  'primary' => true
53
+ ), 'order_id')
54
  ->addColumn('order_nr', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
55
  'nullable' => false
56
+ ), 'order_nr')
57
  ->addColumn('marketplace_order_id', Varien_Db_Ddl_Table::TYPE_VARCHAR, 150, array(
58
  'nullable' => false
59
+ ), 'marketplace_order_id')
60
  ->addColumn('marketplace', Varien_Db_Ddl_Table::TYPE_VARCHAR, 150, array(
61
  'nullable' => false
62
+ ), 'marketplace')
63
  ->addColumn('shop', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
64
  'nullable' => false
65
+ ), 'shop')
66
  ->addColumn('created', Varien_Db_Ddl_Table::TYPE_TIMESTAMP, null, array(
67
  'default' => Varien_Db_Ddl_Table::TIMESTAMP_INIT,
68
  'nullable' => false
69
+ ), 'created')
70
  ->addColumn('status', Varien_Db_Ddl_Table::TYPE_INTEGER, 10, array(
71
  'nullable' => true
72
+ ), 'status')
73
  ->addIndex($installer->getIdxName(
74
  'channelpilot/orders',
75
  array('order_nr'),
96
  ->addColumn('order_item_id', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
97
  'nullable' => false,
98
  'primary' => true
99
+ ), 'order_item_id')
100
  ->addColumn('marketplace_order_item_id', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
101
  'nullable' => false
102
+ ), 'marketplace_order_item_id')
103
  ->addColumn('order_id', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
104
  'nullable' => false
105
+ ), 'order_id')
106
  ->addColumn('cancelled', Varien_Db_Ddl_Table::TYPE_INTEGER, 11, array(
107
  'default' => 0,
108
  'nullable' => false
109
+ ), 'cancelled')
110
  ->addColumn('amount', Varien_Db_Ddl_Table::TYPE_INTEGER, 11, array(
111
  'default' => 0,
112
  'nullable' => false
113
+ ), 'amount')
114
  ->addColumn('amount_delivered', Varien_Db_Ddl_Table::TYPE_INTEGER, 11, array(
115
  'default' => 0,
116
  'nullable' => false
117
+ ), 'amount_delivered')
118
  ->addIndex($installer->getIdxName(
119
  'channelpilot/items',
120
  array('order_item_id'),
141
  'auto_increment' => true,
142
  'nullable' => false,
143
  'primary' => true
144
+ ), 'id')
145
  ->addColumn('created', Varien_Db_Ddl_Table::TYPE_VARCHAR, 255, array(
146
  'default' => Varien_Db_Ddl_Table::TIMESTAMP_INIT,
147
  'nullable' => false
148
+ ), 'created')
149
  ->addColumn('content', Varien_Db_Ddl_Table::TYPE_TEXT, '64k', array(
150
  'nullable' => false
151
+ ), 'content')
152
  ->addIndex($installer->getIdxName(
153
  'channelpilot/logs',
154
  array('created')
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Channelpilotsolutions_Channelpilot</name>
4
- <version>2.0.0.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">GPL</license>
7
  <channel>community</channel>
@@ -26,11 +26,12 @@
26
  &lt;li&gt;&lt;b&gt;ChannelPilot Multi-Platform:&lt;/b&gt; Access ChannelPilot on any device (e.g. computer, tablet or smartphone) and keep a firm hold on your online marketing- wherever you are!&lt;/li&gt;&#xD;
27
  &lt;/ul&gt;&#xD;
28
  Just get more information about ChannelPilot: &lt;a href="http://www.channelpilot.com"&gt;www.channelpilot.com&lt;/a&gt;</description>
29
- <notes>new plugin for new ChannelPilot release</notes>
 
30
  <authors><author><name>ChannelPilot Solutions GmbH</name><user>auto-converted</user><email>info@channelpilot.com</email></author></authors>
31
- <date>2014-07-07</date>
32
- <time>09:56:47</time>
33
- <contents><target name="magecommunity"><dir name="Channelpilotsolutions"><dir name="Channelpilot"><dir name="Adminhtml"><dir name="Model"><dir name="Articlenumber"><file name="Values.php" hash="f2744ef8301e25e096318f34eb97c2bf"/></dir><dir name="Cookiemode"><file name="Values.php" hash="1ec39f85bb7562c1b6a4614f759d9124"/></dir><dir name="Pricefield"><file name="Values.php" hash="6b02dfa3fa93daafa8325d66a986b4ac"/></dir><dir name="Truefalse"><file name="Values.php" hash="fcd5374f41de3cddc9463c2faa8e8c75"/></dir><dir name="Truefalsesecurity"><file name="Values.php" hash="8f45d26c937ba833c3e3483665b6d5df"/></dir></dir></dir><dir name="Block"><dir name="Adminhtml"><dir name="Field"><file name="Exportfields.php" hash="81525753cbe46549daa7a09997b46130"/><file name="Replacefields.php" hash="1e4ddda15b611616f9d097ba301562ac"/><file name="Specialfields.php" hash="a8c88591141c672e772128c9605b52b9"/><file name="Trackingkeys.php" hash="6365f16bc6a5ebf13ada33a79892a857"/></dir></dir></dir><dir name="Helper"><dir name="api"><dir name="1_0"><dir name="responses"><file name="GetManagedArticlePricesResponse.php" hash="9ad5adee1952b9408b442449791a1f34"/><file name="GetNewMarketplaceOrdersResponse.php" hash="cd5db953a84759b93a35a360956c4624"/><file name="GetServerTimeResponse.php" hash="07d157639b5bf715aa3f93b0d9e4b736"/><file name="Response.php" hash="c76ce62707a862e1c59346c668055b5d"/><file name="UpdateArticleResult.php" hash="a014c60be447fbb9cf48c947c8e9822f"/><file name="UpdateArticlesResponse.php" hash="338619d50391d91defb5c9d41370022f"/><file name="UpdateOrderResult.php" hash="0fbd88371624270a8cb2c4209a89cfac"/><file name="UpdateOrdersResponse.php" hash="b0ad5828da633b05e654da393b15526a"/></dir><dir name="thin"><file name="CPAddress.php" hash="885fb4517335421fbd8cbc882ae336b1"/><file name="CPArticle.php" hash="1adce1ce33acdd0185dee06010040b18"/><file name="CPArticleUpdate.php" hash="45f514823895c754010f8f11a1ff683a"/><file name="CPAuth.php" hash="cf5fe570dbd98e3e6339b20cec826b7b"/><file name="CPCancellation.php" hash="9bf808e265e09d166466313405a167fc"/><file name="CPCustomer.php" hash="62babdf11e9b4d80ae0afbbf96ba329d"/><file name="CPDelivery.php" hash="c8c54883370efd519249a9a9551668d0"/><file name="CPDiscount.php" hash="5d6f2766869134a86761c12230dc32d1"/><file name="CPManagedArticlePrice.php" hash="65c4c0df04b7c8d20294874de11640d6"/><file name="CPMoney.php" hash="952131eccc8470e107c78e15c94b6495"/><file name="CPOrder.php" hash="32623885f664e9b5871fc48b6ba0c801"/><file name="CPOrderHeader.php" hash="828377182e8197c304f230a783606993"/><file name="CPOrderItem.php" hash="dfe2440a08e3d0f13e638fc4090e6c52"/><file name="CPOrderStatus.php" hash="e0e767388dd9a1ab8be5a990f1ab1259"/><file name="CPOrderSummary.php" hash="fceaa6a79b5fc892062681f518fd0243"/><file name="CPPayment.php" hash="446ffde1318d001c213de2b80855af07"/><file name="CPResponseHeader.php" hash="53930210d68046183e3be306996ea9b9"/><file name="CPShipping.php" hash="eaddceace28cdc6ba72434a6321d8c47"/></dir><file name="CPResultCodes.php" hash="955180ee33f14b4afa93f6eb1b5df53f"/><file name="ChannelPilotSellerAPI_v1_0.php" hash="26a64c7251790d823507ce1e40617b2e"/></dir></dir><dir name="handler"><file name="CPAbstractHandler.php" hash="bcdf959495e60bbf90ac9fe11a24cca7"/><file name="CPCancellationHandler.php" hash="9b77706089a26ae42ad2e00c303b66ae"/><file name="CPDebugHandler.php" hash="43f2e8da6e44adfb20d7ec813ca54cad"/><file name="CPDeliveryHandler.php" hash="98e4cdd670e8b82724ed31f3248f117f"/><file name="CPErrorHandler.php" hash="5d728c064c068fdf8354fa87882e4dba"/><file name="CPExportHandler.php" hash="fa1ad717314260ccc9a6b09c899e5d53"/><file name="CPNewPriceHandler.php" hash="4d3f328502eac33e5a9608ef62e6146a"/><file name="CPNewsHandler.php" hash="4975a6271baf09af3b2f007f13bb587c"/><file name="CPOrderHandler.php" hash="3fe672eeae5c0f014cf5c666c36fc146"/><file name="CPRegisterHandler.php" hash="43a7baff372b472049dc0e52deb2549f"/><file name="CPStatusHandler.php" hash="3f9c9e8ef563d12d16051fcd9b996a54"/><file name="todoCPPaymentHandler.php" hash="34ea64beda7c8bc5309ebea280146c32"/></dir><dir name="responses"><file name="CPGetStatusHookResponse.php" hash="672609ebcaa23aa0de85aed04c7662d8"/><file name="CPHookResponse.php" hash="9acdda5838cae8b6022af2f4e0a9314b"/><file name="CPRegisterHookResponse.php" hash="206de6433d0795ebdabff98129cc2fb7"/></dir><dir name="special"><file name="CustomerFunctions.php" hash="c9f4d1d28b3978fcc7824cdbeddbcc73"/></dir><file name="CPErrors.php" hash="3659c38a1ed3be4aa4ec03d93e68a84e"/><file name="Data.php" hash="d7501ab1c2667da79d4201f1c78ad945"/><file name="ExportData.php" hash="dd807aefe4ae7dbb210d08f63bd436b8"/></dir><dir name="controllers"><file name="IndexController.php" hash="36e391b61d1914f8669cd48207dd06da"/></dir><dir name="etc"><file name="adminhtml.xml" hash="62fad9ef0e77e858b74d2a7bdd6a6879"/><file name="config.xml" hash="a321e8a3b8a9c38aa0a801983f9cda20"/><file name="system.xml" hash="1622d955b12a3725b5ad67ff25d33ea7"/></dir><dir name="sql"><dir name="channelpilot_setup"><file name="install-2.0.0.0.php" hash="0ecebd442d5f554c4fadf54781c19f89"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Channelpilotsolutions_Channelpilot.xml" hash="a64f082fbb324d006d05566a4eb63d3f"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="Channelpilotsolutions"><file name="channelpilot.xml" hash="732f1d98851f3c1bf0cb9e655a4a0359"/></dir></dir><dir name="template"><dir name="Channelpilotsolutions"><file name="channelpilot.phtml" hash="2c1299423849d8a245d12b043ca8f058"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="Channelpilotsolutions"><file name="array_dropdown.phtml" hash="cb1230cd8a92ce0a0961f71b396736ec"/></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><dir name="Channelpilotsolutions"><file name="channelpilot.xml" hash="ee23fe0af5078ab653c5341116c21ddb"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="Channelpilotsolutions"><dir name="Channelpilot"><file name="icon.css" hash="ee075d8ba7c5c45dcb8c87ba1205eaa0"/></dir></dir></dir></dir><dir name="base"><dir name="default"><dir name="Channelpilotsolutions"><file name="channelpilot" hash=""/></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Channelpilotsolutions_Channelpilot.csv" hash="bbc431d629000b2d166509614f9ef935"/></dir><dir name="de_CH"><file name="Channelpilotsolutions_Channelpilot.csv" hash="bbc431d629000b2d166509614f9ef935"/></dir><dir name="de_AT"><file name="Channelpilotsolutions_Channelpilot.csv" hash="bbc431d629000b2d166509614f9ef935"/></dir></target></contents>
34
  <compatible/>
35
  <dependencies/>
36
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Channelpilotsolutions_Channelpilot</name>
4
+ <version>2.0.0.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">GPL</license>
7
  <channel>community</channel>
26
  &lt;li&gt;&lt;b&gt;ChannelPilot Multi-Platform:&lt;/b&gt; Access ChannelPilot on any device (e.g. computer, tablet or smartphone) and keep a firm hold on your online marketing- wherever you are!&lt;/li&gt;&#xD;
27
  &lt;/ul&gt;&#xD;
28
  Just get more information about ChannelPilot: &lt;a href="http://www.channelpilot.com"&gt;www.channelpilot.com&lt;/a&gt;</description>
29
+ <notes>new plugin for new ChannelPilot release&#xD;
30
+ - small bug fixes</notes>
31
  <authors><author><name>ChannelPilot Solutions GmbH</name><user>auto-converted</user><email>info@channelpilot.com</email></author></authors>
32
+ <date>2014-08-04</date>
33
+ <time>15:39:35</time>
34
+ <contents><target name="magecommunity"><dir name="Channelpilotsolutions"><dir name="Channelpilot"><dir name="Adminhtml"><dir name="Model"><dir name="Articlenumber"><file name="Values.php" hash="f2744ef8301e25e096318f34eb97c2bf"/></dir><dir name="Cookiemode"><file name="Values.php" hash="1ec39f85bb7562c1b6a4614f759d9124"/></dir><dir name="Pricefield"><file name="Values.php" hash="6b02dfa3fa93daafa8325d66a986b4ac"/></dir><dir name="Truefalse"><file name="Values.php" hash="fcd5374f41de3cddc9463c2faa8e8c75"/></dir><dir name="Truefalsesecurity"><file name="Values.php" hash="8f45d26c937ba833c3e3483665b6d5df"/></dir></dir></dir><dir name="Block"><dir name="Adminhtml"><dir name="Field"><file name="Exportfields.php" hash="81525753cbe46549daa7a09997b46130"/><file name="Replacefields.php" hash="1e4ddda15b611616f9d097ba301562ac"/><file name="Specialfields.php" hash="a8c88591141c672e772128c9605b52b9"/><file name="Trackingkeys.php" hash="6365f16bc6a5ebf13ada33a79892a857"/></dir></dir></dir><dir name="Helper"><dir name="api"><dir name="1_0"><dir name="responses"><file name="GetManagedArticlePricesResponse.php" hash="9ad5adee1952b9408b442449791a1f34"/><file name="GetNewMarketplaceOrdersResponse.php" hash="cd5db953a84759b93a35a360956c4624"/><file name="GetServerTimeResponse.php" hash="07d157639b5bf715aa3f93b0d9e4b736"/><file name="Response.php" hash="c76ce62707a862e1c59346c668055b5d"/><file name="UpdateArticleResult.php" hash="a014c60be447fbb9cf48c947c8e9822f"/><file name="UpdateArticlesResponse.php" hash="338619d50391d91defb5c9d41370022f"/><file name="UpdateOrderResult.php" hash="0fbd88371624270a8cb2c4209a89cfac"/><file name="UpdateOrdersResponse.php" hash="b0ad5828da633b05e654da393b15526a"/></dir><dir name="thin"><file name="CPAddress.php" hash="885fb4517335421fbd8cbc882ae336b1"/><file name="CPArticle.php" hash="1adce1ce33acdd0185dee06010040b18"/><file name="CPArticleUpdate.php" hash="45f514823895c754010f8f11a1ff683a"/><file name="CPAuth.php" hash="cf5fe570dbd98e3e6339b20cec826b7b"/><file name="CPCancellation.php" hash="9bf808e265e09d166466313405a167fc"/><file name="CPCustomer.php" hash="62babdf11e9b4d80ae0afbbf96ba329d"/><file name="CPDelivery.php" hash="c8c54883370efd519249a9a9551668d0"/><file name="CPDiscount.php" hash="5d6f2766869134a86761c12230dc32d1"/><file name="CPManagedArticlePrice.php" hash="65c4c0df04b7c8d20294874de11640d6"/><file name="CPMoney.php" hash="952131eccc8470e107c78e15c94b6495"/><file name="CPOrder.php" hash="32623885f664e9b5871fc48b6ba0c801"/><file name="CPOrderHeader.php" hash="828377182e8197c304f230a783606993"/><file name="CPOrderItem.php" hash="dfe2440a08e3d0f13e638fc4090e6c52"/><file name="CPOrderStatus.php" hash="e0e767388dd9a1ab8be5a990f1ab1259"/><file name="CPOrderSummary.php" hash="fceaa6a79b5fc892062681f518fd0243"/><file name="CPPayment.php" hash="446ffde1318d001c213de2b80855af07"/><file name="CPResponseHeader.php" hash="53930210d68046183e3be306996ea9b9"/><file name="CPShipping.php" hash="eaddceace28cdc6ba72434a6321d8c47"/></dir><file name="CPResultCodes.php" hash="955180ee33f14b4afa93f6eb1b5df53f"/><file name="ChannelPilotSellerAPI_v1_0.php" hash="26a64c7251790d823507ce1e40617b2e"/></dir></dir><dir name="handler"><file name="CPAbstractHandler.php" hash="bcdf959495e60bbf90ac9fe11a24cca7"/><file name="CPCancellationHandler.php" hash="9b77706089a26ae42ad2e00c303b66ae"/><file name="CPDebugHandler.php" hash="43f2e8da6e44adfb20d7ec813ca54cad"/><file name="CPDeliveryHandler.php" hash="98e4cdd670e8b82724ed31f3248f117f"/><file name="CPErrorHandler.php" hash="5d728c064c068fdf8354fa87882e4dba"/><file name="CPExportHandler.php" hash="fa1ad717314260ccc9a6b09c899e5d53"/><file name="CPNewPriceHandler.php" hash="4d3f328502eac33e5a9608ef62e6146a"/><file name="CPNewsHandler.php" hash="4975a6271baf09af3b2f007f13bb587c"/><file name="CPOrderHandler.php" hash="3fe672eeae5c0f014cf5c666c36fc146"/><file name="CPRegisterHandler.php" hash="43a7baff372b472049dc0e52deb2549f"/><file name="CPStatusHandler.php" hash="3f9c9e8ef563d12d16051fcd9b996a54"/><file name="todoCPPaymentHandler.php" hash="34ea64beda7c8bc5309ebea280146c32"/></dir><dir name="responses"><file name="CPGetStatusHookResponse.php" hash="672609ebcaa23aa0de85aed04c7662d8"/><file name="CPHookResponse.php" hash="9acdda5838cae8b6022af2f4e0a9314b"/><file name="CPRegisterHookResponse.php" hash="206de6433d0795ebdabff98129cc2fb7"/></dir><dir name="special"><file name="CustomerFunctions.php" hash="c9f4d1d28b3978fcc7824cdbeddbcc73"/></dir><file name="CPErrors.php" hash="3659c38a1ed3be4aa4ec03d93e68a84e"/><file name="Data.php" hash="d7501ab1c2667da79d4201f1c78ad945"/><file name="ExportData.php" hash="d6b5cdc2eff0dbd213772ef549fc4491"/></dir><dir name="controllers"><file name="IndexController.php" hash="36e391b61d1914f8669cd48207dd06da"/></dir><dir name="etc"><file name="adminhtml.xml" hash="62fad9ef0e77e858b74d2a7bdd6a6879"/><file name="config.xml" hash="a321e8a3b8a9c38aa0a801983f9cda20"/><file name="system.xml" hash="1622d955b12a3725b5ad67ff25d33ea7"/></dir><dir name="sql"><dir name="channelpilot_setup"><file name="mysql4-install-2.0.0.php" hash="f8bede180155763a6cee1b901a8e0118"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Channelpilotsolutions_Channelpilot.xml" hash="a64f082fbb324d006d05566a4eb63d3f"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="Channelpilotsolutions"><file name="channelpilot.xml" hash="732f1d98851f3c1bf0cb9e655a4a0359"/></dir></dir><dir name="template"><dir name="Channelpilotsolutions"><file name="channelpilot.phtml" hash="2c1299423849d8a245d12b043ca8f058"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="base"><dir name="default"><dir name="template"><dir name="Channelpilotsolutions"><file name="array_dropdown.phtml" hash="cb1230cd8a92ce0a0961f71b396736ec"/></dir></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><dir name="Channelpilotsolutions"><file name="channelpilot.xml" hash="ee23fe0af5078ab653c5341116c21ddb"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="Channelpilotsolutions"><dir name="Channelpilot"><file name="icon.css" hash="ee075d8ba7c5c45dcb8c87ba1205eaa0"/></dir></dir></dir></dir><dir name="base"><dir name="default"><dir name="Channelpilotsolutions"><file name="channelpilot" hash=""/></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Channelpilotsolutions_Channelpilot.csv" hash="bbc431d629000b2d166509614f9ef935"/></dir><dir name="de_CH"><file name="Channelpilotsolutions_Channelpilot.csv" hash="bbc431d629000b2d166509614f9ef935"/></dir><dir name="de_AT"><file name="Channelpilotsolutions_Channelpilot.csv" hash="bbc431d629000b2d166509614f9ef935"/></dir></target></contents>
35
  <compatible/>
36
  <dependencies/>
37
  </package>