Version Notes
- Minor bugfixes & improvements
Download this release
Release Info
| Developer | ShoppingFlux |
| Extension | Profileolabs_Shoppingflux |
| Version | 0.7.6 |
| Comparing to | |
| See all releases | |
Code changes from version 0.7.5 to 0.7.6
- app/code/community/Profileolabs/Shoppingflux/Model/Catalog/Product/Collection.php +1 -1
- app/code/community/Profileolabs/Shoppingflux/Model/Config.php +4 -0
- app/code/community/Profileolabs/Shoppingflux/Model/Manageorders/Convert/Customer.php +4 -0
- app/code/community/Profileolabs/Shoppingflux/etc/config.xml +1 -1
- app/code/community/Profileolabs/Shoppingflux/etc/system.xml +140 -30
- package.xml +4 -4
app/code/community/Profileolabs/Shoppingflux/Model/Catalog/Product/Collection.php
CHANGED
|
@@ -6,7 +6,7 @@
|
|
| 6 |
* @package Profileolabs_Shoppingflux
|
| 7 |
* @author vincent enjalbert @ web-cooking.net
|
| 8 |
*/
|
| 9 |
-
class Profileolabs_Shoppingflux_Model_Catalog_Product_Collection extends
|
| 10 |
|
| 11 |
/* WebCooking Fix to rewrite Varien_Data_Collection_Db::getSize() in order to solve pagination error caused by the groupBy clause */
|
| 12 |
public function getSize() {
|
| 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 */
|
| 12 |
public function getSize() {
|
app/code/community/Profileolabs/Shoppingflux/Model/Config.php
CHANGED
|
@@ -276,5 +276,9 @@ class Profileolabs_Shoppingflux_Model_Config extends Varien_Object {
|
|
| 276 |
return true;
|
| 277 |
//return $this->getConfigFlag('shoppingflux_mo/manageorders/apply_tax', $storeId);
|
| 278 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 279 |
|
| 280 |
}
|
| 276 |
return true;
|
| 277 |
//return $this->getConfigFlag('shoppingflux_mo/manageorders/apply_tax', $storeId);
|
| 278 |
}
|
| 279 |
+
|
| 280 |
+
public function preferMobilePhone($storeId = null) {
|
| 281 |
+
return $this->getConfigFlag("shoppingflux_mo/import_customer/prefer_mobile_phone");
|
| 282 |
+
}
|
| 283 |
|
| 284 |
}
|
app/code/community/Profileolabs/Shoppingflux/Model/Manageorders/Convert/Customer.php
CHANGED
|
@@ -73,6 +73,10 @@ class Profileolabs_Shoppingflux_Model_Manageorders_Convert_Customer extends Vari
|
|
| 73 |
|
| 74 |
if ($address->getTelephone() == "" && $data['PhoneMobile'])
|
| 75 |
$address->setTelephone($data['PhoneMobile']);
|
|
|
|
|
|
|
|
|
|
|
|
|
| 76 |
|
| 77 |
$codeRegion = substr(str_pad($address->getPostcode(), 5, "0", STR_PAD_LEFT), 0, 2);
|
| 78 |
|
| 73 |
|
| 74 |
if ($address->getTelephone() == "" && $data['PhoneMobile'])
|
| 75 |
$address->setTelephone($data['PhoneMobile']);
|
| 76 |
+
|
| 77 |
+
if(Mage::getSingleton('profileolabs_shoppingflux/config')->preferMobilePhone() && $data['PhoneMobile']) {
|
| 78 |
+
$address->setTelephone($data['PhoneMobile']);
|
| 79 |
+
}
|
| 80 |
|
| 81 |
$codeRegion = substr(str_pad($address->getPostcode(), 5, "0", STR_PAD_LEFT), 0, 2);
|
| 82 |
|
app/code/community/Profileolabs/Shoppingflux/etc/config.xml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<Profileolabs_Shoppingflux>
|
| 5 |
-
<version>0.7.
|
| 6 |
</Profileolabs_Shoppingflux>
|
| 7 |
</modules>
|
| 8 |
<admin>
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<Profileolabs_Shoppingflux>
|
| 5 |
+
<version>0.7.6</version>
|
| 6 |
</Profileolabs_Shoppingflux>
|
| 7 |
</modules>
|
| 8 |
<admin>
|
app/code/community/Profileolabs/Shoppingflux/etc/system.xml
CHANGED
|
@@ -151,6 +151,15 @@
|
|
| 151 |
<show_in_website>0</show_in_website>
|
| 152 |
<show_in_store>0</show_in_store>
|
| 153 |
</limit_address_length>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 154 |
<default_group>
|
| 155 |
<label>Default customer group</label>
|
| 156 |
<comment>Set specific customer group for imported customer from Shopping Flux</comment>
|
|
@@ -233,7 +242,7 @@
|
|
| 233 |
</rueducommerce_group>
|
| 234 |
<brandalley_group>
|
| 235 |
<label>Brandalley customer group</label>
|
| 236 |
-
<comment>Set specific customer group for imported customer from Brandalley Leave empty to use default.</comment>
|
| 237 |
<frontend_type>select</frontend_type>
|
| 238 |
<sort_order>60</sort_order>
|
| 239 |
<show_in_default>1</show_in_default>
|
|
@@ -243,7 +252,7 @@
|
|
| 243 |
</brandalley_group>
|
| 244 |
<toutaporter_group>
|
| 245 |
<label>ToutAPorter customer group</label>
|
| 246 |
-
<comment>Set specific customer group for imported customer from ToutAPorter Leave empty to use default.</comment>
|
| 247 |
<frontend_type>select</frontend_type>
|
| 248 |
<sort_order>60</sort_order>
|
| 249 |
<show_in_default>1</show_in_default>
|
|
@@ -253,7 +262,7 @@
|
|
| 253 |
</toutaporter_group>
|
| 254 |
<greenrepublic_group>
|
| 255 |
<label>GreenRepublic customer group</label>
|
| 256 |
-
<comment>Set specific customer group for imported customer from GreenRepublic Leave empty to use default.</comment>
|
| 257 |
<frontend_type>select</frontend_type>
|
| 258 |
<sort_order>60</sort_order>
|
| 259 |
<show_in_default>1</show_in_default>
|
|
@@ -263,7 +272,7 @@
|
|
| 263 |
</greenrepublic_group>
|
| 264 |
<laredoute_group>
|
| 265 |
<label>Laredoute customer group</label>
|
| 266 |
-
<comment>Set specific customer group for imported customer from Laredoute Leave empty to use default.</comment>
|
| 267 |
<frontend_type>select</frontend_type>
|
| 268 |
<sort_order>60</sort_order>
|
| 269 |
<show_in_default>1</show_in_default>
|
|
@@ -273,7 +282,7 @@
|
|
| 273 |
</laredoute_group>
|
| 274 |
<babyssima_group>
|
| 275 |
<label>Babyssima customer group</label>
|
| 276 |
-
<comment>Set specific customer group for imported customer from Babyssima Leave empty to use default.</comment>
|
| 277 |
<frontend_type>select</frontend_type>
|
| 278 |
<sort_order>60</sort_order>
|
| 279 |
<show_in_default>1</show_in_default>
|
|
@@ -281,19 +290,9 @@
|
|
| 281 |
<show_in_store>0</show_in_store>
|
| 282 |
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
| 283 |
</babyssima_group>
|
| 284 |
-
<monechelle_group>
|
| 285 |
-
<label>Monechelle customer group</label>
|
| 286 |
-
<comment>Set specific customer group for imported customer from Monechelle Leave empty to use default.</comment>
|
| 287 |
-
<frontend_type>select</frontend_type>
|
| 288 |
-
<sort_order>60</sort_order>
|
| 289 |
-
<show_in_default>1</show_in_default>
|
| 290 |
-
<show_in_website>0</show_in_website>
|
| 291 |
-
<show_in_store>0</show_in_store>
|
| 292 |
-
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
| 293 |
-
</monechelle_group>
|
| 294 |
<ecitizen_group>
|
| 295 |
<label>Ecitizen customer group</label>
|
| 296 |
-
<comment>Set specific customer group for imported customer from Ecitizen Leave empty to use default.</comment>
|
| 297 |
<frontend_type>select</frontend_type>
|
| 298 |
<sort_order>60</sort_order>
|
| 299 |
<show_in_default>1</show_in_default>
|
|
@@ -303,7 +302,7 @@
|
|
| 303 |
</ecitizen_group>
|
| 304 |
<decofinder_group>
|
| 305 |
<label>Decofinder customer group</label>
|
| 306 |
-
<comment>Set specific customer group for imported customer from Decofinder Leave empty to use default.</comment>
|
| 307 |
<frontend_type>select</frontend_type>
|
| 308 |
<sort_order>60</sort_order>
|
| 309 |
<show_in_default>1</show_in_default>
|
|
@@ -313,7 +312,7 @@
|
|
| 313 |
</decofinder_group>
|
| 314 |
<docteurdiscount_group>
|
| 315 |
<label>Docteurdiscount customer group</label>
|
| 316 |
-
<comment>Set specific customer group for imported customer from Docteurdiscount Leave empty to use default.</comment>
|
| 317 |
<frontend_type>select</frontend_type>
|
| 318 |
<sort_order>60</sort_order>
|
| 319 |
<show_in_default>1</show_in_default>
|
|
@@ -323,7 +322,7 @@
|
|
| 323 |
</docteurdiscount_group>
|
| 324 |
<glamour_group>
|
| 325 |
<label>Glamour customer group</label>
|
| 326 |
-
<comment>Set specific customer group for imported customer from Glamour Leave empty to use default.</comment>
|
| 327 |
<frontend_type>select</frontend_type>
|
| 328 |
<sort_order>60</sort_order>
|
| 329 |
<show_in_default>1</show_in_default>
|
|
@@ -333,7 +332,7 @@
|
|
| 333 |
</glamour_group>
|
| 334 |
<gstk_group>
|
| 335 |
<label>Gstk customer group</label>
|
| 336 |
-
<comment>Set specific customer group for imported customer from Gstk Leave empty to use default.</comment>
|
| 337 |
<frontend_type>select</frontend_type>
|
| 338 |
<sort_order>60</sort_order>
|
| 339 |
<show_in_default>1</show_in_default>
|
|
@@ -343,7 +342,7 @@
|
|
| 343 |
</gstk_group>
|
| 344 |
<mistergooddeal_group>
|
| 345 |
<label>MisterGoodDeal customer group</label>
|
| 346 |
-
<comment>Set specific customer group for imported customer from MisterGoodDeal Leave empty to use default.</comment>
|
| 347 |
<frontend_type>select</frontend_type>
|
| 348 |
<sort_order>70</sort_order>
|
| 349 |
<show_in_default>1</show_in_default>
|
|
@@ -353,7 +352,7 @@
|
|
| 353 |
</mistergooddeal_group>
|
| 354 |
<placedumariage_group>
|
| 355 |
<label>PlaceDuMariage customer group</label>
|
| 356 |
-
<comment>Set specific customer group for imported customer from PlaceDuMariage Leave empty to use default.</comment>
|
| 357 |
<frontend_type>select</frontend_type>
|
| 358 |
<sort_order>70</sort_order>
|
| 359 |
<show_in_default>1</show_in_default>
|
|
@@ -363,7 +362,7 @@
|
|
| 363 |
</placedumariage_group>
|
| 364 |
<tap_group>
|
| 365 |
<label>Tap customer group</label>
|
| 366 |
-
<comment>Set specific customer group for imported customer from Tap Leave empty to use default.</comment>
|
| 367 |
<frontend_type>select</frontend_type>
|
| 368 |
<sort_order>70</sort_order>
|
| 369 |
<show_in_default>1</show_in_default>
|
|
@@ -373,7 +372,7 @@
|
|
| 373 |
</tap_group>
|
| 374 |
<spartoo_group>
|
| 375 |
<label>Spartoo customer group</label>
|
| 376 |
-
<comment>Set specific customer group for imported customer from Spartoo Leave empty to use default.</comment>
|
| 377 |
<frontend_type>select</frontend_type>
|
| 378 |
<sort_order>70</sort_order>
|
| 379 |
<show_in_default>1</show_in_default>
|
|
@@ -383,7 +382,7 @@
|
|
| 383 |
</spartoo_group>
|
| 384 |
<jardinermalin_group>
|
| 385 |
<label>Jardinermalin customer group</label>
|
| 386 |
-
<comment>Set specific customer group for imported customer from Jardinermalin Leave empty to use default.</comment>
|
| 387 |
<frontend_type>select</frontend_type>
|
| 388 |
<sort_order>70</sort_order>
|
| 389 |
<show_in_default>1</show_in_default>
|
|
@@ -393,7 +392,7 @@
|
|
| 393 |
</jardinermalin_group>
|
| 394 |
<monechelle_group>
|
| 395 |
<label>Monechelle customer group</label>
|
| 396 |
-
<comment>Set specific customer group for imported customer from Monechelle Leave empty to use default.</comment>
|
| 397 |
<frontend_type>select</frontend_type>
|
| 398 |
<sort_order>70</sort_order>
|
| 399 |
<show_in_default>1</show_in_default>
|
|
@@ -401,6 +400,66 @@
|
|
| 401 |
<show_in_store>0</show_in_store>
|
| 402 |
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
| 403 |
</monechelle_group>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 404 |
</fields>
|
| 405 |
</import_customer>
|
| 406 |
<shipping_method translate="label" module="profileolabs_shoppingflux">
|
|
@@ -650,16 +709,67 @@
|
|
| 650 |
<show_in_store>0</show_in_store>
|
| 651 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
| 652 |
</jardinermalin_method>
|
| 653 |
-
<
|
| 654 |
-
<label>
|
| 655 |
-
<comment>Set specific shipping method for imported order from
|
| 656 |
<frontend_type>select</frontend_type>
|
| 657 |
<sort_order>60</sort_order>
|
| 658 |
<show_in_default>1</show_in_default>
|
| 659 |
<show_in_website>0</show_in_website>
|
| 660 |
<show_in_store>0</show_in_store>
|
| 661 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
| 662 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 663 |
</fields>
|
| 664 |
</shipping_method>
|
| 665 |
<advanced_shipping_method translate="label" module="profileolabs_shoppingflux">
|
| 151 |
<show_in_website>0</show_in_website>
|
| 152 |
<show_in_store>0</show_in_store>
|
| 153 |
</limit_address_length>
|
| 154 |
+
<prefer_mobile_phone>
|
| 155 |
+
<label>Préférer le numéro de mobile au fixe, si disponible</label>
|
| 156 |
+
<frontend_type>select</frontend_type>
|
| 157 |
+
<sort_order>7</sort_order>
|
| 158 |
+
<show_in_default>1</show_in_default>
|
| 159 |
+
<show_in_website>0</show_in_website>
|
| 160 |
+
<show_in_store>0</show_in_store>
|
| 161 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
| 162 |
+
</prefer_mobile_phone>
|
| 163 |
<default_group>
|
| 164 |
<label>Default customer group</label>
|
| 165 |
<comment>Set specific customer group for imported customer from Shopping Flux</comment>
|
| 242 |
</rueducommerce_group>
|
| 243 |
<brandalley_group>
|
| 244 |
<label>Brandalley customer group</label>
|
| 245 |
+
<comment>Set specific customer group for imported customer from Brandalley. Leave empty to use default.</comment>
|
| 246 |
<frontend_type>select</frontend_type>
|
| 247 |
<sort_order>60</sort_order>
|
| 248 |
<show_in_default>1</show_in_default>
|
| 252 |
</brandalley_group>
|
| 253 |
<toutaporter_group>
|
| 254 |
<label>ToutAPorter customer group</label>
|
| 255 |
+
<comment>Set specific customer group for imported customer from ToutAPorter. Leave empty to use default.</comment>
|
| 256 |
<frontend_type>select</frontend_type>
|
| 257 |
<sort_order>60</sort_order>
|
| 258 |
<show_in_default>1</show_in_default>
|
| 262 |
</toutaporter_group>
|
| 263 |
<greenrepublic_group>
|
| 264 |
<label>GreenRepublic customer group</label>
|
| 265 |
+
<comment>Set specific customer group for imported customer from GreenRepublic. Leave empty to use default.</comment>
|
| 266 |
<frontend_type>select</frontend_type>
|
| 267 |
<sort_order>60</sort_order>
|
| 268 |
<show_in_default>1</show_in_default>
|
| 272 |
</greenrepublic_group>
|
| 273 |
<laredoute_group>
|
| 274 |
<label>Laredoute customer group</label>
|
| 275 |
+
<comment>Set specific customer group for imported customer from Laredoute. Leave empty to use default.</comment>
|
| 276 |
<frontend_type>select</frontend_type>
|
| 277 |
<sort_order>60</sort_order>
|
| 278 |
<show_in_default>1</show_in_default>
|
| 282 |
</laredoute_group>
|
| 283 |
<babyssima_group>
|
| 284 |
<label>Babyssima customer group</label>
|
| 285 |
+
<comment>Set specific customer group for imported customer from Babyssima. Leave empty to use default.</comment>
|
| 286 |
<frontend_type>select</frontend_type>
|
| 287 |
<sort_order>60</sort_order>
|
| 288 |
<show_in_default>1</show_in_default>
|
| 290 |
<show_in_store>0</show_in_store>
|
| 291 |
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
| 292 |
</babyssima_group>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 293 |
<ecitizen_group>
|
| 294 |
<label>Ecitizen customer group</label>
|
| 295 |
+
<comment>Set specific customer group for imported customer from Ecitizen. Leave empty to use default.</comment>
|
| 296 |
<frontend_type>select</frontend_type>
|
| 297 |
<sort_order>60</sort_order>
|
| 298 |
<show_in_default>1</show_in_default>
|
| 302 |
</ecitizen_group>
|
| 303 |
<decofinder_group>
|
| 304 |
<label>Decofinder customer group</label>
|
| 305 |
+
<comment>Set specific customer group for imported customer from Decofinder. Leave empty to use default.</comment>
|
| 306 |
<frontend_type>select</frontend_type>
|
| 307 |
<sort_order>60</sort_order>
|
| 308 |
<show_in_default>1</show_in_default>
|
| 312 |
</decofinder_group>
|
| 313 |
<docteurdiscount_group>
|
| 314 |
<label>Docteurdiscount customer group</label>
|
| 315 |
+
<comment>Set specific customer group for imported customer from Docteurdiscount. Leave empty to use default.</comment>
|
| 316 |
<frontend_type>select</frontend_type>
|
| 317 |
<sort_order>60</sort_order>
|
| 318 |
<show_in_default>1</show_in_default>
|
| 322 |
</docteurdiscount_group>
|
| 323 |
<glamour_group>
|
| 324 |
<label>Glamour customer group</label>
|
| 325 |
+
<comment>Set specific customer group for imported customer from Glamour. Leave empty to use default.</comment>
|
| 326 |
<frontend_type>select</frontend_type>
|
| 327 |
<sort_order>60</sort_order>
|
| 328 |
<show_in_default>1</show_in_default>
|
| 332 |
</glamour_group>
|
| 333 |
<gstk_group>
|
| 334 |
<label>Gstk customer group</label>
|
| 335 |
+
<comment>Set specific customer group for imported customer from Gstk. Leave empty to use default.</comment>
|
| 336 |
<frontend_type>select</frontend_type>
|
| 337 |
<sort_order>60</sort_order>
|
| 338 |
<show_in_default>1</show_in_default>
|
| 342 |
</gstk_group>
|
| 343 |
<mistergooddeal_group>
|
| 344 |
<label>MisterGoodDeal customer group</label>
|
| 345 |
+
<comment>Set specific customer group for imported customer from MisterGoodDeal. Leave empty to use default.</comment>
|
| 346 |
<frontend_type>select</frontend_type>
|
| 347 |
<sort_order>70</sort_order>
|
| 348 |
<show_in_default>1</show_in_default>
|
| 352 |
</mistergooddeal_group>
|
| 353 |
<placedumariage_group>
|
| 354 |
<label>PlaceDuMariage customer group</label>
|
| 355 |
+
<comment>Set specific customer group for imported customer from PlaceDuMariage. Leave empty to use default.</comment>
|
| 356 |
<frontend_type>select</frontend_type>
|
| 357 |
<sort_order>70</sort_order>
|
| 358 |
<show_in_default>1</show_in_default>
|
| 362 |
</placedumariage_group>
|
| 363 |
<tap_group>
|
| 364 |
<label>Tap customer group</label>
|
| 365 |
+
<comment>Set specific customer group for imported customer from Tap. Leave empty to use default.</comment>
|
| 366 |
<frontend_type>select</frontend_type>
|
| 367 |
<sort_order>70</sort_order>
|
| 368 |
<show_in_default>1</show_in_default>
|
| 372 |
</tap_group>
|
| 373 |
<spartoo_group>
|
| 374 |
<label>Spartoo customer group</label>
|
| 375 |
+
<comment>Set specific customer group for imported customer from Spartoo. Leave empty to use default.</comment>
|
| 376 |
<frontend_type>select</frontend_type>
|
| 377 |
<sort_order>70</sort_order>
|
| 378 |
<show_in_default>1</show_in_default>
|
| 382 |
</spartoo_group>
|
| 383 |
<jardinermalin_group>
|
| 384 |
<label>Jardinermalin customer group</label>
|
| 385 |
+
<comment>Set specific customer group for imported customer from Jardinermalin. Leave empty to use default.</comment>
|
| 386 |
<frontend_type>select</frontend_type>
|
| 387 |
<sort_order>70</sort_order>
|
| 388 |
<show_in_default>1</show_in_default>
|
| 392 |
</jardinermalin_group>
|
| 393 |
<monechelle_group>
|
| 394 |
<label>Monechelle customer group</label>
|
| 395 |
+
<comment>Set specific customer group for imported customer from Monechelle. Leave empty to use default.</comment>
|
| 396 |
<frontend_type>select</frontend_type>
|
| 397 |
<sort_order>70</sort_order>
|
| 398 |
<show_in_default>1</show_in_default>
|
| 400 |
<show_in_store>0</show_in_store>
|
| 401 |
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
| 402 |
</monechelle_group>
|
| 403 |
+
<localismarket_group>
|
| 404 |
+
<label>Localismarket customer group</label>
|
| 405 |
+
<comment>Set specific customer group for imported customer from Localismarket. Leave empty to use default.</comment>
|
| 406 |
+
<frontend_type>select</frontend_type>
|
| 407 |
+
<sort_order>70</sort_order>
|
| 408 |
+
<show_in_default>1</show_in_default>
|
| 409 |
+
<show_in_website>0</show_in_website>
|
| 410 |
+
<show_in_store>0</show_in_store>
|
| 411 |
+
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
| 412 |
+
</localismarket_group>
|
| 413 |
+
<galerieslafayette_group>
|
| 414 |
+
<label>GaleriesLafayette customer group</label>
|
| 415 |
+
<comment>Set specific customer group for imported customer from GaleriesLafayette. Leave empty to use default.</comment>
|
| 416 |
+
<frontend_type>select</frontend_type>
|
| 417 |
+
<sort_order>70</sort_order>
|
| 418 |
+
<show_in_default>1</show_in_default>
|
| 419 |
+
<show_in_website>0</show_in_website>
|
| 420 |
+
<show_in_store>0</show_in_store>
|
| 421 |
+
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
| 422 |
+
</galerieslafayette_group>
|
| 423 |
+
<monchouchou_group>
|
| 424 |
+
<label>Monchouchou customer group</label>
|
| 425 |
+
<comment>Set specific customer group for imported customer from Monchouchou. Leave empty to use default.</comment>
|
| 426 |
+
<frontend_type>select</frontend_type>
|
| 427 |
+
<sort_order>70</sort_order>
|
| 428 |
+
<show_in_default>1</show_in_default>
|
| 429 |
+
<show_in_website>0</show_in_website>
|
| 430 |
+
<show_in_store>0</show_in_store>
|
| 431 |
+
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
| 432 |
+
</monchouchou_group>
|
| 433 |
+
<elevenmain_group>
|
| 434 |
+
<label>Elevenmain customer group</label>
|
| 435 |
+
<comment>Set specific customer group for imported customer from Elevenmain. Leave empty to use default.</comment>
|
| 436 |
+
<frontend_type>select</frontend_type>
|
| 437 |
+
<sort_order>70</sort_order>
|
| 438 |
+
<show_in_default>1</show_in_default>
|
| 439 |
+
<show_in_website>0</show_in_website>
|
| 440 |
+
<show_in_store>0</show_in_store>
|
| 441 |
+
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
| 442 |
+
</elevenmain_group>
|
| 443 |
+
<sears_group>
|
| 444 |
+
<label>Sears customer group</label>
|
| 445 |
+
<comment>Set specific customer group for imported customer from Sears. Leave empty to use default.</comment>
|
| 446 |
+
<frontend_type>select</frontend_type>
|
| 447 |
+
<sort_order>70</sort_order>
|
| 448 |
+
<show_in_default>1</show_in_default>
|
| 449 |
+
<show_in_website>0</show_in_website>
|
| 450 |
+
<show_in_store>0</show_in_store>
|
| 451 |
+
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
| 452 |
+
</sears_group>
|
| 453 |
+
<wizacha_group>
|
| 454 |
+
<label>Wizacha customer group</label>
|
| 455 |
+
<comment>Set specific customer group for imported customer from Wizacha. Leave empty to use default.</comment>
|
| 456 |
+
<frontend_type>select</frontend_type>
|
| 457 |
+
<sort_order>70</sort_order>
|
| 458 |
+
<show_in_default>1</show_in_default>
|
| 459 |
+
<show_in_website>0</show_in_website>
|
| 460 |
+
<show_in_store>0</show_in_store>
|
| 461 |
+
<source_model>adminhtml/system_config_source_customer_group</source_model>
|
| 462 |
+
</wizacha_group>
|
| 463 |
</fields>
|
| 464 |
</import_customer>
|
| 465 |
<shipping_method translate="label" module="profileolabs_shoppingflux">
|
| 709 |
<show_in_store>0</show_in_store>
|
| 710 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
| 711 |
</jardinermalin_method>
|
| 712 |
+
<localismarket_method>
|
| 713 |
+
<label>Localismarket shipping method</label>
|
| 714 |
+
<comment>Set specific shipping method for imported order from Localismarket. Leave empty to use default.</comment>
|
| 715 |
<frontend_type>select</frontend_type>
|
| 716 |
<sort_order>60</sort_order>
|
| 717 |
<show_in_default>1</show_in_default>
|
| 718 |
<show_in_website>0</show_in_website>
|
| 719 |
<show_in_store>0</show_in_store>
|
| 720 |
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
| 721 |
+
</localismarket_method>
|
| 722 |
+
<galerieslafayette_method>
|
| 723 |
+
<label>GaleriesLafayette shipping method</label>
|
| 724 |
+
<comment>Set specific shipping method for imported order from GaleriesLafayette. Leave empty to use default.</comment>
|
| 725 |
+
<frontend_type>select</frontend_type>
|
| 726 |
+
<sort_order>60</sort_order>
|
| 727 |
+
<show_in_default>1</show_in_default>
|
| 728 |
+
<show_in_website>0</show_in_website>
|
| 729 |
+
<show_in_store>0</show_in_store>
|
| 730 |
+
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
| 731 |
+
</galerieslafayette_method>
|
| 732 |
+
<monchouchou_method>
|
| 733 |
+
<label>Monchouchou shipping method</label>
|
| 734 |
+
<comment>Set specific shipping method for imported order from Monchouchou. Leave empty to use default.</comment>
|
| 735 |
+
<frontend_type>select</frontend_type>
|
| 736 |
+
<sort_order>60</sort_order>
|
| 737 |
+
<show_in_default>1</show_in_default>
|
| 738 |
+
<show_in_website>0</show_in_website>
|
| 739 |
+
<show_in_store>0</show_in_store>
|
| 740 |
+
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
| 741 |
+
</monchouchou_method>
|
| 742 |
+
<elevenmain_method>
|
| 743 |
+
<label>Elevenmain shipping method</label>
|
| 744 |
+
<comment>Set specific shipping method for imported order from Elevenmain. Leave empty to use default.</comment>
|
| 745 |
+
<frontend_type>select</frontend_type>
|
| 746 |
+
<sort_order>60</sort_order>
|
| 747 |
+
<show_in_default>1</show_in_default>
|
| 748 |
+
<show_in_website>0</show_in_website>
|
| 749 |
+
<show_in_store>0</show_in_store>
|
| 750 |
+
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
| 751 |
+
</elevenmain_method>
|
| 752 |
+
<sears_method>
|
| 753 |
+
<label>Sears shipping method</label>
|
| 754 |
+
<comment>Set specific shipping method for imported order from Sears. Leave empty to use default.</comment>
|
| 755 |
+
<frontend_type>select</frontend_type>
|
| 756 |
+
<sort_order>60</sort_order>
|
| 757 |
+
<show_in_default>1</show_in_default>
|
| 758 |
+
<show_in_website>0</show_in_website>
|
| 759 |
+
<show_in_store>0</show_in_store>
|
| 760 |
+
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
| 761 |
+
</sears_method>
|
| 762 |
+
<wizacha_method>
|
| 763 |
+
<label>Wizacha shipping method</label>
|
| 764 |
+
<comment>Set specific shipping method for imported order from Wizacha. Leave empty to use default.</comment>
|
| 765 |
+
<frontend_type>select</frontend_type>
|
| 766 |
+
<sort_order>60</sort_order>
|
| 767 |
+
<show_in_default>1</show_in_default>
|
| 768 |
+
<show_in_website>0</show_in_website>
|
| 769 |
+
<show_in_store>0</show_in_store>
|
| 770 |
+
<source_model>adminhtml/system_config_source_shipping_allmethods</source_model>
|
| 771 |
+
</wizacha_method>
|
| 772 |
+
|
| 773 |
</fields>
|
| 774 |
</shipping_method>
|
| 775 |
<advanced_shipping_method translate="label" module="profileolabs_shoppingflux">
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Profileolabs_Shoppingflux</name>
|
| 4 |
-
<version>0.7.
|
| 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 & improvements
|
| 12 |
</notes>
|
| 13 |
<authors><author><name>ShoppingFlux</name><user>ShoppingFlux</user><email>olivier.levy@gmail.com</email></author></authors>
|
| 14 |
-
<date>2014-
|
| 15 |
-
<time>
|
| 16 |
-
<contents><target name="magecommunity"><dir name="Profileolabs"><dir name="Shoppingflux"><dir name="Block"><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="7b1c1f77624493bd1017cd3cd71e4bba"/></dir></dir></dir><file name="Feed.php" hash="02274fcb2c95199c826d8e22be5bb16a"/><file name="Process.php" hash="2e5099bf9054280f351ea170ffeb419f"/><dir name="Product"><file name="Grid.php" hash="3e81bd09615ef766df233fd803afa3e1"/></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="aed0df354559ecb9d36d3ddf854c301a"/><file name="Flux.php" hash="c592023b56306258439287d28edf6c85"/><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="cdfc7764892dfb6df90f2d56337b448a"/></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="e4cca2caf90ef55f13c3d55aff5c72bb"/></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="e24753fee3f9da7913a72b7bd0d5be9b"/></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="
|
| 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.7.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 |
<notes>- Minor bugfixes & improvements
|
| 12 |
</notes>
|
| 13 |
<authors><author><name>ShoppingFlux</name><user>ShoppingFlux</user><email>olivier.levy@gmail.com</email></author></authors>
|
| 14 |
+
<date>2014-07-01</date>
|
| 15 |
+
<time>14:15:56</time>
|
| 16 |
+
<contents><target name="magecommunity"><dir name="Profileolabs"><dir name="Shoppingflux"><dir name="Block"><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="7b1c1f77624493bd1017cd3cd71e4bba"/></dir></dir></dir><file name="Feed.php" hash="02274fcb2c95199c826d8e22be5bb16a"/><file name="Process.php" hash="2e5099bf9054280f351ea170ffeb419f"/><dir name="Product"><file name="Grid.php" hash="3e81bd09615ef766df233fd803afa3e1"/></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="aed0df354559ecb9d36d3ddf854c301a"/><file name="Flux.php" hash="c592023b56306258439287d28edf6c85"/><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="cdfc7764892dfb6df90f2d56337b448a"/></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="e4cca2caf90ef55f13c3d55aff5c72bb"/></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="e24753fee3f9da7913a72b7bd0d5be9b"/></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="13ccabd19d75028862d951a73dc405d0"/><dir name="Export"><dir name="Convert"><dir name="Parser"><file name="Product.php" hash="4e50613b82ba84c35eb87f991645c118"/></dir></dir><file name="Flow.php" hash="46659d199b712b0cd837bc10a05d53f0"/><file name="Flux.php" hash="a777b0936b3651dae40a2444ddd9f074"/><file name="Observer.php" hash="f2a957fd78ae41825fafae4cb1264f35"/><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="bf113c8f1c7abc94cdabe467a7a1bdd7"/><file name="Attributesprice.php" hash="6cddf3b9562c8dbc56e670b377e341c1"/><dir name="Category"><file name="Level.php" hash="477d3dccefe5720eedc6b5d7a7110c9a"/></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="8da7acf7a455e27e4bb94396f4c85e1b"/></dir><dir name="Export"><file name="Shipments.php" hash="20e617e183366ef5447ea653aa989065"/></dir><file name="Log.php" hash="3ce67bed38c452615ba8cfd51f48cbf3"/><file name="Observer.php" hash="e96d2700c6fd186171b5ba2c854c69be"/><file name="Order.php" hash="2fad4679b73f6228aef411e051dd0ba6"/><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><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="3bbadfa583da0cb1ad46b4d0bebcdcc1"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Apikey.php" hash="90036cf58c627fcc68920af912171a0c"/><file name="Refresh.php" hash="d53cbdc6ae73c146af67ef5f20d9e4e8"/></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="GeneralController.php" hash="554d7ddd341b073dd566b3ba21f0bd19"/></dir><dir name="Export"><dir name="Adminhtml"><file name="CategoryController.php" hash="d882797e1e0fbff25b312768c6569f04"/><file name="ExportController.php" hash="b496415fe06e284c62692813d8000250"/></dir><file name="FluxController.php" hash="dd529a8f698136fe1612dd53becdf016"/></dir><dir name="Manageorders"><dir name="Adminhtml"><file name="CronController.php" hash="9c43b1b18fb883b4140aaa1d3f82cb1c"/><file name="ImportController.php" hash="22d7190ab3d8374498d922616ba5795a"/><file name="LogController.php" hash="f941a1d2512c2461d614a94682afc8c3"/><file name="OrderController.php" hash="7e64c4b34250a1f949be5414bda7ae86"/></dir></dir></dir><dir name="doc"><file name="doc_module_1.4.pdf" hash="5590a49838bd67f70f0cacf9605cea2b"/></dir><dir name="etc"><file name="adminhtml.xml" hash="c7488b04c573bd896c74198b52211d1f"/><file name="config.xml" hash="976275eb510eddae946c56b1fd11b528"/><file name="system.xml" hash="832c40fa6e73254f910be020b0e26f18"/></dir><dir name="sql"><dir name="profileolabs_shoppingflux_setup"><file name="mysql4-install-0.1.0.php" hash="87c47ba97a55bd71dada152b52736be2"/><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"/></dir></dir></dir><file name=".DS_Store" hash="194577a7e20bdcc7afbb718f502c134c"/></dir></target><target name="mageetc"><dir name="modules"><file name="Profileolabs_Shoppingflux.xml" hash="73ec83cf32c72884815a3cac9f754a54"/></dir></target><target name="magelocale"><dir><dir name="fr_FR"><file name="Profileolabs_Shoppingflux.csv" hash="976e5917ba859e727c4468e2a06478ab"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="7787fbcc03edc0b4b68d51e211e82049"/></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="729868cce29296bbbc86207830e4061d"/><file name="feed.phtml" hash="e17cd27faf955480224f4b32bc75a6f5"/><file name="process.phtml" hash="1dee42b2f14c0862446e5b475aaccad3"/><file name="product.phtml" hash="cca57adec209091d1d80cebbbe0c1172"/></dir><dir name="manageorders"><file name="import.phtml" hash="397a0f85d61db23006e6cff181ddac5b"/><dir name="payment"><dir name="info"><file name="purchaseorder.phtml" hash="782768b0e4836b25f46443dda098db29"/></dir></dir><dir name="sales"><dir name="order"><file name="total.phtml" hash="ded51585527ad918412dd5f0d0a9b2a7"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="672feff0a0895f920d4037ff131bf5ac"/></dir></dir></dir><dir name="default"><dir name="default"><dir name="layout"><file name="profileolabs_shoppingflux.xml" hash="672feff0a0895f920d4037ff131bf5ac"/></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>
|
