Profileolabs_Shoppingflux - Version 0.9.7

Version Notes

- Minor bugfixes & improvements

Download this release

Release Info

Developer ShoppingFlux
Extension Profileolabs_Shoppingflux
Version 0.9.7
Comparing to
See all releases


Code changes from version 0.9.6 to 0.9.7

app/code/community/Profileolabs/Shoppingflux/Block/Export/Flux.php CHANGED
@@ -40,7 +40,7 @@ class Profileolabs_Shoppingflux_Block_Export_Flux extends Mage_Core_Block_Abstra
40
  }
41
  if($memoryLimit > 0) {
42
  if($memoryLimit <= 128 * 1024 * 1024) {
43
- $maxImportLimit = 50;
44
  } else if($memoryLimit <= 256 * 1024 * 1024) {
45
  $maxImportLimit = 500;
46
  } else if($memoryLimit >= 1024 * 1024 * 1024) {
40
  }
41
  if($memoryLimit > 0) {
42
  if($memoryLimit <= 128 * 1024 * 1024) {
43
+ $maxImportLimit = 100;
44
  } else if($memoryLimit <= 256 * 1024 * 1024) {
45
  $maxImportLimit = 500;
46
  } else if($memoryLimit >= 1024 * 1024 * 1024) {
app/code/community/Profileolabs/Shoppingflux/Block/Manageorders/Adminhtml/System/Config/Form/Fieldset/Shipping/Method.php CHANGED
@@ -58,7 +58,9 @@ class Profileolabs_Shoppingflux_Block_Manageorders_Adminhtml_System_Config_Form_
58
  $shippingMethod = preg_replace('%[^a-zA-Z0-9_]%', '', $shippingMethod);
59
  $configData = $this->getConfigData();
60
  $path = 'shoppingflux_mo/advanced_shipping_method/' . $shippingMethod;
61
- if (isset($configData[$path])) {
 
 
62
  $data = $configData[$path];
63
  $inherit = false;
64
  } else {
58
  $shippingMethod = preg_replace('%[^a-zA-Z0-9_]%', '', $shippingMethod);
59
  $configData = $this->getConfigData();
60
  $path = 'shoppingflux_mo/advanced_shipping_method/' . $shippingMethod;
61
+ $data = '';
62
+ $inherit = false;
63
+ if (isset($configData[$path])) {
64
  $data = $configData[$path];
65
  $inherit = false;
66
  } else {
app/code/community/Profileolabs/Shoppingflux/Helper/Data.php CHANGED
@@ -273,8 +273,11 @@ class Profileolabs_Shoppingflux_Helper_Data extends Mage_Core_Helper_Abstract {
273
  $this->_categoriesWithParents = array('name' => array(), 'url' => array(), 'id' => array());
274
 
275
 
276
- $categories = Mage::getResourceModel('catalog/category_collection')
277
- ->addAttributeToSelect('name')
 
 
 
278
  ->addAttributeToSelect('meta_title')
279
  ->addAttributeToSelect('meta_description')
280
  ->addAttributeToSelect('meta_keywords')
273
  $this->_categoriesWithParents = array('name' => array(), 'url' => array(), 'id' => array());
274
 
275
 
276
+ $categories = Mage::getResourceModel('catalog/category_collection');
277
+ if($storeId) {
278
+ $categories->setStoreId($storeId);
279
+ }
280
+ $categories->addAttributeToSelect('name')
281
  ->addAttributeToSelect('meta_title')
282
  ->addAttributeToSelect('meta_description')
283
  ->addAttributeToSelect('meta_keywords')
app/code/community/Profileolabs/Shoppingflux/Model/Catalog/Product/Collection.php CHANGED
@@ -6,6 +6,7 @@
6
  * @package Profileolabs_Shoppingflux
7
  * @author vincent enjalbert @ web-cooking.net
8
  */
 
9
  class Profileolabs_Shoppingflux_Model_Catalog_Product_Collection extends Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Collection {
10
 
11
  /* WebCooking Fix to rewrite Varien_Data_Collection_Db::getSize() in order to solve pagination error caused by the groupBy clause */
6
  * @package Profileolabs_Shoppingflux
7
  * @author vincent enjalbert @ web-cooking.net
8
  */
9
+ //if magento 1.3 = extends Mage_Eav_Model_Mysql4_Entity_Attribute_Collection ?
10
  class Profileolabs_Shoppingflux_Model_Catalog_Product_Collection extends Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Collection {
11
 
12
  /* WebCooking Fix to rewrite Varien_Data_Collection_Db::getSize() in order to solve pagination error caused by the groupBy clause */
app/code/community/Profileolabs/Shoppingflux/Model/Export/Flux.php CHANGED
@@ -116,12 +116,15 @@ class Profileolabs_Shoppingflux_Model_Export_Flux extends Mage_Core_Model_Abstra
116
  $productCollection->addAttributeToSelect('sku', 'left');
117
  $currentVersion = Mage::getVersion();
118
  $tableName = Mage::getSingleton('core/resource')->getTableName('profileolabs_shoppingflux/export_flux');
119
- $productCollection->joinTable($tableName, "entity_id=product_id", array('skusf' => 'sku'), "{{table}}.store_id = '" . $storeId . "'", 'left');
 
 
 
 
120
  //not compatible with mage 1.3
121
  //$productCollection->joinTable(array('sf'=>'profileolabs_shoppingflux/export_flux'), "sku=sku", array('skusf'=>'sku'), "{{table}}.store_id = '".$storeId."'", 'left');
122
  $productCollection->setPage(1, $maxImport);
123
- $productCollection->getSelect()->where($tableName . '.sku
124
- IS NULL');
125
  //$productCollection->load();
126
  //echo $productCollection->getSelect();
127
  Mage::getSingleton('core/resource_iterator')
@@ -169,7 +172,7 @@ class Profileolabs_Shoppingflux_Model_Export_Flux extends Mage_Core_Model_Abstra
169
  }
170
  }
171
 
172
- public function productNeedUpdateForStore($productId, $storeId) {
173
  $product = $this->_getProduct($productId, $storeId);
174
  if ($product && $product->getId()) {
175
  $fluxEntry = Mage::getModel('profileolabs_shoppingflux/export_flux')->getEntry($product->getSku(), $storeId);
@@ -177,12 +180,23 @@ class Profileolabs_Shoppingflux_Model_Export_Flux extends Mage_Core_Model_Abstra
177
  $fluxEntry->setUpdateNeeded(1);
178
  $fluxEntry->save();
179
  }
180
- // update also parents
181
- $parentIds = Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($product->getId());
182
- foreach ($parentIds as $parentId) {
183
- $this->productNeedUpdateForStore($parentId, $storeId);
 
 
 
 
 
 
 
 
 
 
 
184
  }
185
- }
186
  }
187
 
188
  public function productNeedUpdate($productId) {
@@ -1091,6 +1105,9 @@ class Profileolabs_Shoppingflux_Model_Export_Flux extends Mage_Core_Model_Abstra
1091
 
1092
  if (!isset($usedProductsArray[$usedProduct->getId()]['child']['shipping_delay']) || !$usedProductsArray[$usedProduct->getId()]['child']['shipping_delay'])
1093
  $usedProductsArray[$usedProduct->getId()]['child']['shipping_delay'] = $this->getConfig()->getConfigData('shoppingflux_export/general/default_shipping_delay');
 
 
 
1094
  }
1095
 
1096
 
116
  $productCollection->addAttributeToSelect('sku', 'left');
117
  $currentVersion = Mage::getVersion();
118
  $tableName = Mage::getSingleton('core/resource')->getTableName('profileolabs_shoppingflux/export_flux');
119
+ $productCollection->getSelect()->joinLeft(
120
+ array('sf'=>$tableName),
121
+ "entity_id=sf.product_id and store_id = '" . $storeId . "'",
122
+ array('skusf' => 'sku')
123
+ );
124
  //not compatible with mage 1.3
125
  //$productCollection->joinTable(array('sf'=>'profileolabs_shoppingflux/export_flux'), "sku=sku", array('skusf'=>'sku'), "{{table}}.store_id = '".$storeId."'", 'left');
126
  $productCollection->setPage(1, $maxImport);
127
+ $productCollection->getSelect()->where('sf.product_id IS NULL');
 
128
  //$productCollection->load();
129
  //echo $productCollection->getSelect();
130
  Mage::getSingleton('core/resource_iterator')
172
  }
173
  }
174
 
175
+ public function productNeedUpdateForStore($productId, $storeId, $ignoreRelations = false) {
176
  $product = $this->_getProduct($productId, $storeId);
177
  if ($product && $product->getId()) {
178
  $fluxEntry = Mage::getModel('profileolabs_shoppingflux/export_flux')->getEntry($product->getSku(), $storeId);
180
  $fluxEntry->setUpdateNeeded(1);
181
  $fluxEntry->save();
182
  }
183
+ if(!$ignoreRelations) {
184
+ // update also parents
185
+ $parentIds = Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($product->getId());
186
+ foreach ($parentIds as $parentId) {
187
+ $this->productNeedUpdateForStore($parentId, $storeId, true);
188
+ }
189
+ // ... and child
190
+ if($product->getTypeId() == 'configurable') {
191
+ $childProducts = Mage::getModel('catalog/product_type_configurable')->getUsedProducts(null,$product);
192
+ foreach($childProducts as $childProduct) {
193
+ if($childProduct->getTypeId() == 'simple') {
194
+ $this->productNeedUpdateForStore($childProduct->getId(), $storeId, true);
195
+ }
196
+ }
197
+ }
198
  }
199
+ }
200
  }
201
 
202
  public function productNeedUpdate($productId) {
1105
 
1106
  if (!isset($usedProductsArray[$usedProduct->getId()]['child']['shipping_delay']) || !$usedProductsArray[$usedProduct->getId()]['child']['shipping_delay'])
1107
  $usedProductsArray[$usedProduct->getId()]['child']['shipping_delay'] = $this->getConfig()->getConfigData('shoppingflux_export/general/default_shipping_delay');
1108
+
1109
+ unset($usedProductsArray[$usedProduct->getId()]['child']['price']);
1110
+ unset($usedProductsArray[$usedProduct->getId()]['child']['special_price']);
1111
  }
1112
 
1113
 
app/code/community/Profileolabs/Shoppingflux/Model/Manageorders/Observer.php CHANGED
@@ -208,7 +208,7 @@ class Profileolabs_Shoppingflux_Model_Manageorders_Observer {
208
  public function observeAdminhtmlBlockHtmlBefore($observer) {
209
  $block = $observer->getEvent()->getBlock();
210
  if ($block instanceof Mage_Adminhtml_Block_Sales_Order_View) {
211
- if ($block->getOrderId() && $block->getOrder() && $block->getOrder()->getShoppingfluxShipmentFlag() == 0 && $block->getOrder()->getFromShoppingflux() == 1 && $block->getOrder()->hasShipments()) {
212
  $block->addButton('shoppingflux_shipment', array(
213
  'label' => $this->getHelper()->__('Send notification to ShoppingFeed'),
214
  'onclick' => "setLocation('" . Mage::helper('adminhtml')->getUrl('shoppingflux/manageorders_adminhtml_import/sendShipment', array('order_id'=>$block->getOrder()->getId())) . "')",
208
  public function observeAdminhtmlBlockHtmlBefore($observer) {
209
  $block = $observer->getEvent()->getBlock();
210
  if ($block instanceof Mage_Adminhtml_Block_Sales_Order_View) {
211
+ if (method_exists($block, 'addButton') && $block->getOrderId() && $block->getOrder() && $block->getOrder()->getShoppingfluxShipmentFlag() == 0 && $block->getOrder()->getFromShoppingflux() == 1 && $block->getOrder()->hasShipments()) {
212
  $block->addButton('shoppingflux_shipment', array(
213
  'label' => $this->getHelper()->__('Send notification to ShoppingFeed'),
214
  'onclick' => "setLocation('" . Mage::helper('adminhtml')->getUrl('shoppingflux/manageorders_adminhtml_import/sendShipment', array('order_id'=>$block->getOrder()->getId())) . "')",
app/code/community/Profileolabs/Shoppingflux/controllers/Export/FluxController.php CHANGED
@@ -9,22 +9,41 @@ class Profileolabs_Shoppingflux_Export_FluxController extends Mage_Core_Controll
9
  public function testAction() {
10
  ini_set('display_errors', 1);
11
  //Mage::app()->cleanCache();
12
- /* $resource = Mage::getSingleton('core/resource');
13
  $readConnection = $resource->getConnection('core_read');
14
  $writeConnection = $resource->getConnection('core_write');
15
  $installer = Mage::getResourceModel('catalog/setup','profileolabs_shoppingflux_setup');
16
- $installer->run("
17
  ALTER TABLE `{$installer->getTable('shoppingflux_export_flux')}` ADD `product_id` int( 11 ) NOT NULL default 0 AFTER `id`;
18
- ");
19
- $results = $readConnection->fetchAll('SHOW COLUMNS FROM '.$installer->getTable('shoppingflux_export_flux'));
20
- var_dump($results);die();*/
 
 
 
 
21
 
22
 
23
  //Mage::getModel('profileolabs_shoppingflux/export_flux')->checkForDeletedProducts();
24
  //Mage::helper('profileolabs_shoppingflux')->newInstallation();
25
 
26
 
27
- //$installer = Mage::getResourceModel('catalog/setup','profileolabs_shoppingflux_setup');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  //$sql = "delete from `".$installer->getTable('core/config_data')."` where `path` = 'shoppingflux_export/attributes_mapping/additional,'";
29
  //$sql = sprintf("UPDATE `%s` SET `path` = '%s' WHERE `path` = '%s'",$installer->getTable('core/config_data'), 'shoppingflux_export/attributes_mapping/additional', 'shoppingflux_export/attributes_additionnal/list');
30
  //$installer->run($sql);
@@ -42,7 +61,7 @@ class Profileolabs_Shoppingflux_Export_FluxController extends Mage_Core_Controll
42
  } catch (Exception $e) {
43
  $write->rollback();
44
  }
45
- die('Le flux shopping flux sera mis a jour pour ce flux');
46
  }
47
 
48
  public function refreshAllAllStoresAction() {
@@ -56,7 +75,7 @@ class Profileolabs_Shoppingflux_Export_FluxController extends Mage_Core_Controll
56
  } catch (Exception $e) {
57
  $write->rollback();
58
  }
59
- die('Le flux shopping flux sera mis a jour pour ce flux');
60
  }
61
 
62
  public function refreshEverythingAction() {
@@ -70,7 +89,7 @@ class Profileolabs_Shoppingflux_Export_FluxController extends Mage_Core_Controll
70
  } catch (Exception $e) {
71
  $write->rollback();
72
  }
73
- die('Le flux shopping flux sera mis a jour pour ce flux');
74
  }
75
 
76
  public function refreshEverythingAllStoresAction() {
@@ -84,7 +103,7 @@ class Profileolabs_Shoppingflux_Export_FluxController extends Mage_Core_Controll
84
  } catch (Exception $e) {
85
  $write->rollback();
86
  }
87
- die('Le flux shopping flux sera mis a jour pour ce flux');
88
  }
89
 
90
  public function statusAction() {
@@ -114,7 +133,7 @@ class Profileolabs_Shoppingflux_Export_FluxController extends Mage_Core_Controll
114
  $feedExportCount++;
115
  }
116
  }*/
117
- $_conn = Mage::getSingleton('core/resource')->getConnection('read');
118
  $results = $_conn->fetchAll('SELECT SUM(update_needed) as total_needed, SUM(should_export) as total_export, count(*) as total from ' . Mage::getSingleton('core/resource')->getTableName('profileolabs_shoppingflux/export_flux') . ' where store_id = ' . $storeId);
119
  list($feedUpdateNeededCount, $feedExportCount, $feedCount) = array_values($results[0]);
120
  $feedNotExportCount = $feedCount-$feedExportCount;
9
  public function testAction() {
10
  ini_set('display_errors', 1);
11
  //Mage::app()->cleanCache();
12
+ $resource = Mage::getSingleton('core/resource');
13
  $readConnection = $resource->getConnection('core_read');
14
  $writeConnection = $resource->getConnection('core_write');
15
  $installer = Mage::getResourceModel('catalog/setup','profileolabs_shoppingflux_setup');
16
+ /* $installer->run("
17
  ALTER TABLE `{$installer->getTable('shoppingflux_export_flux')}` ADD `product_id` int( 11 ) NOT NULL default 0 AFTER `id`;
18
+ ");*/
19
+ //$results = $readConnection->fetchAll('SHOW COLUMNS FROM '.$installer->getTable('shoppingflux_export_flux'));
20
+ $results = $readConnection->fetchAll("
21
+ SELECT `e`.*, `sf`.`sku` AS `skusf` FROM `catalog_product_entity` AS `e`
22
+ INNER JOIN `catalog_product_website` AS `product_website` ON product_website.product_id = e.entity_id AND product_website.website_id = '1'
23
+ INNER JOIN `shoppingflux_export_flux` AS `sf` ON entity_id=sf.product_id where sf.store_id = '1' ");
24
+ var_dump($results);die();
25
 
26
 
27
  //Mage::getModel('profileolabs_shoppingflux/export_flux')->checkForDeletedProducts();
28
  //Mage::helper('profileolabs_shoppingflux')->newInstallation();
29
 
30
 
31
+ $installer = Mage::getResourceModel('catalog/setup','profileolabs_shoppingflux_setup');
32
+ $installer->addAttribute('catalog_category', 'sf_exclude', array(
33
+ 'type' => 'int',
34
+ 'group' => 'General Information',
35
+ 'backend' => '',
36
+ 'frontend' => '',
37
+ 'label' => 'Do not export this category in ShoppingFlux',
38
+ 'input' => 'select',
39
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
40
+ 'visible' => 1,
41
+ 'required' => 0,
42
+ 'user_defined' => 0,
43
+ 'default' => 0,
44
+ 'source' => 'eav/entity_attribute_source_boolean',
45
+ 'unique' => 0,
46
+ ));
47
  //$sql = "delete from `".$installer->getTable('core/config_data')."` where `path` = 'shoppingflux_export/attributes_mapping/additional,'";
48
  //$sql = sprintf("UPDATE `%s` SET `path` = '%s' WHERE `path` = '%s'",$installer->getTable('core/config_data'), 'shoppingflux_export/attributes_mapping/additional', 'shoppingflux_export/attributes_additionnal/list');
49
  //$installer->run($sql);
61
  } catch (Exception $e) {
62
  $write->rollback();
63
  }
64
+ die(Mage::helper('profileolabs_shoppingflux')->__('The cache of this feed has been purged'));
65
  }
66
 
67
  public function refreshAllAllStoresAction() {
75
  } catch (Exception $e) {
76
  $write->rollback();
77
  }
78
+ die(Mage::helper('profileolabs_shoppingflux')->__('The cache of this feed has been purged'));
79
  }
80
 
81
  public function refreshEverythingAction() {
89
  } catch (Exception $e) {
90
  $write->rollback();
91
  }
92
+ die(Mage::helper('profileolabs_shoppingflux')->__('The cache of this feed has been purged'));
93
  }
94
 
95
  public function refreshEverythingAllStoresAction() {
103
  } catch (Exception $e) {
104
  $write->rollback();
105
  }
106
+ die(Mage::helper('profileolabs_shoppingflux')->__('The cache of this feed has been purged'));
107
  }
108
 
109
  public function statusAction() {
133
  $feedExportCount++;
134
  }
135
  }*/
136
+ $_conn = Mage::getSingleton('core/resource')->getConnection('core_read');
137
  $results = $_conn->fetchAll('SELECT SUM(update_needed) as total_needed, SUM(should_export) as total_export, count(*) as total from ' . Mage::getSingleton('core/resource')->getTableName('profileolabs_shoppingflux/export_flux') . ' where store_id = ' . $storeId);
138
  list($feedUpdateNeededCount, $feedExportCount, $feedCount) = array_values($results[0]);
139
  $feedNotExportCount = $feedCount-$feedExportCount;
app/code/community/Profileolabs/Shoppingflux/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Profileolabs_Shoppingflux>
5
- <version>0.9.6</version>
6
  </Profileolabs_Shoppingflux>
7
  </modules>
8
  <admin>
@@ -375,14 +375,14 @@
375
  <model>profileolabs_shoppingflux/export_observer::generateFluxInFile</model>
376
  </run>
377
  </export_flux_in_file>
378
- <fill_main_category>
379
  <schedule>
380
  <cron_expr>0 2 * * *</cron_expr>
381
  </schedule>
382
  <run>
383
  <model>profileolabs_shoppingflux/export_observer::fillMainCategory</model>
384
  </run>
385
- </fill_main_category>
386
  <!--<export_shipments_shoppingflux>
387
  <schedule>
388
  <cron_expr>*/10 * * * *</cron_expr>
@@ -414,7 +414,7 @@
414
  <!--<ws_uri_prod>https://clients.shopping-flux.com/webservice/</ws_uri_prod>-->
415
  <!--<ws_uri_prod>https://clients.shopping-flux.com/webservice/magento/</ws_uri_prod>-->
416
  <api_key></api_key>
417
- <enable_buyline>0</enable_buyline>
418
  </configuration>
419
  </shoppingflux>
420
  <shoppingflux_mo>
2
  <config>
3
  <modules>
4
  <Profileolabs_Shoppingflux>
5
+ <version>0.9.7</version>
6
  </Profileolabs_Shoppingflux>
7
  </modules>
8
  <admin>
375
  <model>profileolabs_shoppingflux/export_observer::generateFluxInFile</model>
376
  </run>
377
  </export_flux_in_file>
378
+ <!--<fill_main_category>
379
  <schedule>
380
  <cron_expr>0 2 * * *</cron_expr>
381
  </schedule>
382
  <run>
383
  <model>profileolabs_shoppingflux/export_observer::fillMainCategory</model>
384
  </run>
385
+ </fill_main_category>-->
386
  <!--<export_shipments_shoppingflux>
387
  <schedule>
388
  <cron_expr>*/10 * * * *</cron_expr>
414
  <!--<ws_uri_prod>https://clients.shopping-flux.com/webservice/</ws_uri_prod>-->
415
  <!--<ws_uri_prod>https://clients.shopping-flux.com/webservice/magento/</ws_uri_prod>-->
416
  <api_key></api_key>
417
+ <!--<enable_buyline>0</enable_buyline>-->
418
  </configuration>
419
  </shoppingflux>
420
  <shoppingflux_mo>
app/code/community/Profileolabs/Shoppingflux/etc/system.xml CHANGED
@@ -50,7 +50,7 @@
50
  <show_in_website>0</show_in_website>
51
  <show_in_store>1</show_in_store>
52
  </id_tracking>
53
- <enable_buyline>
54
  <label>Enable buyline ?</label>
55
  <frontend_type>select</frontend_type>
56
  <source_model>adminhtml/system_config_source_yesno</source_model>
@@ -59,7 +59,7 @@
59
  <show_in_website>0</show_in_website>
60
  <show_in_store>1</show_in_store>
61
  </enable_buyline>
62
- <!--<alert_email>
63
  <label>Email address for alerts</label>
64
  <comment>In case of issue while transfering data, an email will be sent to this address.</comment>
65
  <frontend_type>text</frontend_type>
50
  <show_in_website>0</show_in_website>
51
  <show_in_store>1</show_in_store>
52
  </id_tracking>
53
+ <!--<enable_buyline>
54
  <label>Enable buyline ?</label>
55
  <frontend_type>select</frontend_type>
56
  <source_model>adminhtml/system_config_source_yesno</source_model>
59
  <show_in_website>0</show_in_website>
60
  <show_in_store>1</show_in_store>
61
  </enable_buyline>
62
+ <alert_email>
63
  <label>Email address for alerts</label>
64
  <comment>In case of issue while transfering data, an email will be sent to this address.</comment>
65
  <frontend_type>text</frontend_type>
app/code/local/Varien/Data/Form/Element/Wcmultiselect.php CHANGED
@@ -75,7 +75,7 @@ class Varien_Data_Form_Element_Wcmultiselect extends Varien_Data_Form_Element_Ab
75
  $html .= '<input type="hidden" name="' . parent::getName() . '" value="" />';
76
  }
77
 
78
- $html .= '<a href="javascript:void(0);" onclick="javascript:newelem=$(\''.$this->getHtmlId().'\').clone(true);newelem.removeAttribute(\'id\');newelem.setValue(\'\');$(this).next().insert({after:newelem});">';
79
  $html .= '<img src="' . Mage::getDesign()->getSkinUrl('images/icon_btn_add.gif') . '" alt="Add Row"/>';
80
  $html .= '</a>' . "\n";
81
  $html .= '<br/>' . "\n";
75
  $html .= '<input type="hidden" name="' . parent::getName() . '" value="" />';
76
  }
77
 
78
+ $html .= '<a href="javascript:void(0);" onclick="javascript:newelem=$(\''.$this->getHtmlId().'\').cloneNode(true);newelem.removeAttribute(\'id\');newelem.setValue(\'\');$(this).next().insert({after:newelem});">';
79
  $html .= '<img src="' . Mage::getDesign()->getSkinUrl('images/icon_btn_add.gif') . '" alt="Add Row"/>';
80
  $html .= '</a>' . "\n";
81
  $html .= '<br/>' . "\n";
app/design/adminhtml/default/default/template/profileolabs/shoppingflux/export/feed.phtml CHANGED
@@ -14,7 +14,7 @@
14
  <?php if($this->storeHasFeed($store)): ?>
15
  <?php $_storeId = $store->getId() ?>
16
  <?php $_feedUrl = $this->getFeedUrl($store); ?>
17
- <dt><?php echo $storeId ?> - <?php echo $store->getName() ?></dt>
18
  <dd><a href="<?php echo $_feedUrl ?>" target="_blank"><?php echo $_feedUrl ?></a></dd>
19
  <?php endif; ?>
20
  <?php endforeach ?>
14
  <?php if($this->storeHasFeed($store)): ?>
15
  <?php $_storeId = $store->getId() ?>
16
  <?php $_feedUrl = $this->getFeedUrl($store); ?>
17
+ <dt><?php echo $_storeId ?> - <?php echo $store->getName() ?></dt>
18
  <dd><a href="<?php echo $_feedUrl ?>" target="_blank"><?php echo $_feedUrl ?></a></dd>
19
  <?php endif; ?>
20
  <?php endforeach ?>
app/design/frontend/base/default/layout/profileolabs_shoppingflux.xml CHANGED
@@ -4,10 +4,10 @@
4
  <reference name="before_body_end">
5
  <block type="profileolabs_shoppingflux/tracking_roi" name="sf_tracking_roi" as="sf.track.roi" />
6
  </reference>
7
- </checkout_onepage_success>-->
8
  <default>
9
  <reference name="before_body_end">
10
  <block type="profileolabs_shoppingflux/tracking_buyline" name="sf_tracking_buyline" as="sf.track.buyline" />
11
  </reference>
12
- </default>
13
  </layout>
4
  <reference name="before_body_end">
5
  <block type="profileolabs_shoppingflux/tracking_roi" name="sf_tracking_roi" as="sf.track.roi" />
6
  </reference>
7
+ </checkout_onepage_success>
8
  <default>
9
  <reference name="before_body_end">
10
  <block type="profileolabs_shoppingflux/tracking_buyline" name="sf_tracking_buyline" as="sf.track.buyline" />
11
  </reference>
12
+ </default>-->
13
  </layout>
app/design/frontend/default/default/layout/profileolabs_shoppingflux.xml CHANGED
@@ -4,10 +4,10 @@
4
  <reference name="before_body_end">
5
  <block type="profileolabs_shoppingflux/tracking_roi" name="sf_tracking_roi" as="sf.track.roi" />
6
  </reference>
7
- </checkout_onepage_success>-->
8
  <default>
9
  <reference name="before_body_end">
10
  <block type="profileolabs_shoppingflux/tracking_buyline" name="sf_tracking_buyline" as="sf.track.buyline" />
11
  </reference>
12
- </default>
13
  </layout>
4
  <reference name="before_body_end">
5
  <block type="profileolabs_shoppingflux/tracking_roi" name="sf_tracking_roi" as="sf.track.roi" />
6
  </reference>
7
+ </checkout_onepage_success>
8
  <default>
9
  <reference name="before_body_end">
10
  <block type="profileolabs_shoppingflux/tracking_buyline" name="sf_tracking_buyline" as="sf.track.buyline" />
11
  </reference>
12
+ </default>-->
13
  </layout>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Profileolabs_Shoppingflux</name>
4
- <version>0.9.6</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
7
  <channel>community</channel>
@@ -11,9 +11,9 @@
11
  <notes>- Minor bugfixes &amp; improvements&#xD;
12
  </notes>
13
  <authors><author><name>ShoppingFlux</name><user>ShoppingFlux</user><email>olivier.levy@gmail.com</email></author></authors>
14
- <date>2015-06-17</date>
15
- <time>15:23:29</time>
16
- <contents><target name="magecommunity"><dir name="Profileolabs"><dir name="Shoppingflux"><dir name="Block"><dir name="Adminhtml"><dir name="Register"><file name="Notification.php" hash="13c5b3fccfd09dca376d4bc03f883384"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><file name="Abstract.php" hash="9046ac88c58d7768d28047c5102789ae"/></dir></dir></dir></dir></dir><dir name="Export"><dir name="Adminhtml"><dir name="Catalog"><dir name="Category"><dir name="Edit"><file name="Form.php" hash="da466a657f2b80567ef576711a190805"/></dir><dir name="Tab"><file name="Default.php" hash="b66202a43cdb1e3b178287aa1d7c1d2a"/></dir></dir></dir><file name="Feed.php" hash="a6bfac2be7c99ba5631626404e231ab0"/><file name="Process.php" hash="d5cd1471abfc8ea7f364dfb4610e4fd4"/><dir name="Product"><file name="Grid.php" hash="03b7aa3a458a0405d5d22ce7c0566033"/></dir><file name="Product.php" hash="f71a0d0f25e2484f74f1ceaeee514d3f"/><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Bool.php" hash="2717fd3964299bb372c355427c8136d7"/></dir></dir></dir></dir></dir><file name="Flow.php" hash="51cfa87ab0417ff26669a33bd22b50fa"/><file name="Flux.php" hash="e918fb21d134e12931d6191542b1e979"/><file name="Tracking.php" hash="a01f384121dda81f8ee3faa80ee3a32a"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Manageorders"><dir name="Adminhtml"><dir name="Cron"><file name="Grid.php" hash="ddfd5d9374446afafef1f545839e869e"/></dir><file name="Cron.php" hash="1a6a4042d3270b56e2dadc80f5c12cfa"/><file name="Import.php" hash="0d675a1731ca646ba57989b8545f4682"/><dir name="Log"><file name="Grid.php" hash="9170b01b3a6d3d558801faeba745390f"/></dir><file name="Log.php" hash="3336bc53002b82b4ab16d18a4e68e0cb"/><dir name="Order"><file name="Grid.php" hash="00cc7d1bb20437d8f7a547e0acfd7f9c"/><dir name="View"><dir name="Tab"><file name="Shoppingflux.php" hash="c0039acf525620c14cc8a1945d44150e"/></dir></dir></dir><file name="Order.php" hash="a6d45eb0146fb448f72348724c3151df"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><dir name="Shipping"><file name="Method.php" hash="e253a6508490522f9e1fa6675cb15ef5"/></dir></dir></dir></dir></dir></dir><dir name="Payment"><dir name="Info"><file name="Purchaseorder.php" hash="df942f5c9a19506ef2bf70ca1d4da809"/></dir></dir></dir><dir name="Tracking"><file name="Buyline.php" hash="a60b19ed533b265a7a2aafe75c03c0fa"/><file name="Roi.php" hash="e34e26dffead694a35798d0397782d55"/></dir></dir><dir name="Helper"><file name="Data.php" hash="72e9b5d2529fee70b12f2922e48cb9e3"/></dir><dir name="Model"><dir name="Attribute"><dir name="Source"><file name="Category.php" hash="49f1f7959c4741c22bbf79b7e0bd24e7"/></dir></dir><dir name="Catalog"><dir name="Product"><file name="Collection.php" hash="8c3a5fe7c329059b6b85a1e0e5ee48fd"/></dir></dir><file name="Config.php" hash="77b303de5e3a24146ee1bd2d2d68bc97"/><dir name="Export"><dir name="Convert"><dir name="Parser"><file name="Product.php" hash="4e50613b82ba84c35eb87f991645c118"/></dir></dir><file name="Flow.php" hash="842fa4b4a49ea86bdeb1cb0441433ccd"/><file name="Flux.php" hash="8f091dc3ae630a8be6dd0a2dfda0acbe"/><file name="Observer.php" hash="83dabfa1532cfa7400ea793f066c6a96"/><dir name="Rewrite"><dir name="Catalog"><file name="Config.php" hash="c87b13b0141123b80cb1ac33eaf75715"/></dir><dir name="CatalogInventory"><dir name="Stock"><file name="Item.php" hash="5249964f31fda6d5b7ff9587e713ca81"/></dir></dir></dir><dir name="Source"><file name="Attributes.php" hash="7c86df4782b77b69c59204a39766a787"/><file name="Attributesprice.php" hash="6cddf3b9562c8dbc56e670b377e341c1"/><dir name="Category"><file name="Level.php" hash="477d3dccefe5720eedc6b5d7a7110c9a"/></dir><dir name="Tracking"><file name="Delay.php" hash="85eeedcbec182edb1d6845260e1befd9"/></dir><file name="Visibility.php" hash="c2a1494bc2e554074d19c58523c450b2"/></dir><file name="Updates.php" hash="6a12528f1ba69f0e0240ba471b471578"/><file name="Xml.php" hash="d6574955d2a108a91c1ebf84feb1b02b"/><file name="Xmlflow.deprecated.php" hash="960d81e05b332cdb16449029b07f0eca"/><file name="Xmlflow.php" hash="82815362cf6b2127ef961be79e48c127"/></dir><dir name="Manageorders"><dir name="Convert"><file name="Customer.php" hash="9fa96ef49eb52d1d942f5cdea68d160c"/></dir><dir name="Export"><file name="Shipments.php" hash="20e617e183366ef5447ea653aa989065"/></dir><file name="Log.php" hash="392d1811b56df12bccb2e7986e588f3d"/><file name="Observer.php" hash="282270f19c23575adb95a1fe026db6a3"/><file name="Order.php" hash="baa8025cf065022ff168e565a6a900b2"/><file name="OrderOLD.php" hash="f25b3ce2d3610eecf201e2d2421aa460"/><dir name="Payment"><dir name="Method"><file name="Purchaseorder.php" hash="4ed46b995590d286b3154e0bbf7ebc63"/></dir></dir><file name="Product.php" hash="0041c5ebcd0aa8ca17f5c1a4f07ec03d"/><dir name="Shipping"><dir name="Carrier"><file name="Shoppingflux.php" hash="1d56b8eac4d74d6f9cce1e8c5a6613bb"/></dir><file name="Method.php" hash="a71d621b210ecdb1e69290f3e0c6f6d2"/></dir><dir name="Source"><file name="Attributes.php" hash="c9207872ddd962d6b0166d35cfe98626"/></dir></dir><dir name="Mysql4"><dir name="Export"><dir name="Flux"><file name="Collection.php" hash="25a6420bb66aeefb6a8ac0a9e6fc538f"/></dir><file name="Flux.php" hash="6140eeee9d40615eaaba736377aba17e"/><dir name="Updates"><file name="Collection.php" hash="21b355b1db82e4b8a5d1950ac2ffbd18"/></dir><file name="Updates.php" hash="02ef11d051020470231e470f3232f862"/></dir><dir name="Manageorders"><dir name="Export"><dir name="Shipments"><file name="Collection.php" hash="fcdf3c607a8d479beb10a53a618aa225"/></dir><file name="Shipments.php" hash="e06dfaf254a5fd3d8649685b56874258"/></dir><dir name="Log"><file name="Collection.php" hash="0efd8c68937edf98cc9f9bb35bd76f79"/></dir><file name="Log.php" hash="b30bbf3ead209d69993546b29f72ecd7"/><dir name="Shipping"><dir name="Method"><file name="Collection.php" hash="7b2c8fb56625953ea8cd79cc7ddcc9df"/></dir><file name="Method.php" hash="a919a6c61ad6ddefd19ffc287eaa7325"/></dir></dir></dir><dir name="Service"><dir name="Http"><dir name="Client"><dir name="Adapter"><file name="Curl.php" hash="659ab165cdd8492fdc7ee08b515732ac"/><file name="Stream.php" hash="c3a61972f5ffb625dba59ba53365965d"/></dir></dir></dir></dir><file name="Service.php" hash="710020ebbf9107f09bb8a0e84ddcf81f"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Apikey.php" hash="90036cf58c627fcc68920af912171a0c"/><file name="Refresh.php" hash="d53cbdc6ae73c146af67ef5f20d9e4e8"/></dir></dir></dir><file name=".DS_Store" hash="e7218be203fbe7f5c2243a9dea3bf55e"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="GeneralController.php" hash="ca99113377d353dbc4eecfdaea767fa2"/></dir><dir name="Export"><dir name="Adminhtml"><file name="CategoryController.php" hash="d882797e1e0fbff25b312768c6569f04"/><file name="ExportController.php" hash="15e395246d428bc7e390e1078a54a390"/></dir><file name="FluxController.php" hash="9b7f2106750594697a0af76bd6ff67b6"/></dir><dir name="Manageorders"><dir name="Adminhtml"><file name="CronController.php" hash="9c43b1b18fb883b4140aaa1d3f82cb1c"/><file name="ImportController.php" hash="31203b56860d102c1565fb7653b1a770"/><file name="LogController.php" hash="f744619a2283468d03e8a3f7f8f0c080"/><file name="OrderController.php" hash="acec967d5c7fa44fd3f716fc48f500a6"/></dir><file name="LaunchController.php" hash="104e0020258b47abeacceed7b6b3669b"/></dir></dir><dir name="doc"><file name="ShoppingFeed_US.pdf" hash="0cd685730056d5f2f9c9f8292dead3ae"/><file name="ShoppingFlux_FR.pdf" hash="5590a49838bd67f70f0cacf9605cea2b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="fa2e007d1511d96ca9b37fe92eab2604"/><file name="config.xml" hash="b25e0206e33e7ee92e5abe0fc94769af"/><file name="system.xml" hash="2d4a55f129ed62e90d0ac6740cab6806"/></dir><dir name="sql"><dir name="profileolabs_shoppingflux_setup"><file name="mysql4-install-0.1.0.php" hash="87c47ba97a55bd71dada152b52736be2"/><file name="mysql4-install-0.8.0.php" hash="48e14fe6bea37e0813d4e8011d97f9a9"/><file name="mysql4-install-0.8.5.php" hash="1aae90e495b0a281bb6916d425561620"/><file name="mysql4-install-0.8.6.php" hash="ae6e23c12465b3b091c3235598c20b0e"/><file name="mysql4-install-0.8.7.php" hash="7672f1e89056b6bd476bf7443937dd73"/><file name="mysql4-install-0.9.3.php" hash="33a66ff8e8d4505e0c68f2f027a00750"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="0f95646d855413c52928ed4c258aacb1"/><file name="mysql4-upgrade-0.3.13-0.3.14.php" hash="4f6a5399ad06457f0ebf57b33353ebe2"/><file name="mysql4-upgrade-0.3.14-0.3.15.php" hash="6215917eef61544fc6f4193d31956df4"/><file name="mysql4-upgrade-0.3.17-0.3.18.php" hash="112b34baecd80300682bda9ba69c8970"/><file name="mysql4-upgrade-0.4.2-0.4.3.php" hash="2322a9d2b5130bc78699c1953df87a04"/><file name="mysql4-upgrade-0.4.6-0.5.0.php" hash="02be6c02a8c77e642ef3e40ded1ba8be"/><file name="mysql4-upgrade-0.5.1-0.5.2.php" hash="0e5414628efee519deff6aff301651c7"/><file name="mysql4-upgrade-0.5.3-0.5.4.php" hash="9dfb5e5895a9a2973dba57a049d9d379"/><file name="mysql4-upgrade-0.5.5-0.5.6.php" hash="e0ebe03688b7eac8252efa0d5b9b4258"/><file name="mysql4-upgrade-0.6.5-0.6.6.php" hash="c58a1219b2858d50a3d72e77ac6ee43c"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="0804f52786bdd97024dee79eb4b68695"/><file name="mysql4-upgrade-0.7.9-0.8.0.php" hash="7fdd68eda7f3162e979995ed2d7f847d"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="edb5ea0572bdc0e75fd402aeaefc4858"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="a80ecd198b298fecbf6807eba980361e"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="b2f8a980fbace011ff9632198ae6c0a5"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="d8c3ba1dd0bbd12c20fc221e03ff2391"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="5e611f9c8f337cbee764e692721520e4"/><file name=".DS_Store" hash="05157f0d6ed36203dee120b9772e6b15"/></dir></dir><file name=".DS_Store" hash="70d8319e6c95b1083e4aa566a1e7f8f7"/></dir><file name=".DS_Store" hash="d3146c6d782e4b3220b6aaa51d65eccc"/></dir></target><target name="mageetc"><dir name="modules"><file name="Profileolabs_Shoppingflux.xml" hash="73ec83cf32c72884815a3cac9f754a54"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="Profileolabs_Shoppingflux.csv" hash="bb846cd4e91b8d5b49c66c29afda5c52"/></dir><dir name="fr_FR"><file name="Profileolabs_Shoppingflux.csv" hash="e7b3eb4b163a56bfe6194264c308e8d9"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="d4de97001b4d68d165ea6b008541701a"/></dir><dir name="template"><dir name="profileolabs"><dir name="shoppingflux"><dir name="export"><dir name="category"><file name="edit.phtml" hash="8af812638245a0aa59a1c90aa6c20a4f"/></dir><file name="edit.phtml" hash="af3d64c7cb4b179cbf75b2def62d31f1"/><file name="feed.phtml" hash="1cb4146ef5910af093fe928f48332652"/><file name="process.phtml" hash="1dee42b2f14c0862446e5b475aaccad3"/><file name="product.phtml" hash="3d93144b8eb1e16672d610d9c0c35092"/></dir><dir name="manageorders"><file name="import.phtml" hash="6fd3bca397be66fc17d340cfae558fe9"/><dir name="payment"><dir name="info"><file name="purchaseorder.phtml" hash="782768b0e4836b25f46443dda098db29"/></dir></dir><dir name="sales"><dir name="order"><dir name="invoice"><file name="total.phtml" hash="0d8d4aec814c41f80b9d9c475b5da3ae"/></dir><file name="total.phtml" hash="ad58dad0fd4007764f03c74cc5a6ca57"/><dir name="view"><dir name="tab"><file name="shoppingflux.phtml" hash="7492846bef04ca1f0419cd804e7c4599"/></dir></dir></dir></dir></dir><dir name="register"><file name="notification.phtml" hash="80e22e32016bbbfea1c4b8e66ba18579"/></dir><file name="register.phtml" hash="614dfd40a4e74c0db2667ba30aeb71e3"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="ce50864c0302926a6402f4921519ec58"/></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="ce50864c0302926a6402f4921519ec58"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="shoppingflux"><file name="ad.png" hash="b76c0f3e4a7084a88ba0527be9fdcc25"/><file name="logo_us.jpg" hash="cae9e6bcba9814193a59bb07d541edb6"/><file name="s_shoppingfeed.png" hash="8782818108e316533ad090c5b078866f"/><file name="s_shoppingfeed_1.jpg" hash="50b18c2dcbe3bbfa6d0bdb55787da06b"/></dir></dir><dir name="css"><file name="shoppingflux.css" hash="b607a6c8ed09795fdf9fe4876c6ca2d6"/></dir></dir></dir></dir></target><target name="magelocal"><dir name="Varien"><dir name="Data"><dir name="Form"><dir name="Element"><file name="Wcmultiselect.php" hash="0b976892dab42c440b15706eec966efb"/></dir></dir></dir></dir></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
19
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Profileolabs_Shoppingflux</name>
4
+ <version>0.9.7</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">GNU General Public License (GPL)</license>
7
  <channel>community</channel>
11
  <notes>- Minor bugfixes &amp; improvements&#xD;
12
  </notes>
13
  <authors><author><name>ShoppingFlux</name><user>ShoppingFlux</user><email>olivier.levy@gmail.com</email></author></authors>
14
+ <date>2015-07-01</date>
15
+ <time>10:35:41</time>
16
+ <contents><target name="magecommunity"><dir name="Profileolabs"><dir name="Shoppingflux"><dir name="Block"><dir name="Adminhtml"><dir name="Register"><file name="Notification.php" hash="13c5b3fccfd09dca376d4bc03f883384"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><file name="Abstract.php" hash="9046ac88c58d7768d28047c5102789ae"/></dir></dir></dir></dir></dir><dir name="Export"><dir name="Adminhtml"><dir name="Catalog"><dir name="Category"><dir name="Edit"><file name="Form.php" hash="da466a657f2b80567ef576711a190805"/></dir><dir name="Tab"><file name="Default.php" hash="b66202a43cdb1e3b178287aa1d7c1d2a"/></dir></dir></dir><file name="Feed.php" hash="a6bfac2be7c99ba5631626404e231ab0"/><file name="Process.php" hash="d5cd1471abfc8ea7f364dfb4610e4fd4"/><dir name="Product"><file name="Grid.php" hash="03b7aa3a458a0405d5d22ce7c0566033"/></dir><file name="Product.php" hash="f71a0d0f25e2484f74f1ceaeee514d3f"/><dir name="Widget"><dir name="Grid"><dir name="Column"><dir name="Renderer"><file name="Bool.php" hash="2717fd3964299bb372c355427c8136d7"/></dir></dir></dir></dir></dir><file name="Flow.php" hash="51cfa87ab0417ff26669a33bd22b50fa"/><file name="Flux.php" hash="c6da5407ccd3df3c5cd34883f02b9490"/><file name="Tracking.php" hash="a01f384121dda81f8ee3faa80ee3a32a"/><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir><dir name="Manageorders"><dir name="Adminhtml"><dir name="Cron"><file name="Grid.php" hash="ddfd5d9374446afafef1f545839e869e"/></dir><file name="Cron.php" hash="1a6a4042d3270b56e2dadc80f5c12cfa"/><file name="Import.php" hash="0d675a1731ca646ba57989b8545f4682"/><dir name="Log"><file name="Grid.php" hash="9170b01b3a6d3d558801faeba745390f"/></dir><file name="Log.php" hash="3336bc53002b82b4ab16d18a4e68e0cb"/><dir name="Order"><file name="Grid.php" hash="00cc7d1bb20437d8f7a547e0acfd7f9c"/><dir name="View"><dir name="Tab"><file name="Shoppingflux.php" hash="c0039acf525620c14cc8a1945d44150e"/></dir></dir></dir><file name="Order.php" hash="a6d45eb0146fb448f72348724c3151df"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><dir name="Shipping"><file name="Method.php" hash="3133c5e5e3f54a1605d8f59041fb5f1c"/></dir></dir></dir></dir></dir></dir><dir name="Payment"><dir name="Info"><file name="Purchaseorder.php" hash="df942f5c9a19506ef2bf70ca1d4da809"/></dir></dir></dir><dir name="Tracking"><file name="Buyline.php" hash="a60b19ed533b265a7a2aafe75c03c0fa"/><file name="Roi.php" hash="e34e26dffead694a35798d0397782d55"/></dir></dir><dir name="Helper"><file name="Data.php" hash="627127368b33102a64bb56ea5d568d23"/></dir><dir name="Model"><dir name="Attribute"><dir name="Source"><file name="Category.php" hash="49f1f7959c4741c22bbf79b7e0bd24e7"/></dir></dir><dir name="Catalog"><dir name="Product"><file name="Collection.php" hash="4d4a368e1d7af2e403380dd206f213f7"/></dir></dir><file name="Config.php" hash="77b303de5e3a24146ee1bd2d2d68bc97"/><dir name="Export"><dir name="Convert"><dir name="Parser"><file name="Product.php" hash="4e50613b82ba84c35eb87f991645c118"/></dir></dir><file name="Flow.php" hash="842fa4b4a49ea86bdeb1cb0441433ccd"/><file name="Flux.php" hash="11b5095f487c021b452a9304f026b461"/><file name="Observer.php" hash="83dabfa1532cfa7400ea793f066c6a96"/><dir name="Rewrite"><dir name="Catalog"><file name="Config.php" hash="c87b13b0141123b80cb1ac33eaf75715"/></dir><dir name="CatalogInventory"><dir name="Stock"><file name="Item.php" hash="5249964f31fda6d5b7ff9587e713ca81"/></dir></dir></dir><dir name="Source"><file name="Attributes.php" hash="7c86df4782b77b69c59204a39766a787"/><file name="Attributesprice.php" hash="6cddf3b9562c8dbc56e670b377e341c1"/><dir name="Category"><file name="Level.php" hash="477d3dccefe5720eedc6b5d7a7110c9a"/></dir><dir name="Tracking"><file name="Delay.php" hash="85eeedcbec182edb1d6845260e1befd9"/></dir><file name="Visibility.php" hash="c2a1494bc2e554074d19c58523c450b2"/></dir><file name="Updates.php" hash="6a12528f1ba69f0e0240ba471b471578"/><file name="Xml.php" hash="d6574955d2a108a91c1ebf84feb1b02b"/><file name="Xmlflow.deprecated.php" hash="960d81e05b332cdb16449029b07f0eca"/><file name="Xmlflow.php" hash="82815362cf6b2127ef961be79e48c127"/></dir><dir name="Manageorders"><dir name="Convert"><file name="Customer.php" hash="9fa96ef49eb52d1d942f5cdea68d160c"/></dir><dir name="Export"><file name="Shipments.php" hash="20e617e183366ef5447ea653aa989065"/></dir><file name="Log.php" hash="392d1811b56df12bccb2e7986e588f3d"/><file name="Observer.php" hash="3662a1d641ee0d62031810f3c8afa567"/><file name="Order.php" hash="baa8025cf065022ff168e565a6a900b2"/><file name="OrderOLD.php" hash="f25b3ce2d3610eecf201e2d2421aa460"/><dir name="Payment"><dir name="Method"><file name="Purchaseorder.php" hash="4ed46b995590d286b3154e0bbf7ebc63"/></dir></dir><file name="Product.php" hash="0041c5ebcd0aa8ca17f5c1a4f07ec03d"/><dir name="Shipping"><dir name="Carrier"><file name="Shoppingflux.php" hash="1d56b8eac4d74d6f9cce1e8c5a6613bb"/></dir><file name="Method.php" hash="a71d621b210ecdb1e69290f3e0c6f6d2"/></dir><dir name="Source"><file name="Attributes.php" hash="c9207872ddd962d6b0166d35cfe98626"/></dir></dir><dir name="Mysql4"><dir name="Export"><dir name="Flux"><file name="Collection.php" hash="25a6420bb66aeefb6a8ac0a9e6fc538f"/></dir><file name="Flux.php" hash="6140eeee9d40615eaaba736377aba17e"/><dir name="Updates"><file name="Collection.php" hash="21b355b1db82e4b8a5d1950ac2ffbd18"/></dir><file name="Updates.php" hash="02ef11d051020470231e470f3232f862"/></dir><dir name="Manageorders"><dir name="Export"><dir name="Shipments"><file name="Collection.php" hash="fcdf3c607a8d479beb10a53a618aa225"/></dir><file name="Shipments.php" hash="e06dfaf254a5fd3d8649685b56874258"/></dir><dir name="Log"><file name="Collection.php" hash="0efd8c68937edf98cc9f9bb35bd76f79"/></dir><file name="Log.php" hash="b30bbf3ead209d69993546b29f72ecd7"/><dir name="Shipping"><dir name="Method"><file name="Collection.php" hash="7b2c8fb56625953ea8cd79cc7ddcc9df"/></dir><file name="Method.php" hash="a919a6c61ad6ddefd19ffc287eaa7325"/></dir></dir></dir><dir name="Service"><dir name="Http"><dir name="Client"><dir name="Adapter"><file name="Curl.php" hash="659ab165cdd8492fdc7ee08b515732ac"/><file name="Stream.php" hash="c3a61972f5ffb625dba59ba53365965d"/></dir></dir></dir></dir><file name="Service.php" hash="710020ebbf9107f09bb8a0e84ddcf81f"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Apikey.php" hash="90036cf58c627fcc68920af912171a0c"/><file name="Refresh.php" hash="d53cbdc6ae73c146af67ef5f20d9e4e8"/></dir></dir></dir><file name=".DS_Store" hash="e7218be203fbe7f5c2243a9dea3bf55e"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="GeneralController.php" hash="ca99113377d353dbc4eecfdaea767fa2"/></dir><dir name="Export"><dir name="Adminhtml"><file name="CategoryController.php" hash="d882797e1e0fbff25b312768c6569f04"/><file name="ExportController.php" hash="15e395246d428bc7e390e1078a54a390"/></dir><file name="FluxController.php" hash="dfc3346321cb2d2bcb076877871b14ee"/></dir><dir name="Manageorders"><dir name="Adminhtml"><file name="CronController.php" hash="9c43b1b18fb883b4140aaa1d3f82cb1c"/><file name="ImportController.php" hash="31203b56860d102c1565fb7653b1a770"/><file name="LogController.php" hash="f744619a2283468d03e8a3f7f8f0c080"/><file name="OrderController.php" hash="acec967d5c7fa44fd3f716fc48f500a6"/></dir><file name="LaunchController.php" hash="104e0020258b47abeacceed7b6b3669b"/></dir></dir><dir name="doc"><file name="ShoppingFeed_US.pdf" hash="0cd685730056d5f2f9c9f8292dead3ae"/><file name="ShoppingFlux_FR.pdf" hash="5590a49838bd67f70f0cacf9605cea2b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="fa2e007d1511d96ca9b37fe92eab2604"/><file name="config.xml" hash="9da437138ce6ad811ae26d974f0af46a"/><file name="system.xml" hash="b3cbe9924b99c054f1148c26f59c20bf"/></dir><dir name="sql"><dir name="profileolabs_shoppingflux_setup"><file name="mysql4-install-0.1.0.php" hash="87c47ba97a55bd71dada152b52736be2"/><file name="mysql4-install-0.8.0.php" hash="48e14fe6bea37e0813d4e8011d97f9a9"/><file name="mysql4-install-0.8.5.php" hash="1aae90e495b0a281bb6916d425561620"/><file name="mysql4-install-0.8.6.php" hash="ae6e23c12465b3b091c3235598c20b0e"/><file name="mysql4-install-0.8.7.php" hash="7672f1e89056b6bd476bf7443937dd73"/><file name="mysql4-install-0.9.3.php" hash="33a66ff8e8d4505e0c68f2f027a00750"/><file name="mysql4-upgrade-0.1.0-0.1.1.php" hash="0f95646d855413c52928ed4c258aacb1"/><file name="mysql4-upgrade-0.3.13-0.3.14.php" hash="4f6a5399ad06457f0ebf57b33353ebe2"/><file name="mysql4-upgrade-0.3.14-0.3.15.php" hash="6215917eef61544fc6f4193d31956df4"/><file name="mysql4-upgrade-0.3.17-0.3.18.php" hash="112b34baecd80300682bda9ba69c8970"/><file name="mysql4-upgrade-0.4.2-0.4.3.php" hash="2322a9d2b5130bc78699c1953df87a04"/><file name="mysql4-upgrade-0.4.6-0.5.0.php" hash="02be6c02a8c77e642ef3e40ded1ba8be"/><file name="mysql4-upgrade-0.5.1-0.5.2.php" hash="0e5414628efee519deff6aff301651c7"/><file name="mysql4-upgrade-0.5.3-0.5.4.php" hash="9dfb5e5895a9a2973dba57a049d9d379"/><file name="mysql4-upgrade-0.5.5-0.5.6.php" hash="e0ebe03688b7eac8252efa0d5b9b4258"/><file name="mysql4-upgrade-0.6.5-0.6.6.php" hash="c58a1219b2858d50a3d72e77ac6ee43c"/><file name="mysql4-upgrade-0.7.7-0.7.8.php" hash="0804f52786bdd97024dee79eb4b68695"/><file name="mysql4-upgrade-0.7.9-0.8.0.php" hash="7fdd68eda7f3162e979995ed2d7f847d"/><file name="mysql4-upgrade-0.8.4-0.8.5.php" hash="edb5ea0572bdc0e75fd402aeaefc4858"/><file name="mysql4-upgrade-0.8.5-0.8.6.php" hash="a80ecd198b298fecbf6807eba980361e"/><file name="mysql4-upgrade-0.8.6-0.8.7.php" hash="b2f8a980fbace011ff9632198ae6c0a5"/><file name="mysql4-upgrade-0.9.0-0.9.1.php" hash="d8c3ba1dd0bbd12c20fc221e03ff2391"/><file name="mysql4-upgrade-0.9.2-0.9.3.php" hash="5e611f9c8f337cbee764e692721520e4"/><file name=".DS_Store" hash="05157f0d6ed36203dee120b9772e6b15"/></dir></dir><file name=".DS_Store" hash="70d8319e6c95b1083e4aa566a1e7f8f7"/></dir><file name=".DS_Store" hash="d3146c6d782e4b3220b6aaa51d65eccc"/></dir></target><target name="mageetc"><dir name="modules"><file name="Profileolabs_Shoppingflux.xml" hash="73ec83cf32c72884815a3cac9f754a54"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="Profileolabs_Shoppingflux.csv" hash="bb846cd4e91b8d5b49c66c29afda5c52"/></dir><dir name="fr_FR"><file name="Profileolabs_Shoppingflux.csv" hash="e7b3eb4b163a56bfe6194264c308e8d9"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="d4de97001b4d68d165ea6b008541701a"/></dir><dir name="template"><dir name="profileolabs"><dir name="shoppingflux"><dir name="export"><dir name="category"><file name="edit.phtml" hash="8af812638245a0aa59a1c90aa6c20a4f"/></dir><file name="edit.phtml" hash="af3d64c7cb4b179cbf75b2def62d31f1"/><file name="feed.phtml" hash="e380f0fa763f112ff153976b97dc3704"/><file name="process.phtml" hash="1dee42b2f14c0862446e5b475aaccad3"/><file name="product.phtml" hash="3d93144b8eb1e16672d610d9c0c35092"/></dir><dir name="manageorders"><file name="import.phtml" hash="6fd3bca397be66fc17d340cfae558fe9"/><dir name="payment"><dir name="info"><file name="purchaseorder.phtml" hash="782768b0e4836b25f46443dda098db29"/></dir></dir><dir name="sales"><dir name="order"><dir name="invoice"><file name="total.phtml" hash="0d8d4aec814c41f80b9d9c475b5da3ae"/></dir><file name="total.phtml" hash="ad58dad0fd4007764f03c74cc5a6ca57"/><dir name="view"><dir name="tab"><file name="shoppingflux.phtml" hash="7492846bef04ca1f0419cd804e7c4599"/></dir></dir></dir></dir></dir><dir name="register"><file name="notification.phtml" hash="80e22e32016bbbfea1c4b8e66ba18579"/></dir><file name="register.phtml" hash="614dfd40a4e74c0db2667ba30aeb71e3"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="7fd081f5a153c3912b924fe5258cc468"/></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="7fd081f5a153c3912b924fe5258cc468"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="shoppingflux"><file name="ad.png" hash="b76c0f3e4a7084a88ba0527be9fdcc25"/><file name="logo_us.jpg" hash="cae9e6bcba9814193a59bb07d541edb6"/><file name="s_shoppingfeed.png" hash="8782818108e316533ad090c5b078866f"/><file name="s_shoppingfeed_1.jpg" hash="50b18c2dcbe3bbfa6d0bdb55787da06b"/></dir></dir><dir name="css"><file name="shoppingflux.css" hash="b607a6c8ed09795fdf9fe4876c6ca2d6"/></dir></dir></dir></dir></target><target name="magelocal"><dir name="Varien"><dir name="Data"><dir name="Form"><dir name="Element"><file name="Wcmultiselect.php" hash="304b59d32ecdd9205af1716e528ae4bd"/></dir></dir></dir></dir></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
19
  </package>