├── .gitignore ├── README.md ├── composer.json ├── modman └── src ├── app ├── code │ └── community │ │ └── Ess │ │ └── M2ePro │ │ ├── Block │ │ └── Adminhtml │ │ │ ├── Account │ │ │ ├── Grid.php │ │ │ └── Switcher.php │ │ │ ├── Category │ │ │ └── Grid.php │ │ │ ├── Common │ │ │ ├── Account.php │ │ │ ├── Account │ │ │ │ ├── Grid.php │ │ │ │ └── Help.php │ │ │ ├── Amazon │ │ │ │ ├── Account │ │ │ │ │ ├── Edit.php │ │ │ │ │ └── Edit │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ ├── Tabs.php │ │ │ │ │ │ └── Tabs │ │ │ │ │ │ ├── General.php │ │ │ │ │ │ ├── ListingOther.php │ │ │ │ │ │ ├── Order.php │ │ │ │ │ │ └── Repricing.php │ │ │ │ ├── Grid │ │ │ │ │ └── Column │ │ │ │ │ │ └── Filter │ │ │ │ │ │ ├── Price.php │ │ │ │ │ │ └── Qty.php │ │ │ │ ├── Listing.php │ │ │ │ ├── Listing │ │ │ │ │ ├── Add │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ ├── NewAsin.php │ │ │ │ │ │ ├── NewAsin │ │ │ │ │ │ │ ├── Category.php │ │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ │ └── Grid.php │ │ │ │ │ │ │ ├── Manual.php │ │ │ │ │ │ │ └── Manual │ │ │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ │ │ └── SkipPopup.php │ │ │ │ │ │ ├── Review.php │ │ │ │ │ │ ├── SearchAsin.php │ │ │ │ │ │ ├── SearchAsin │ │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ │ ├── Help.php │ │ │ │ │ │ │ ├── NewAsinPopup.php │ │ │ │ │ │ │ ├── NotCompleted.php │ │ │ │ │ │ │ └── SearchSettings.php │ │ │ │ │ │ └── Tabs │ │ │ │ │ │ │ ├── General.php │ │ │ │ │ │ │ ├── Search.php │ │ │ │ │ │ │ └── Selling.php │ │ │ │ │ ├── AutoAction │ │ │ │ │ │ ├── Mode.php │ │ │ │ │ │ └── Mode │ │ │ │ │ │ │ ├── Category.php │ │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ │ └── Group │ │ │ │ │ │ │ │ └── Grid.php │ │ │ │ │ │ │ ├── Global.php │ │ │ │ │ │ │ └── Website.php │ │ │ │ │ ├── Edit.php │ │ │ │ │ ├── Edit │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ └── Tabs.php │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── Other │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ ├── View.php │ │ │ │ │ │ └── View │ │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Product.php │ │ │ │ │ ├── Product │ │ │ │ │ │ └── Help.php │ │ │ │ │ ├── ProductSearch │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ ├── Main.php │ │ │ │ │ │ ├── Menu.php │ │ │ │ │ │ └── SuggestedAsinGridHelp.php │ │ │ │ │ ├── Search.php │ │ │ │ │ ├── Search │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Template │ │ │ │ │ │ ├── Description │ │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ │ └── Main.php │ │ │ │ │ │ ├── ShippingOverride.php │ │ │ │ │ │ └── ShippingOverride │ │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Variation │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ ├── Manage │ │ │ │ │ │ │ ├── Tabs.php │ │ │ │ │ │ │ └── Tabs │ │ │ │ │ │ │ │ ├── Settings.php │ │ │ │ │ │ │ │ ├── Variations.php │ │ │ │ │ │ │ │ ├── Variations │ │ │ │ │ │ │ │ ├── Child │ │ │ │ │ │ │ │ │ └── Form.php │ │ │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ │ │ └── Help.php │ │ │ │ │ │ │ │ └── Vocabulary.php │ │ │ │ │ │ │ ├── SwitchToIndividualPopup.php │ │ │ │ │ │ │ ├── SwitchToParentPopup.php │ │ │ │ │ │ │ ├── VocabularyAttributesPopup.php │ │ │ │ │ │ │ └── VocabularyOptionsPopup.php │ │ │ │ │ ├── View.php │ │ │ │ │ └── View │ │ │ │ │ │ ├── Amazon │ │ │ │ │ │ └── Grid.php │ │ │ │ │ │ ├── Help.php │ │ │ │ │ │ ├── ListingSwitcher.php │ │ │ │ │ │ ├── Magento │ │ │ │ │ │ └── Grid.php │ │ │ │ │ │ ├── ModeSwitcher.php │ │ │ │ │ │ ├── Sellercentral │ │ │ │ │ │ └── Grid.php │ │ │ │ │ │ └── Settings │ │ │ │ │ │ └── Grid.php │ │ │ │ ├── Marketplace │ │ │ │ │ └── Form.php │ │ │ │ ├── Order │ │ │ │ │ ├── Edit │ │ │ │ │ │ ├── ShippingAddress.php │ │ │ │ │ │ └── ShippingAddress │ │ │ │ │ │ │ └── Form.php │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── MerchantFulfillment.php │ │ │ │ │ ├── MerchantFulfillment │ │ │ │ │ │ ├── Breadcrumb.php │ │ │ │ │ │ ├── Configuration.php │ │ │ │ │ │ ├── Information.php │ │ │ │ │ │ ├── Magento │ │ │ │ │ │ │ └── Shipment.php │ │ │ │ │ │ ├── Message.php │ │ │ │ │ │ └── ShippingServices.php │ │ │ │ │ ├── View.php │ │ │ │ │ └── View │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ └── Item.php │ │ │ │ ├── Synchronization │ │ │ │ │ └── Form.php │ │ │ │ ├── Template.php │ │ │ │ └── Template │ │ │ │ │ ├── Description │ │ │ │ │ ├── Category │ │ │ │ │ │ ├── Chooser │ │ │ │ │ │ │ ├── Edit.php │ │ │ │ │ │ │ ├── Tabs.php │ │ │ │ │ │ │ └── Tabs │ │ │ │ │ │ │ │ ├── Browse.php │ │ │ │ │ │ │ │ ├── Recent.php │ │ │ │ │ │ │ │ └── Search.php │ │ │ │ │ │ └── Specific │ │ │ │ │ │ │ ├── Add.php │ │ │ │ │ │ │ └── Add │ │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Edit.php │ │ │ │ │ ├── Edit │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ ├── Tabs.php │ │ │ │ │ │ └── Tabs │ │ │ │ │ │ │ ├── Definition.php │ │ │ │ │ │ │ ├── General.php │ │ │ │ │ │ │ └── Specifics.php │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── SellingFormat │ │ │ │ │ ├── Edit.php │ │ │ │ │ └── Edit │ │ │ │ │ │ └── Form.php │ │ │ │ │ ├── ShippingOverride │ │ │ │ │ ├── Edit.php │ │ │ │ │ └── Edit │ │ │ │ │ │ └── Form.php │ │ │ │ │ └── Synchronization │ │ │ │ │ ├── Edit.php │ │ │ │ │ └── Edit │ │ │ │ │ ├── Form.php │ │ │ │ │ ├── Tabs.php │ │ │ │ │ └── Tabs │ │ │ │ │ ├── List.php │ │ │ │ │ ├── Relist.php │ │ │ │ │ ├── Revise.php │ │ │ │ │ └── Stop.php │ │ │ ├── Buy │ │ │ │ ├── Account │ │ │ │ │ ├── Edit.php │ │ │ │ │ └── Edit │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ ├── Tabs.php │ │ │ │ │ │ └── Tabs │ │ │ │ │ │ ├── General.php │ │ │ │ │ │ ├── ListingOther.php │ │ │ │ │ │ └── Order.php │ │ │ │ ├── Listing.php │ │ │ │ ├── Listing │ │ │ │ │ ├── Add │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ └── Tabs │ │ │ │ │ │ │ ├── General.php │ │ │ │ │ │ │ ├── Search.php │ │ │ │ │ │ │ └── Selling.php │ │ │ │ │ ├── AutoAction │ │ │ │ │ │ ├── Mode.php │ │ │ │ │ │ └── Mode │ │ │ │ │ │ │ ├── Category.php │ │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ │ └── Group │ │ │ │ │ │ │ │ └── Grid.php │ │ │ │ │ │ │ ├── Global.php │ │ │ │ │ │ │ └── Website.php │ │ │ │ │ ├── Edit.php │ │ │ │ │ ├── Edit │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ └── Tabs.php │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── Other │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ ├── View.php │ │ │ │ │ │ └── View │ │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Product.php │ │ │ │ │ ├── Product │ │ │ │ │ │ └── Help.php │ │ │ │ │ ├── ProductSearch │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ ├── Main.php │ │ │ │ │ │ └── Menu.php │ │ │ │ │ ├── Search.php │ │ │ │ │ ├── Search │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── View.php │ │ │ │ │ └── View │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ ├── Help.php │ │ │ │ │ │ └── ListingSwitcher.php │ │ │ │ ├── Order │ │ │ │ │ ├── Edit │ │ │ │ │ │ ├── ShippingAddress.php │ │ │ │ │ │ └── ShippingAddress │ │ │ │ │ │ │ └── Form.php │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── View.php │ │ │ │ │ └── View │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ └── Item.php │ │ │ │ ├── Synchronization │ │ │ │ │ └── Form.php │ │ │ │ ├── Template.php │ │ │ │ └── Template │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── NewProduct.php │ │ │ │ │ ├── NewProduct │ │ │ │ │ ├── Edit.php │ │ │ │ │ ├── Edit │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ ├── Tabs.php │ │ │ │ │ │ └── Tabs │ │ │ │ │ │ │ ├── Attributes.php │ │ │ │ │ │ │ ├── Description.php │ │ │ │ │ │ │ └── General.php │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── Help.php │ │ │ │ │ └── Search │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── SellingFormat │ │ │ │ │ ├── Edit.php │ │ │ │ │ └── Edit │ │ │ │ │ │ └── Form.php │ │ │ │ │ └── Synchronization │ │ │ │ │ ├── Edit.php │ │ │ │ │ └── Edit │ │ │ │ │ ├── Form.php │ │ │ │ │ ├── Tabs.php │ │ │ │ │ └── Tabs │ │ │ │ │ ├── List.php │ │ │ │ │ ├── Relist.php │ │ │ │ │ ├── Revise.php │ │ │ │ │ └── Stop.php │ │ │ ├── Component │ │ │ │ ├── Abstract.php │ │ │ │ ├── Grid │ │ │ │ │ └── Container.php │ │ │ │ ├── Tabs.php │ │ │ │ └── Tabs │ │ │ │ │ └── Container.php │ │ │ ├── Configuration.php │ │ │ ├── Configuration │ │ │ │ └── Tabs.php │ │ │ ├── Listing.php │ │ │ ├── Listing │ │ │ │ ├── Add │ │ │ │ │ ├── Form.php │ │ │ │ │ ├── Main.php │ │ │ │ │ ├── Review.php │ │ │ │ │ ├── SourceCategory.php │ │ │ │ │ ├── SourceMode.php │ │ │ │ │ ├── SourceMode │ │ │ │ │ │ └── Form.php │ │ │ │ │ ├── SourceProduct.php │ │ │ │ │ ├── StepOne.php │ │ │ │ │ ├── StepThree.php │ │ │ │ │ ├── StepTwo.php │ │ │ │ │ └── Tabs │ │ │ │ │ │ ├── General.php │ │ │ │ │ │ ├── Search.php │ │ │ │ │ │ └── Selling.php │ │ │ │ ├── Breadcrumb.php │ │ │ │ ├── Category │ │ │ │ │ └── Tree.php │ │ │ │ ├── Help.php │ │ │ │ ├── Log.php │ │ │ │ ├── Log │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── Help.php │ │ │ │ ├── Other.php │ │ │ │ ├── Other │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── Help.php │ │ │ │ │ ├── Log.php │ │ │ │ │ └── Log │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ └── Help.php │ │ │ │ ├── Product │ │ │ │ │ ├── Category │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ └── Summary │ │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ │ └── Help.php │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── Variation.php │ │ │ │ │ └── Variation │ │ │ │ │ │ ├── Edit.php │ │ │ │ │ │ └── Manage.php │ │ │ │ ├── Search.php │ │ │ │ └── Search │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── Help.php │ │ │ │ │ └── Tabs.php │ │ │ ├── Log.php │ │ │ ├── Log │ │ │ │ └── Tabs.php │ │ │ ├── ManageListings.php │ │ │ ├── ManageListings │ │ │ │ └── Tabs.php │ │ │ ├── Marketplace.php │ │ │ ├── Marketplace │ │ │ │ ├── General │ │ │ │ │ └── Form.php │ │ │ │ ├── Help.php │ │ │ │ └── Tabs.php │ │ │ ├── Order.php │ │ │ ├── Order │ │ │ │ ├── Help.php │ │ │ │ ├── Log.php │ │ │ │ └── Log │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── Help.php │ │ │ ├── Rakuten │ │ │ │ └── Marketplace │ │ │ │ │ └── Form.php │ │ │ ├── Synchronization.php │ │ │ ├── Synchronization │ │ │ │ ├── Form.php │ │ │ │ ├── Help.php │ │ │ │ ├── Log.php │ │ │ │ ├── Log │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── Help.php │ │ │ │ └── Tabs.php │ │ │ ├── Template.php │ │ │ └── Template │ │ │ │ ├── Grid.php │ │ │ │ ├── Help.php │ │ │ │ ├── SellingFormat.php │ │ │ │ ├── SellingFormat │ │ │ │ ├── Grid.php │ │ │ │ └── Help.php │ │ │ │ ├── Synchronization.php │ │ │ │ ├── Synchronization │ │ │ │ ├── Grid.php │ │ │ │ └── Help.php │ │ │ │ └── Tabs.php │ │ │ ├── Component │ │ │ └── Switcher.php │ │ │ ├── Configuration │ │ │ ├── Abstract.php │ │ │ ├── Components │ │ │ │ └── Form.php │ │ │ ├── License │ │ │ │ └── Form.php │ │ │ ├── Linker.php │ │ │ ├── LogsClearing │ │ │ │ └── Form.php │ │ │ └── Settings │ │ │ │ └── Form.php │ │ │ ├── Development.php │ │ │ ├── Development │ │ │ ├── Form.php │ │ │ ├── Info │ │ │ │ ├── Actual.php │ │ │ │ ├── License │ │ │ │ │ ├── Component.php │ │ │ │ │ └── Information.php │ │ │ │ ├── Location.php │ │ │ │ ├── Magento.php │ │ │ │ ├── Module.php │ │ │ │ ├── Mysql │ │ │ │ │ ├── Info.php │ │ │ │ │ ├── Integration.php │ │ │ │ │ ├── Module.php │ │ │ │ │ └── Summary.php │ │ │ │ ├── Php.php │ │ │ │ └── System.php │ │ │ ├── Inspection │ │ │ │ ├── Abstract.php │ │ │ │ ├── Caches.php │ │ │ │ ├── ConflictedModules.php │ │ │ │ ├── Cron.php │ │ │ │ ├── CronScheduleTable.php │ │ │ │ ├── CronScheduleTable │ │ │ │ │ └── Grid.php │ │ │ │ ├── DatabaseBrokenTables.php │ │ │ │ ├── Installation.php │ │ │ │ ├── Magento.php │ │ │ │ ├── OtherIssues.php │ │ │ │ └── Requirements.php │ │ │ ├── Tabs.php │ │ │ └── Tabs │ │ │ │ ├── About.php │ │ │ │ ├── Command │ │ │ │ └── Group.php │ │ │ │ ├── Database.php │ │ │ │ ├── Database │ │ │ │ ├── Grid.php │ │ │ │ ├── Table.php │ │ │ │ └── Table │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── Grid │ │ │ │ │ └── Column │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ ├── Datetime.php │ │ │ │ │ │ └── Select.php │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ └── Datetime.php │ │ │ │ │ └── TableCellsPopup.php │ │ │ │ ├── Debug.php │ │ │ │ ├── Inspection.php │ │ │ │ ├── Module.php │ │ │ │ ├── Summary.php │ │ │ │ └── Tools.php │ │ │ ├── Ebay │ │ │ ├── Account.php │ │ │ ├── Account │ │ │ │ ├── Edit.php │ │ │ │ ├── Edit │ │ │ │ │ ├── Form.php │ │ │ │ │ ├── Tabs.php │ │ │ │ │ └── Tabs │ │ │ │ │ │ ├── Feedback.php │ │ │ │ │ │ ├── Feedback │ │ │ │ │ │ └── Grid.php │ │ │ │ │ │ ├── General.php │ │ │ │ │ │ ├── ListingOther.php │ │ │ │ │ │ ├── Order.php │ │ │ │ │ │ └── Store.php │ │ │ │ ├── Grid.php │ │ │ │ └── Help.php │ │ │ ├── Configuration.php │ │ │ ├── Configuration │ │ │ │ ├── Category.php │ │ │ │ ├── Category │ │ │ │ │ ├── Edit │ │ │ │ │ │ ├── Other.php │ │ │ │ │ │ ├── Other │ │ │ │ │ │ │ └── Form.php │ │ │ │ │ │ ├── Primary.php │ │ │ │ │ │ └── Primary │ │ │ │ │ │ │ ├── Help.php │ │ │ │ │ │ │ ├── Tabs.php │ │ │ │ │ │ │ └── Tabs │ │ │ │ │ │ │ ├── Chooser.php │ │ │ │ │ │ │ └── Specific.php │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── Help.php │ │ │ │ ├── General.php │ │ │ │ ├── General │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Help.php │ │ │ │ └── Tabs.php │ │ │ ├── Feedback.php │ │ │ ├── Feedback │ │ │ │ ├── Form.php │ │ │ │ ├── Grid.php │ │ │ │ └── Help.php │ │ │ ├── Listing.php │ │ │ ├── Listing │ │ │ │ ├── AccountMarketplace.php │ │ │ │ ├── AccountMarketplace │ │ │ │ │ └── Form.php │ │ │ │ ├── AutoAction │ │ │ │ │ ├── Mode.php │ │ │ │ │ └── Mode │ │ │ │ │ │ ├── Breadcrumb.php │ │ │ │ │ │ ├── Category.php │ │ │ │ │ │ ├── Category │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ └── Group │ │ │ │ │ │ │ └── Grid.php │ │ │ │ │ │ ├── Global.php │ │ │ │ │ │ └── Website.php │ │ │ │ ├── Bids │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── Help.php │ │ │ │ ├── Breadcrumb.php │ │ │ │ ├── Category │ │ │ │ │ ├── Breadcrumb.php │ │ │ │ │ ├── Category.php │ │ │ │ │ ├── Category │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Chooser.php │ │ │ │ │ ├── Chooser │ │ │ │ │ │ ├── Edit.php │ │ │ │ │ │ ├── Tabs.php │ │ │ │ │ │ ├── Tabs │ │ │ │ │ │ │ ├── Attribute.php │ │ │ │ │ │ │ ├── Browse.php │ │ │ │ │ │ │ ├── Recent.php │ │ │ │ │ │ │ └── Search.php │ │ │ │ │ │ └── Wrapper.php │ │ │ │ │ ├── Mode.php │ │ │ │ │ ├── Product.php │ │ │ │ │ ├── Product │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ └── WarningPopup.php │ │ │ │ │ ├── Same │ │ │ │ │ │ ├── Chooser.php │ │ │ │ │ │ └── Specific.php │ │ │ │ │ ├── Specific.php │ │ │ │ │ └── Specific │ │ │ │ │ │ └── Wrapper.php │ │ │ │ ├── Grid.php │ │ │ │ ├── Help.php │ │ │ │ ├── Log.php │ │ │ │ ├── Log │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── Help.php │ │ │ │ ├── Moving │ │ │ │ │ └── Grid.php │ │ │ │ ├── Other.php │ │ │ │ ├── Other │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── Help.php │ │ │ │ │ ├── Log.php │ │ │ │ │ ├── Log │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ └── Help.php │ │ │ │ │ ├── Synchronization │ │ │ │ │ │ ├── Edit.php │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ │ ├── Tabs.php │ │ │ │ │ │ │ └── Tabs │ │ │ │ │ │ │ ├── General.php │ │ │ │ │ │ │ ├── Relist.php │ │ │ │ │ │ │ ├── Revise.php │ │ │ │ │ │ │ └── Stop.php │ │ │ │ │ ├── View.php │ │ │ │ │ └── View │ │ │ │ │ │ └── Grid.php │ │ │ │ ├── Preview.php │ │ │ │ ├── Product.php │ │ │ │ ├── Product │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── Review.php │ │ │ │ │ ├── SourceCategories │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ ├── Summary │ │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ │ └── Help.php │ │ │ │ │ │ └── Tree.php │ │ │ │ │ ├── SourceProducts │ │ │ │ │ │ └── Grid.php │ │ │ │ │ └── Template │ │ │ │ │ │ └── Edit.php │ │ │ │ ├── Search.php │ │ │ │ ├── Search │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── Help.php │ │ │ │ ├── Settings.php │ │ │ │ ├── Settings │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── Grid │ │ │ │ │ │ └── Abstract.php │ │ │ │ │ └── Help.php │ │ │ │ ├── SourceMode.php │ │ │ │ ├── SourceMode │ │ │ │ │ └── Form.php │ │ │ │ ├── Template │ │ │ │ │ ├── Edit.php │ │ │ │ │ ├── Edit │ │ │ │ │ │ ├── Form.php │ │ │ │ │ │ ├── Tabs.php │ │ │ │ │ │ └── Tabs │ │ │ │ │ │ │ ├── General.php │ │ │ │ │ │ │ ├── Selling.php │ │ │ │ │ │ │ └── Synchronization.php │ │ │ │ │ ├── Switcher.php │ │ │ │ │ └── Switcher │ │ │ │ │ │ ├── DataLoader.php │ │ │ │ │ │ └── Initialization.php │ │ │ │ ├── Transferring │ │ │ │ │ ├── Breadcrumb.php │ │ │ │ │ ├── FailedProducts.php │ │ │ │ │ ├── General.php │ │ │ │ │ ├── Step │ │ │ │ │ │ ├── Categories.php │ │ │ │ │ │ ├── Destination.php │ │ │ │ │ │ ├── Policy.php │ │ │ │ │ │ ├── Translation.php │ │ │ │ │ │ └── Tutorial.php │ │ │ │ │ ├── Template │ │ │ │ │ │ └── Edit.php │ │ │ │ │ └── Translate.php │ │ │ │ ├── Variation │ │ │ │ │ └── Product │ │ │ │ │ │ └── Manage │ │ │ │ │ │ ├── View.php │ │ │ │ │ │ └── View │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ └── Help.php │ │ │ │ ├── View.php │ │ │ │ └── View │ │ │ │ │ ├── Ebay │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Fee │ │ │ │ │ ├── Details.php │ │ │ │ │ ├── Errors.php │ │ │ │ │ ├── Obtain.php │ │ │ │ │ ├── Preview.php │ │ │ │ │ └── Product.php │ │ │ │ │ ├── Help.php │ │ │ │ │ ├── ListingSwitcher.php │ │ │ │ │ ├── Magento │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── ModeSwitcher.php │ │ │ │ │ ├── Settings │ │ │ │ │ ├── Category │ │ │ │ │ │ ├── Chooser │ │ │ │ │ │ │ └── Wrapper.php │ │ │ │ │ │ └── Specific │ │ │ │ │ │ │ └── Wrapper.php │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── Grid │ │ │ │ │ │ └── Column │ │ │ │ │ │ └── Filter │ │ │ │ │ │ └── TitleSkuCategory.php │ │ │ │ │ └── Translation │ │ │ │ │ └── Grid.php │ │ │ ├── Log.php │ │ │ ├── Log │ │ │ │ └── Tabs.php │ │ │ ├── ManageListings.php │ │ │ ├── ManageListings │ │ │ │ └── Tabs.php │ │ │ ├── Marketplace.php │ │ │ ├── Marketplace │ │ │ │ ├── Edit │ │ │ │ │ └── Form.php │ │ │ │ └── Help.php │ │ │ ├── Motor │ │ │ │ ├── Add.php │ │ │ │ ├── Add │ │ │ │ │ ├── Filter │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Group │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Item │ │ │ │ │ │ ├── Epid │ │ │ │ │ │ │ └── Grid.php │ │ │ │ │ │ ├── FilterPopup.php │ │ │ │ │ │ ├── Grid.php │ │ │ │ │ │ └── Ktype │ │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── SaveAsGroupPopup.php │ │ │ │ │ ├── SetNotePopup.php │ │ │ │ │ └── Tabs.php │ │ │ │ └── View │ │ │ │ │ ├── Filter.php │ │ │ │ │ ├── Filter │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Group.php │ │ │ │ │ ├── Group │ │ │ │ │ ├── Filters.php │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── Items.php │ │ │ │ │ ├── Item.php │ │ │ │ │ └── Item │ │ │ │ │ └── Grid.php │ │ │ ├── Order.php │ │ │ ├── Order │ │ │ │ ├── Edit │ │ │ │ │ ├── ShippingAddress.php │ │ │ │ │ └── ShippingAddress │ │ │ │ │ │ └── Form.php │ │ │ │ ├── Grid.php │ │ │ │ ├── Help.php │ │ │ │ ├── Log.php │ │ │ │ ├── Log │ │ │ │ │ └── Help.php │ │ │ │ ├── MigrationToV611.php │ │ │ │ ├── View.php │ │ │ │ └── View │ │ │ │ │ ├── ExternalTransaction.php │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Item.php │ │ │ ├── Synchronization.php │ │ │ ├── Synchronization │ │ │ │ ├── Edit │ │ │ │ │ └── Form.php │ │ │ │ ├── Help.php │ │ │ │ ├── Log.php │ │ │ │ └── Log │ │ │ │ │ ├── Grid.php │ │ │ │ │ └── Help.php │ │ │ ├── Template.php │ │ │ └── Template │ │ │ │ ├── Description │ │ │ │ ├── Edit │ │ │ │ │ └── Form │ │ │ │ │ │ └── Data.php │ │ │ │ └── Preview │ │ │ │ │ ├── Body.php │ │ │ │ │ └── Form.php │ │ │ │ ├── Edit.php │ │ │ │ ├── Edit │ │ │ │ ├── Form.php │ │ │ │ ├── General.php │ │ │ │ ├── General │ │ │ │ │ └── Help.php │ │ │ │ ├── Selling │ │ │ │ │ └── Help.php │ │ │ │ └── Synchronization │ │ │ │ │ └── Help.php │ │ │ │ ├── Grid.php │ │ │ │ ├── Help.php │ │ │ │ ├── Payment │ │ │ │ └── Edit │ │ │ │ │ └── Form │ │ │ │ │ └── Data.php │ │ │ │ ├── Return │ │ │ │ └── Edit │ │ │ │ │ └── Form │ │ │ │ │ └── Data.php │ │ │ │ ├── SellingFormat │ │ │ │ ├── Edit │ │ │ │ │ └── Form │ │ │ │ │ │ └── Data.php │ │ │ │ ├── Messages.php │ │ │ │ ├── SearchCharity.php │ │ │ │ └── SearchCharity │ │ │ │ │ └── Grid.php │ │ │ │ ├── Shipping │ │ │ │ └── Edit │ │ │ │ │ └── Form │ │ │ │ │ └── Data.php │ │ │ │ └── Synchronization │ │ │ │ └── Edit │ │ │ │ └── Form │ │ │ │ ├── Data.php │ │ │ │ └── Tabs │ │ │ │ ├── List.php │ │ │ │ ├── Relist.php │ │ │ │ ├── Revise.php │ │ │ │ ├── Schedule.php │ │ │ │ └── Stop.php │ │ │ ├── General.php │ │ │ ├── General │ │ │ └── CreateAttribute.php │ │ │ ├── Grid │ │ │ ├── Column │ │ │ │ ├── Filter │ │ │ │ │ └── AttributesOptions.php │ │ │ │ └── Renderer │ │ │ │ │ └── Action.php │ │ │ └── Massaction.php │ │ │ ├── Listing │ │ │ ├── AutoAction │ │ │ │ ├── Mode.php │ │ │ │ └── Mode │ │ │ │ │ ├── Category.php │ │ │ │ │ ├── Category │ │ │ │ │ ├── Form.php │ │ │ │ │ └── Group │ │ │ │ │ │ └── Grid.php │ │ │ │ │ ├── Global.php │ │ │ │ │ └── Website.php │ │ │ ├── Category │ │ │ │ └── Tree.php │ │ │ ├── Grid.php │ │ │ ├── Log │ │ │ │ └── Grid.php │ │ │ ├── Moving │ │ │ │ ├── FailedProducts.php │ │ │ │ ├── FailedProducts │ │ │ │ │ └── Grid.php │ │ │ │ └── Grid.php │ │ │ ├── Other │ │ │ │ ├── Log │ │ │ │ │ └── Grid.php │ │ │ │ ├── Mapping.php │ │ │ │ ├── Mapping │ │ │ │ │ └── Grid.php │ │ │ │ └── View │ │ │ │ │ └── Header.php │ │ │ ├── Product │ │ │ │ └── Rule.php │ │ │ └── View │ │ │ │ ├── Grid │ │ │ │ └── Column │ │ │ │ │ └── Renderer │ │ │ │ │ └── DeveloperAction.php │ │ │ │ ├── Header.php │ │ │ │ ├── ListingSwitcher │ │ │ │ └── Abstract.php │ │ │ │ ├── ModeSwitcher.php │ │ │ │ └── ModeSwitcher │ │ │ │ └── Abstract.php │ │ │ ├── Log │ │ │ ├── ErrorsSummary.php │ │ │ └── Grid │ │ │ │ ├── Abstract.php │ │ │ │ └── Summary.php │ │ │ ├── Magento │ │ │ ├── Menu.php │ │ │ ├── Payment │ │ │ │ └── Info.php │ │ │ └── Product │ │ │ │ ├── Grid │ │ │ │ └── Abstract.php │ │ │ │ ├── Rule.php │ │ │ │ └── Rule │ │ │ │ ├── Chooser │ │ │ │ ├── Category.php │ │ │ │ └── Sku.php │ │ │ │ └── Renderer │ │ │ │ └── Editable.php │ │ │ ├── Marketplace │ │ │ └── Switcher.php │ │ │ ├── Order │ │ │ ├── Debug.php │ │ │ ├── General.php │ │ │ ├── Item │ │ │ │ ├── Edit.php │ │ │ │ └── Product │ │ │ │ │ ├── Mapping.php │ │ │ │ │ ├── Mapping │ │ │ │ │ └── Grid.php │ │ │ │ │ └── Options │ │ │ │ │ └── Mapping.php │ │ │ ├── Log │ │ │ │ └── Grid.php │ │ │ ├── NotCreatedFilter.php │ │ │ └── View │ │ │ │ └── Log │ │ │ │ └── Grid.php │ │ │ ├── Renderer │ │ │ └── Description │ │ │ │ ├── Abstract.php │ │ │ │ ├── Gallery.php │ │ │ │ └── Image.php │ │ │ ├── RequirementsPopup.php │ │ │ ├── StoreSwitcher.php │ │ │ ├── Support.php │ │ │ ├── Support │ │ │ ├── ContactForm.php │ │ │ ├── Form.php │ │ │ ├── Results.php │ │ │ └── Tabs.php │ │ │ ├── Switcher.php │ │ │ ├── Synchronization │ │ │ └── Log │ │ │ │ └── Grid.php │ │ │ ├── Template │ │ │ ├── Messages.php │ │ │ └── SellingFormat │ │ │ │ └── Messages.php │ │ │ ├── Widget │ │ │ ├── Button │ │ │ │ └── DropDown.php │ │ │ ├── Container.php │ │ │ ├── Dialog │ │ │ │ └── Confirm.php │ │ │ └── FloatingToolbarFixer.php │ │ │ └── Wizard │ │ │ ├── Abstract.php │ │ │ ├── Amazon │ │ │ ├── Congratulation.php │ │ │ ├── Congratulation │ │ │ │ └── Content.php │ │ │ ├── Installation.php │ │ │ ├── Installation │ │ │ │ ├── Account.php │ │ │ │ ├── Marketplace.php │ │ │ │ └── Marketplace │ │ │ │ │ └── Form.php │ │ │ ├── Notification.php │ │ │ ├── Presentation.php │ │ │ ├── Welcome.php │ │ │ └── Welcome │ │ │ │ └── Content.php │ │ │ ├── AmazonShippingOverridePolicy │ │ │ ├── Installation.php │ │ │ ├── Installation │ │ │ │ └── MarketplacesSynchronization.php │ │ │ └── Notification.php │ │ │ ├── Buy │ │ │ ├── Congratulation.php │ │ │ ├── Congratulation │ │ │ │ └── Content.php │ │ │ ├── Installation.php │ │ │ ├── Installation │ │ │ │ ├── Account.php │ │ │ │ ├── Marketplace.php │ │ │ │ └── Marketplace │ │ │ │ │ └── Form.php │ │ │ ├── Notification.php │ │ │ ├── Presentation.php │ │ │ ├── Welcome.php │ │ │ └── Welcome │ │ │ │ └── Content.php │ │ │ ├── Congratulation.php │ │ │ ├── EbayProductDetails │ │ │ ├── Installation.php │ │ │ ├── Installation │ │ │ │ └── MarketplacesSynchronization.php │ │ │ └── Notification.php │ │ │ ├── FullAmazonCategories │ │ │ ├── Installation.php │ │ │ ├── Installation │ │ │ │ └── MarketplacesSynchronization.php │ │ │ └── Notification.php │ │ │ ├── Initialization.php │ │ │ ├── Installation.php │ │ │ ├── InstallationCommon │ │ │ ├── Congratulation.php │ │ │ ├── Congratulation │ │ │ │ └── Content.php │ │ │ ├── Installation.php │ │ │ ├── Installation │ │ │ │ ├── Description.php │ │ │ │ ├── License.php │ │ │ │ └── Settings.php │ │ │ └── Notification.php │ │ │ ├── InstallationEbay │ │ │ ├── Installation.php │ │ │ ├── Installation │ │ │ │ ├── Account.php │ │ │ │ ├── Account │ │ │ │ │ └── Content.php │ │ │ │ ├── License.php │ │ │ │ ├── License │ │ │ │ │ └── Content.php │ │ │ │ ├── ListingTutorial.php │ │ │ │ ├── ListingTutorial │ │ │ │ │ └── Content.php │ │ │ │ ├── ModeConfirmation.php │ │ │ │ ├── ModeConfirmation │ │ │ │ │ └── Content.php │ │ │ │ ├── ProductTutorial.php │ │ │ │ ├── ProductTutorial │ │ │ │ │ └── Content.php │ │ │ │ ├── WizardTutorial.php │ │ │ │ └── WizardTutorial │ │ │ │ │ └── Content.php │ │ │ └── Notification.php │ │ │ ├── MainAbstract.php │ │ │ ├── MigrationNewAmazon │ │ │ ├── Installation.php │ │ │ ├── Installation │ │ │ │ ├── DescriptionTemplates.php │ │ │ │ ├── Information.php │ │ │ │ └── MarketplacesSynchronization.php │ │ │ └── Notification.php │ │ │ ├── MigrationToV6 │ │ │ ├── Breadcrumb.php │ │ │ ├── Installation.php │ │ │ ├── Installation │ │ │ │ ├── Intro.php │ │ │ │ ├── Intro │ │ │ │ │ └── Content.php │ │ │ │ ├── Notifications.php │ │ │ │ ├── Notifications │ │ │ │ │ └── Content.php │ │ │ │ ├── SellingFormatCurrencies.php │ │ │ │ └── SellingFormatCurrencies │ │ │ │ │ ├── Content.php │ │ │ │ │ ├── Tabs.php │ │ │ │ │ └── Tabs │ │ │ │ │ ├── Amazon.php │ │ │ │ │ ├── Buy.php │ │ │ │ │ └── Ebay.php │ │ │ ├── Notes.php │ │ │ └── Notification.php │ │ │ ├── Notification.php │ │ │ ├── Presentation.php │ │ │ ├── RemovedPlay │ │ │ └── Notification.php │ │ │ └── Welcome.php │ │ ├── CHANGELOG │ │ ├── Controller │ │ ├── Adminhtml │ │ │ ├── BaseController.php │ │ │ ├── Common │ │ │ │ ├── MainController.php │ │ │ │ ├── SimpleController.php │ │ │ │ └── WizardController.php │ │ │ ├── Configuration │ │ │ │ └── MainController.php │ │ │ ├── Development │ │ │ │ ├── CommandController.php │ │ │ │ └── MainController.php │ │ │ ├── Ebay │ │ │ │ ├── MainController.php │ │ │ │ ├── SimpleController.php │ │ │ │ └── WizardController.php │ │ │ ├── MainController.php │ │ │ └── WizardController.php │ │ └── Router.php │ │ ├── Helper │ │ ├── Client.php │ │ ├── Client │ │ │ └── Cache.php │ │ ├── Component.php │ │ ├── Component │ │ │ ├── Amazon.php │ │ │ ├── Amazon │ │ │ │ ├── Category.php │ │ │ │ ├── MerchantFulfillment.php │ │ │ │ ├── ProductData.php │ │ │ │ ├── Variation.php │ │ │ │ └── Vocabulary.php │ │ │ ├── Buy.php │ │ │ ├── Ebay.php │ │ │ └── Ebay │ │ │ │ ├── Category.php │ │ │ │ ├── Category │ │ │ │ ├── Ebay.php │ │ │ │ └── Store.php │ │ │ │ └── Motors.php │ │ ├── Data.php │ │ ├── Data │ │ │ ├── Cache │ │ │ │ ├── Abstract.php │ │ │ │ ├── Permanent.php │ │ │ │ └── Session.php │ │ │ ├── Global.php │ │ │ └── Session.php │ │ ├── Magento.php │ │ ├── Magento │ │ │ ├── Abstract.php │ │ │ ├── Attribute.php │ │ │ ├── AttributeSet.php │ │ │ ├── Category.php │ │ │ ├── Product.php │ │ │ ├── Store.php │ │ │ └── Store │ │ │ │ ├── Group.php │ │ │ │ ├── View.php │ │ │ │ └── Website.php │ │ ├── Module.php │ │ ├── Module │ │ │ ├── Cron.php │ │ │ ├── Database │ │ │ │ ├── Repair.php │ │ │ │ └── Structure.php │ │ │ ├── Exception.php │ │ │ ├── License.php │ │ │ ├── Logger.php │ │ │ ├── Maintenance.php │ │ │ ├── Renderer │ │ │ │ └── Description.php │ │ │ ├── Support.php │ │ │ ├── Support │ │ │ │ ├── Form.php │ │ │ │ └── Uservoice.php │ │ │ ├── Translation.php │ │ │ └── Wizard.php │ │ ├── Primary.php │ │ ├── Server.php │ │ ├── View.php │ │ └── View │ │ │ ├── Common.php │ │ │ ├── Common │ │ │ ├── Component.php │ │ │ └── Controller.php │ │ │ ├── Configuration.php │ │ │ ├── Development.php │ │ │ ├── Development │ │ │ ├── Command.php │ │ │ └── Controller.php │ │ │ ├── Ebay.php │ │ │ └── Ebay │ │ │ ├── Component.php │ │ │ └── Controller.php │ │ ├── Model │ │ ├── Abstract.php │ │ ├── Account.php │ │ ├── Amazon │ │ │ ├── Account.php │ │ │ ├── Item.php │ │ │ ├── Listing.php │ │ │ ├── Listing │ │ │ │ ├── Auto │ │ │ │ │ ├── Actions │ │ │ │ │ │ └── Listing.php │ │ │ │ │ └── Category │ │ │ │ │ │ └── Group.php │ │ │ │ ├── Log.php │ │ │ │ ├── Other.php │ │ │ │ ├── Other │ │ │ │ │ ├── Mapping.php │ │ │ │ │ └── Moving.php │ │ │ │ ├── Product.php │ │ │ │ ├── Product │ │ │ │ │ ├── Action │ │ │ │ │ │ ├── Configurator.php │ │ │ │ │ │ ├── Logger.php │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ ├── Request │ │ │ │ │ │ │ ├── Abstract.php │ │ │ │ │ │ │ ├── Details.php │ │ │ │ │ │ │ ├── Images.php │ │ │ │ │ │ │ ├── Price.php │ │ │ │ │ │ │ ├── Qty.php │ │ │ │ │ │ │ └── ShippingOverride.php │ │ │ │ │ │ ├── RequestData.php │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ ├── Delete │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ │ └── Validator.php │ │ │ │ │ │ │ ├── List │ │ │ │ │ │ │ ├── Linking.php │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ │ └── Validator │ │ │ │ │ │ │ │ ├── General.php │ │ │ │ │ │ │ │ ├── ListType.php │ │ │ │ │ │ │ │ └── Sku │ │ │ │ │ │ │ │ ├── Existence.php │ │ │ │ │ │ │ │ ├── General.php │ │ │ │ │ │ │ │ └── Search.php │ │ │ │ │ │ │ ├── Relist │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ │ └── Validator.php │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ │ ├── Revise │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ │ └── Validator.php │ │ │ │ │ │ │ ├── Stop │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ │ └── Validator.php │ │ │ │ │ │ │ └── Validator.php │ │ │ │ │ ├── PriceCalculator.php │ │ │ │ │ ├── QtyCalculator.php │ │ │ │ │ ├── Variation.php │ │ │ │ │ └── Variation │ │ │ │ │ │ ├── Manager.php │ │ │ │ │ │ ├── Manager │ │ │ │ │ │ ├── Abstract.php │ │ │ │ │ │ ├── LogicalUnit.php │ │ │ │ │ │ ├── PhysicalUnit.php │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ ├── Individual.php │ │ │ │ │ │ │ └── Relation │ │ │ │ │ │ │ ├── Child.php │ │ │ │ │ │ │ ├── Parent.php │ │ │ │ │ │ │ └── Parent │ │ │ │ │ │ │ ├── Processor.php │ │ │ │ │ │ │ └── Processor │ │ │ │ │ │ │ ├── Mass.php │ │ │ │ │ │ │ └── Sub │ │ │ │ │ │ │ ├── Abstract.php │ │ │ │ │ │ │ ├── Attributes.php │ │ │ │ │ │ │ ├── GeneralIdOwner.php │ │ │ │ │ │ │ ├── MatchedAttributes.php │ │ │ │ │ │ │ ├── Options.php │ │ │ │ │ │ │ ├── Selling.php │ │ │ │ │ │ │ ├── Status.php │ │ │ │ │ │ │ ├── Template.php │ │ │ │ │ │ │ └── Theme.php │ │ │ │ │ │ ├── Matcher │ │ │ │ │ │ ├── Attribute.php │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ └── Resolver.php │ │ │ │ │ │ ├── Option.php │ │ │ │ │ │ ├── Option │ │ │ │ │ │ │ └── Resolver.php │ │ │ │ │ │ └── Theme.php │ │ │ │ │ │ ├── Option.php │ │ │ │ │ │ └── Updater.php │ │ │ │ └── Source.php │ │ │ ├── Magento │ │ │ │ └── Product │ │ │ │ │ ├── Rule.php │ │ │ │ │ └── Rule │ │ │ │ │ ├── Condition │ │ │ │ │ ├── Combine.php │ │ │ │ │ └── Product.php │ │ │ │ │ └── Custom │ │ │ │ │ ├── AmazonGeneralId.php │ │ │ │ │ ├── AmazonGeneralIdState.php │ │ │ │ │ ├── AmazonIsAfnChanel.php │ │ │ │ │ ├── AmazonOnlinePrice.php │ │ │ │ │ ├── AmazonOnlineQty.php │ │ │ │ │ ├── AmazonOnlineSalePrice.php │ │ │ │ │ ├── AmazonSku.php │ │ │ │ │ └── AmazonStatus.php │ │ │ ├── Marketplace.php │ │ │ ├── Marketplace │ │ │ │ └── Details.php │ │ │ ├── Order.php │ │ │ ├── Order │ │ │ │ ├── Builder.php │ │ │ │ ├── Helper.php │ │ │ │ ├── Item.php │ │ │ │ ├── Item │ │ │ │ │ ├── Builder.php │ │ │ │ │ └── Proxy.php │ │ │ │ ├── Proxy.php │ │ │ │ ├── Shipment │ │ │ │ │ └── Handler.php │ │ │ │ └── ShippingAddress.php │ │ │ ├── Repricing.php │ │ │ ├── Search │ │ │ │ ├── Custom.php │ │ │ │ ├── Custom │ │ │ │ │ ├── ByAsin │ │ │ │ │ │ ├── Requester.php │ │ │ │ │ │ └── Responser.php │ │ │ │ │ ├── ByIdentifier │ │ │ │ │ │ ├── Requester.php │ │ │ │ │ │ └── Responser.php │ │ │ │ │ └── ByQuery │ │ │ │ │ │ ├── Requester.php │ │ │ │ │ │ └── Responser.php │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── Settings.php │ │ │ │ └── Settings │ │ │ │ │ ├── ByAsin │ │ │ │ │ ├── Requester.php │ │ │ │ │ └── Responser.php │ │ │ │ │ ├── ByIdentifier │ │ │ │ │ ├── Requester.php │ │ │ │ │ └── Responser.php │ │ │ │ │ └── ByQuery │ │ │ │ │ ├── Requester.php │ │ │ │ │ └── Responser.php │ │ │ ├── Synchronization │ │ │ │ ├── Abstract.php │ │ │ │ ├── Defaults.php │ │ │ │ ├── Defaults │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── RunParentProcessors.php │ │ │ │ │ ├── UpdateDefectedListingsProducts.php │ │ │ │ │ ├── UpdateDefectedListingsProducts │ │ │ │ │ │ ├── Requester.php │ │ │ │ │ │ └── Responser.php │ │ │ │ │ ├── UpdateListingsProducts.php │ │ │ │ │ ├── UpdateListingsProducts │ │ │ │ │ │ ├── Requester.php │ │ │ │ │ │ └── Responser.php │ │ │ │ │ └── UpdateRepricing.php │ │ │ │ ├── Launcher.php │ │ │ │ ├── Marketplaces.php │ │ │ │ ├── Marketplaces │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── Categories.php │ │ │ │ │ ├── Details.php │ │ │ │ │ └── Specifics.php │ │ │ │ ├── Orders.php │ │ │ │ ├── Orders │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── Cancel.php │ │ │ │ │ ├── Receive.php │ │ │ │ │ ├── Receive │ │ │ │ │ │ ├── Requester.php │ │ │ │ │ │ └── Responser.php │ │ │ │ │ ├── Refund.php │ │ │ │ │ ├── Reserve │ │ │ │ │ │ └── Cancellation.php │ │ │ │ │ └── Update.php │ │ │ │ ├── OtherListings.php │ │ │ │ ├── OtherListings │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── Title.php │ │ │ │ │ ├── Update.php │ │ │ │ │ └── Update │ │ │ │ │ │ ├── Requester.php │ │ │ │ │ │ └── Responser.php │ │ │ │ ├── Templates.php │ │ │ │ └── Templates │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── Inspector.php │ │ │ │ │ ├── List.php │ │ │ │ │ ├── Relist.php │ │ │ │ │ ├── Revise.php │ │ │ │ │ └── Stop.php │ │ │ └── Template │ │ │ │ ├── Description.php │ │ │ │ ├── Description │ │ │ │ ├── Definition.php │ │ │ │ ├── Definition │ │ │ │ │ └── Source.php │ │ │ │ ├── Source.php │ │ │ │ ├── Specific.php │ │ │ │ └── Specific │ │ │ │ │ └── Source.php │ │ │ │ ├── SellingFormat.php │ │ │ │ ├── ShippingOverride.php │ │ │ │ ├── ShippingOverride │ │ │ │ ├── Service.php │ │ │ │ └── Service │ │ │ │ │ └── Source.php │ │ │ │ └── Synchronization.php │ │ ├── Buy │ │ │ ├── Account.php │ │ │ ├── Item.php │ │ │ ├── Listing.php │ │ │ ├── Listing │ │ │ │ ├── Auto │ │ │ │ │ ├── Actions │ │ │ │ │ │ └── Listing.php │ │ │ │ │ └── Category │ │ │ │ │ │ └── Group.php │ │ │ │ ├── Log.php │ │ │ │ ├── Other.php │ │ │ │ ├── Other │ │ │ │ │ ├── Mapping.php │ │ │ │ │ └── Moving.php │ │ │ │ ├── Product.php │ │ │ │ ├── Product │ │ │ │ │ ├── Action │ │ │ │ │ │ ├── Configurator.php │ │ │ │ │ │ ├── Logger.php │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ ├── Request │ │ │ │ │ │ │ ├── Abstract.php │ │ │ │ │ │ │ ├── Details.php │ │ │ │ │ │ │ ├── NewProduct.php │ │ │ │ │ │ │ ├── Selling.php │ │ │ │ │ │ │ └── Shipping.php │ │ │ │ │ │ ├── RequestData.php │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ ├── List │ │ │ │ │ │ │ ├── Linking.php │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ │ └── Validator │ │ │ │ │ │ │ │ ├── General.php │ │ │ │ │ │ │ │ ├── GeneralId.php │ │ │ │ │ │ │ │ └── Sku │ │ │ │ │ │ │ │ ├── Existence.php │ │ │ │ │ │ │ │ ├── General.php │ │ │ │ │ │ │ │ └── Search.php │ │ │ │ │ │ │ ├── NewSku │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ │ └── Validator.php │ │ │ │ │ │ │ ├── Relist │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ │ └── Validator.php │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ │ ├── Revise │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ │ └── Validator.php │ │ │ │ │ │ │ ├── Stop │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ │ └── Validator.php │ │ │ │ │ │ │ └── Validator.php │ │ │ │ │ ├── PriceCalculator.php │ │ │ │ │ ├── QtyCalculator.php │ │ │ │ │ ├── Variation.php │ │ │ │ │ └── Variation │ │ │ │ │ │ ├── Manager.php │ │ │ │ │ │ ├── Option.php │ │ │ │ │ │ └── Updater.php │ │ │ │ └── Source.php │ │ │ ├── Magento │ │ │ │ └── Product │ │ │ │ │ ├── Rule.php │ │ │ │ │ └── Rule │ │ │ │ │ ├── Condition │ │ │ │ │ ├── Combine.php │ │ │ │ │ └── Product.php │ │ │ │ │ └── Custom │ │ │ │ │ ├── BuyGeneralId.php │ │ │ │ │ ├── BuyOnlinePrice.php │ │ │ │ │ ├── BuyOnlineQty.php │ │ │ │ │ ├── BuySku.php │ │ │ │ │ └── BuyStatus.php │ │ │ ├── Marketplace.php │ │ │ ├── Order.php │ │ │ ├── Order │ │ │ │ ├── Builder.php │ │ │ │ ├── Item.php │ │ │ │ ├── Item │ │ │ │ │ ├── Builder.php │ │ │ │ │ └── Proxy.php │ │ │ │ ├── Proxy.php │ │ │ │ └── ShippingAddress.php │ │ │ ├── Search │ │ │ │ ├── Custom.php │ │ │ │ ├── Custom │ │ │ │ │ └── ByQuery │ │ │ │ │ │ ├── Requester.php │ │ │ │ │ │ └── Responser.php │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── Settings.php │ │ │ │ └── Settings │ │ │ │ │ └── ByQuery │ │ │ │ │ ├── Requester.php │ │ │ │ │ └── Responser.php │ │ │ ├── Synchronization │ │ │ │ ├── Abstract.php │ │ │ │ ├── Defaults.php │ │ │ │ ├── Defaults │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── UpdateListingsProducts.php │ │ │ │ │ └── UpdateListingsProducts │ │ │ │ │ │ ├── Requester.php │ │ │ │ │ │ └── Responser.php │ │ │ │ ├── Launcher.php │ │ │ │ ├── Marketplaces.php │ │ │ │ ├── Marketplaces │ │ │ │ │ ├── Abstract.php │ │ │ │ │ └── Categories.php │ │ │ │ ├── Orders.php │ │ │ │ ├── Orders │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── Receive.php │ │ │ │ │ ├── Receive │ │ │ │ │ │ ├── Requester.php │ │ │ │ │ │ └── Responser.php │ │ │ │ │ └── Update.php │ │ │ │ ├── OtherListings.php │ │ │ │ ├── OtherListings │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── Update.php │ │ │ │ │ └── Update │ │ │ │ │ │ ├── Requester.php │ │ │ │ │ │ └── Responser.php │ │ │ │ ├── Templates.php │ │ │ │ └── Templates │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── Inspector.php │ │ │ │ │ ├── List.php │ │ │ │ │ ├── Relist.php │ │ │ │ │ ├── Revise.php │ │ │ │ │ └── Stop.php │ │ │ └── Template │ │ │ │ ├── NewProduct.php │ │ │ │ ├── NewProduct │ │ │ │ ├── Attribute.php │ │ │ │ ├── Attribute │ │ │ │ │ └── Source.php │ │ │ │ ├── Core.php │ │ │ │ └── Core │ │ │ │ │ └── Source.php │ │ │ │ ├── SellingFormat.php │ │ │ │ └── Synchronization.php │ │ ├── Component │ │ │ ├── Abstract.php │ │ │ ├── Child │ │ │ │ ├── Abstract.php │ │ │ │ ├── Amazon │ │ │ │ │ └── Abstract.php │ │ │ │ ├── Buy │ │ │ │ │ └── Abstract.php │ │ │ │ └── Ebay │ │ │ │ │ └── Abstract.php │ │ │ └── Parent │ │ │ │ ├── Abstract.php │ │ │ │ ├── Amazon │ │ │ │ └── Abstract.php │ │ │ │ ├── Buy │ │ │ │ └── Abstract.php │ │ │ │ └── Ebay │ │ │ │ └── Abstract.php │ │ ├── Config │ │ │ ├── Abstract.php │ │ │ ├── Cache.php │ │ │ ├── Module.php │ │ │ ├── Primary.php │ │ │ └── Synchronization.php │ │ ├── Connector │ │ │ ├── Amazon │ │ │ │ ├── Abstract.php │ │ │ │ ├── Account │ │ │ │ │ ├── Add │ │ │ │ │ │ ├── EntityRequester.php │ │ │ │ │ │ └── EntityResponser.php │ │ │ │ │ ├── Delete │ │ │ │ │ │ ├── EntityRequester.php │ │ │ │ │ │ └── EntityResponser.php │ │ │ │ │ └── Update │ │ │ │ │ │ ├── EntityRequester.php │ │ │ │ │ │ └── EntityResponser.php │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── Inventory │ │ │ │ │ └── Get │ │ │ │ │ │ ├── Defected │ │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ │ └── ItemsResponser.php │ │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ │ └── ItemsResponser.php │ │ │ │ ├── Orders │ │ │ │ │ ├── Cancel │ │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ │ └── ItemsResponser.php │ │ │ │ │ ├── Get │ │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ │ └── ItemsResponser.php │ │ │ │ │ ├── Refund │ │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ │ └── ItemsResponser.php │ │ │ │ │ └── Update │ │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ │ └── ItemsResponser.php │ │ │ │ ├── Product │ │ │ │ │ ├── Delete │ │ │ │ │ │ ├── MultipleRequester.php │ │ │ │ │ │ └── MultipleResponser.php │ │ │ │ │ ├── Dispatcher.php │ │ │ │ │ ├── List │ │ │ │ │ │ ├── MultipleRequester.php │ │ │ │ │ │ └── MultipleResponser.php │ │ │ │ │ ├── Relist │ │ │ │ │ │ ├── MultipleRequester.php │ │ │ │ │ │ └── MultipleResponser.php │ │ │ │ │ ├── Requester.php │ │ │ │ │ ├── Responser.php │ │ │ │ │ ├── Revise │ │ │ │ │ │ ├── MultipleRequester.php │ │ │ │ │ │ └── MultipleResponser.php │ │ │ │ │ └── Stop │ │ │ │ │ │ ├── MultipleRequester.php │ │ │ │ │ │ └── MultipleResponser.php │ │ │ │ ├── Requester.php │ │ │ │ ├── Responser.php │ │ │ │ ├── Search │ │ │ │ │ ├── ByAsin │ │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ │ └── ItemsResponser.php │ │ │ │ │ ├── ByIdentifier │ │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ │ └── ItemsResponser.php │ │ │ │ │ └── ByQuery │ │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ │ └── ItemsResponser.php │ │ │ │ └── Virtual.php │ │ │ ├── Buy │ │ │ │ ├── Abstract.php │ │ │ │ ├── Account │ │ │ │ │ ├── Add │ │ │ │ │ │ ├── EntityRequester.php │ │ │ │ │ │ └── EntityResponser.php │ │ │ │ │ ├── Delete │ │ │ │ │ │ ├── EntityRequester.php │ │ │ │ │ │ └── EntityResponser.php │ │ │ │ │ └── Update │ │ │ │ │ │ ├── EntityRequester.php │ │ │ │ │ │ └── EntityResponser.php │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── Inventory │ │ │ │ │ └── Get │ │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ │ └── ItemsResponser.php │ │ │ │ ├── Orders │ │ │ │ │ ├── Get │ │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ │ └── ItemsResponser.php │ │ │ │ │ └── Update │ │ │ │ │ │ ├── ShippingRequester.php │ │ │ │ │ │ └── ShippingResponser.php │ │ │ │ ├── Product │ │ │ │ │ ├── Dispatcher.php │ │ │ │ │ ├── List │ │ │ │ │ │ ├── MultipleRequester.php │ │ │ │ │ │ └── MultipleResponser.php │ │ │ │ │ ├── NewSku │ │ │ │ │ │ ├── MultipleRequester.php │ │ │ │ │ │ └── MultipleResponser.php │ │ │ │ │ ├── Relist │ │ │ │ │ │ ├── MultipleRequester.php │ │ │ │ │ │ └── MultipleResponser.php │ │ │ │ │ ├── Requester.php │ │ │ │ │ ├── Responser.php │ │ │ │ │ ├── Revise │ │ │ │ │ │ ├── MultipleRequester.php │ │ │ │ │ │ └── MultipleResponser.php │ │ │ │ │ └── Stop │ │ │ │ │ │ ├── MultipleRequester.php │ │ │ │ │ │ └── MultipleResponser.php │ │ │ │ ├── Requester.php │ │ │ │ ├── Responser.php │ │ │ │ ├── Search │ │ │ │ │ └── ByQuery │ │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ │ └── ItemsResponser.php │ │ │ │ └── Virtual.php │ │ │ ├── Command.php │ │ │ ├── Ebay │ │ │ │ ├── Abstract.php │ │ │ │ ├── Category │ │ │ │ │ └── Get │ │ │ │ │ │ └── Suggested.php │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── Inventory │ │ │ │ │ └── Get │ │ │ │ │ │ ├── ItemsRequester.php │ │ │ │ │ │ └── ItemsResponser.php │ │ │ │ ├── Item │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── Dispatcher.php │ │ │ │ │ ├── List │ │ │ │ │ │ ├── Multiple.php │ │ │ │ │ │ ├── Single.php │ │ │ │ │ │ └── Verify.php │ │ │ │ │ ├── MultipleAbstract.php │ │ │ │ │ ├── Relist │ │ │ │ │ │ └── Single.php │ │ │ │ │ ├── Revise │ │ │ │ │ │ └── Single.php │ │ │ │ │ ├── SingleAbstract.php │ │ │ │ │ └── Stop │ │ │ │ │ │ ├── Multiple.php │ │ │ │ │ │ └── Single.php │ │ │ │ ├── Order │ │ │ │ │ ├── Dispatcher.php │ │ │ │ │ └── Update │ │ │ │ │ │ ├── Abstract.php │ │ │ │ │ │ ├── Payment.php │ │ │ │ │ │ └── Shipping.php │ │ │ │ ├── OrderItem │ │ │ │ │ ├── Add │ │ │ │ │ │ └── Dispute.php │ │ │ │ │ ├── Dispatcher.php │ │ │ │ │ └── Update │ │ │ │ │ │ └── Status.php │ │ │ │ ├── OtherItem │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── Dispatcher.php │ │ │ │ │ ├── Relist │ │ │ │ │ │ └── Single.php │ │ │ │ │ ├── Revise │ │ │ │ │ │ └── Single.php │ │ │ │ │ └── Stop │ │ │ │ │ │ └── Single.php │ │ │ │ ├── Requester.php │ │ │ │ ├── Responser.php │ │ │ │ └── Virtual.php │ │ │ ├── M2ePro │ │ │ │ ├── Abstract.php │ │ │ │ ├── Dispatcher.php │ │ │ │ └── Virtual.php │ │ │ ├── Protocol.php │ │ │ ├── Requester.php │ │ │ ├── Responser.php │ │ │ ├── ResponserRunner.php │ │ │ └── Translation │ │ │ │ ├── Abstract.php │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── Product │ │ │ │ └── Add │ │ │ │ │ ├── Dispatcher.php │ │ │ │ │ ├── MultipleRequester.php │ │ │ │ │ └── MultipleResponser.php │ │ │ │ ├── Requester.php │ │ │ │ ├── Responser.php │ │ │ │ └── Virtual.php │ │ ├── Cron │ │ │ ├── Runner │ │ │ │ ├── Abstract.php │ │ │ │ ├── Developer.php │ │ │ │ ├── Magento.php │ │ │ │ └── Service.php │ │ │ ├── Strategy │ │ │ │ ├── Abstract.php │ │ │ │ ├── Parallel.php │ │ │ │ └── Serial.php │ │ │ └── Task │ │ │ │ ├── Abstract.php │ │ │ │ ├── LogsClearing.php │ │ │ │ ├── Servicing.php │ │ │ │ └── Synchronization.php │ │ ├── Currency.php │ │ ├── Ebay │ │ │ ├── Account.php │ │ │ ├── Feedback.php │ │ │ ├── Feedback │ │ │ │ └── Template.php │ │ │ ├── Item.php │ │ │ ├── Listing.php │ │ │ ├── Listing │ │ │ │ ├── Action │ │ │ │ │ ├── Configurator.php │ │ │ │ │ ├── Logger.php │ │ │ │ │ ├── Request.php │ │ │ │ │ └── RequestData.php │ │ │ │ ├── Auto │ │ │ │ │ ├── Actions │ │ │ │ │ │ └── Listing.php │ │ │ │ │ └── Category │ │ │ │ │ │ └── Group.php │ │ │ │ ├── Log.php │ │ │ │ ├── Other.php │ │ │ │ ├── Other │ │ │ │ │ ├── Action │ │ │ │ │ │ ├── Configurator.php │ │ │ │ │ │ ├── Logger.php │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ ├── Request │ │ │ │ │ │ │ ├── Description.php │ │ │ │ │ │ │ └── Selling.php │ │ │ │ │ │ ├── RequestData.php │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ ├── Relist │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ └── Response.php │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ │ ├── Revise │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ └── Response.php │ │ │ │ │ │ │ └── Stop │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ └── Response.php │ │ │ │ │ ├── Mapping.php │ │ │ │ │ ├── Source.php │ │ │ │ │ ├── Synchronization.php │ │ │ │ │ └── Updating.php │ │ │ │ ├── Product.php │ │ │ │ └── Product │ │ │ │ │ ├── Action │ │ │ │ │ ├── Configurator.php │ │ │ │ │ ├── Logger.php │ │ │ │ │ ├── Request.php │ │ │ │ │ ├── Request │ │ │ │ │ │ ├── Abstract.php │ │ │ │ │ │ ├── Categories.php │ │ │ │ │ │ ├── Description.php │ │ │ │ │ │ ├── Payment.php │ │ │ │ │ │ ├── Return.php │ │ │ │ │ │ ├── Selling.php │ │ │ │ │ │ ├── Shipping.php │ │ │ │ │ │ └── Variations.php │ │ │ │ │ ├── RequestData.php │ │ │ │ │ └── Type │ │ │ │ │ │ ├── List │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ └── Response.php │ │ │ │ │ │ ├── Relist │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ └── Response.php │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ ├── Revise │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ └── Response.php │ │ │ │ │ │ └── Stop │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ └── Response.php │ │ │ │ │ ├── Description │ │ │ │ │ └── Renderer.php │ │ │ │ │ ├── PriceCalculator.php │ │ │ │ │ ├── QtyCalculator.php │ │ │ │ │ ├── Variation.php │ │ │ │ │ └── Variation │ │ │ │ │ ├── Option.php │ │ │ │ │ └── Updater.php │ │ │ ├── Magento │ │ │ │ └── Product │ │ │ │ │ ├── Rule.php │ │ │ │ │ └── Rule │ │ │ │ │ ├── Condition │ │ │ │ │ ├── Combine.php │ │ │ │ │ └── Product.php │ │ │ │ │ └── Custom │ │ │ │ │ ├── EbayAvailableQty.php │ │ │ │ │ ├── EbayBuyItNowPrice.php │ │ │ │ │ ├── EbayCategoryId.php │ │ │ │ │ ├── EbayCategoryPath.php │ │ │ │ │ ├── EbayEndDate.php │ │ │ │ │ ├── EbayItemId.php │ │ │ │ │ ├── EbayPrice.php │ │ │ │ │ ├── EbayReservePrice.php │ │ │ │ │ ├── EbaySku.php │ │ │ │ │ ├── EbaySoldQty.php │ │ │ │ │ ├── EbayStartDate.php │ │ │ │ │ ├── EbayStartPrice.php │ │ │ │ │ ├── EbayStatus.php │ │ │ │ │ └── EbayTitle.php │ │ │ ├── Marketplace.php │ │ │ ├── Motor │ │ │ │ ├── Filter.php │ │ │ │ └── Group.php │ │ │ ├── Order.php │ │ │ ├── Order │ │ │ │ ├── Builder.php │ │ │ │ ├── ExternalTransaction.php │ │ │ │ ├── ExternalTransaction │ │ │ │ │ └── Builder.php │ │ │ │ ├── Helper.php │ │ │ │ ├── Item.php │ │ │ │ ├── Item │ │ │ │ │ ├── Builder.php │ │ │ │ │ ├── Importer.php │ │ │ │ │ └── Proxy.php │ │ │ │ ├── Proxy.php │ │ │ │ ├── Shipment │ │ │ │ │ └── Handler.php │ │ │ │ └── ShippingAddress.php │ │ │ ├── Synchronization │ │ │ │ ├── Abstract.php │ │ │ │ ├── Defaults.php │ │ │ │ ├── Defaults │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── RemoveDuplicates.php │ │ │ │ │ ├── RemoveUnusedTemplates.php │ │ │ │ │ └── UpdateListingsProducts.php │ │ │ │ ├── Feedbacks.php │ │ │ │ ├── Feedbacks │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── Receive.php │ │ │ │ │ └── Response.php │ │ │ │ ├── Launcher.php │ │ │ │ ├── Marketplaces.php │ │ │ │ ├── Marketplaces │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── Categories.php │ │ │ │ │ ├── Details.php │ │ │ │ │ ├── MotorsEpids.php │ │ │ │ │ └── MotorsKtypes.php │ │ │ │ ├── Orders.php │ │ │ │ ├── Orders │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── Cancellation.php │ │ │ │ │ ├── Receive.php │ │ │ │ │ ├── Reserve │ │ │ │ │ │ └── Cancellation.php │ │ │ │ │ └── Update.php │ │ │ │ ├── OtherListings.php │ │ │ │ ├── OtherListings │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── Sku.php │ │ │ │ │ ├── Templates.php │ │ │ │ │ ├── Templates │ │ │ │ │ │ ├── Abstract.php │ │ │ │ │ │ ├── Inspector.php │ │ │ │ │ │ ├── Relist.php │ │ │ │ │ │ ├── Revise.php │ │ │ │ │ │ └── Stop.php │ │ │ │ │ ├── Update.php │ │ │ │ │ └── Update │ │ │ │ │ │ ├── Requester.php │ │ │ │ │ │ └── Responser.php │ │ │ │ ├── Templates.php │ │ │ │ └── Templates │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── Inspector.php │ │ │ │ │ ├── List.php │ │ │ │ │ ├── Relist.php │ │ │ │ │ ├── Revise.php │ │ │ │ │ └── Stop.php │ │ │ └── Template │ │ │ │ ├── Builder │ │ │ │ └── Abstract.php │ │ │ │ ├── Category.php │ │ │ │ ├── Category │ │ │ │ ├── Builder.php │ │ │ │ ├── Source.php │ │ │ │ ├── Specific.php │ │ │ │ └── Specific │ │ │ │ │ └── Source.php │ │ │ │ ├── Description.php │ │ │ │ ├── Description │ │ │ │ ├── Builder.php │ │ │ │ └── Source.php │ │ │ │ ├── Manager.php │ │ │ │ ├── OtherCategory.php │ │ │ │ ├── OtherCategory │ │ │ │ ├── Builder.php │ │ │ │ └── Source.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Payment │ │ │ │ ├── Builder.php │ │ │ │ └── Service.php │ │ │ │ ├── Return.php │ │ │ │ ├── Return │ │ │ │ └── Builder.php │ │ │ │ ├── SellingFormat.php │ │ │ │ ├── SellingFormat │ │ │ │ ├── Builder.php │ │ │ │ └── Source.php │ │ │ │ ├── Shipping.php │ │ │ │ ├── Shipping │ │ │ │ ├── Builder.php │ │ │ │ ├── Calculated.php │ │ │ │ ├── Calculated │ │ │ │ │ └── Source.php │ │ │ │ ├── Service.php │ │ │ │ ├── Service │ │ │ │ │ └── Source.php │ │ │ │ └── Source.php │ │ │ │ ├── Synchronization.php │ │ │ │ └── Synchronization │ │ │ │ └── Builder.php │ │ ├── Exception.php │ │ ├── Exception │ │ │ ├── Connection.php │ │ │ ├── Logic.php │ │ │ └── Setup.php │ │ ├── Item.php │ │ ├── Listing.php │ │ ├── Listing │ │ │ ├── Auto │ │ │ │ ├── Actions │ │ │ │ │ ├── Listing.php │ │ │ │ │ └── Mode │ │ │ │ │ │ ├── Abstract.php │ │ │ │ │ │ ├── Category.php │ │ │ │ │ │ ├── Global.php │ │ │ │ │ │ └── Website.php │ │ │ │ ├── Category.php │ │ │ │ └── Category │ │ │ │ │ └── Group.php │ │ │ ├── Log.php │ │ │ ├── Other.php │ │ │ ├── Other │ │ │ │ └── Log.php │ │ │ ├── Product.php │ │ │ └── Product │ │ │ │ ├── Action │ │ │ │ └── Configurator.php │ │ │ │ ├── PriceCalculator.php │ │ │ │ ├── QtyCalculator.php │ │ │ │ ├── Variation.php │ │ │ │ └── Variation │ │ │ │ ├── Option.php │ │ │ │ └── Updater.php │ │ ├── LockItem.php │ │ ├── LockedObject.php │ │ ├── Log │ │ │ ├── Abstract.php │ │ │ ├── Clearing.php │ │ │ └── System.php │ │ ├── Magento │ │ │ ├── Attribute │ │ │ │ ├── Builder.php │ │ │ │ └── Relation.php │ │ │ ├── AttributeSet │ │ │ │ ├── Builder.php │ │ │ │ └── Group.php │ │ │ ├── Customer.php │ │ │ ├── Order.php │ │ │ ├── Order │ │ │ │ ├── Invoice.php │ │ │ │ ├── PaymentTransaction.php │ │ │ │ ├── Shipment.php │ │ │ │ ├── Shipment │ │ │ │ │ └── Track.php │ │ │ │ └── Updater.php │ │ │ ├── Payment.php │ │ │ ├── Product.php │ │ │ ├── Product │ │ │ │ ├── Builder.php │ │ │ │ ├── Cache.php │ │ │ │ ├── Index.php │ │ │ │ ├── Rule.php │ │ │ │ ├── Rule │ │ │ │ │ ├── Condition │ │ │ │ │ │ ├── Abstract.php │ │ │ │ │ │ ├── Combine.php │ │ │ │ │ │ └── Product.php │ │ │ │ │ └── Custom │ │ │ │ │ │ ├── Abstract.php │ │ │ │ │ │ ├── Qty.php │ │ │ │ │ │ └── Stock.php │ │ │ │ ├── Status.php │ │ │ │ ├── StockItem.php │ │ │ │ ├── Type │ │ │ │ │ └── Configurable.php │ │ │ │ ├── Variation.php │ │ │ │ └── Variation │ │ │ │ │ └── Cache.php │ │ │ ├── Quote.php │ │ │ ├── Quote │ │ │ │ ├── Item.php │ │ │ │ └── Store │ │ │ │ │ └── Configurator.php │ │ │ ├── Shipping.php │ │ │ ├── Tax │ │ │ │ ├── Helper.php │ │ │ │ └── Rule │ │ │ │ │ └── Builder.php │ │ │ └── Translate.php │ │ ├── Marketplace.php │ │ ├── Mysql4 │ │ │ ├── Abstract.php │ │ │ ├── Account.php │ │ │ ├── Account │ │ │ │ └── Collection.php │ │ │ ├── Amazon │ │ │ │ ├── Account.php │ │ │ │ ├── Account │ │ │ │ │ └── Collection.php │ │ │ │ ├── Item.php │ │ │ │ ├── Item │ │ │ │ │ └── Collection.php │ │ │ │ ├── Listing.php │ │ │ │ ├── Listing │ │ │ │ │ ├── Auto │ │ │ │ │ │ └── Category │ │ │ │ │ │ │ ├── Group.php │ │ │ │ │ │ │ └── Group │ │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Other.php │ │ │ │ │ ├── Other │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Product.php │ │ │ │ │ └── Product │ │ │ │ │ │ ├── Collection.php │ │ │ │ │ │ ├── Variation.php │ │ │ │ │ │ └── Variation │ │ │ │ │ │ ├── Collection.php │ │ │ │ │ │ ├── Option.php │ │ │ │ │ │ └── Option │ │ │ │ │ │ └── Collection.php │ │ │ │ ├── Marketplace.php │ │ │ │ ├── Marketplace │ │ │ │ │ └── Collection.php │ │ │ │ ├── Order.php │ │ │ │ ├── Order │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Item.php │ │ │ │ │ └── Item │ │ │ │ │ │ └── Collection.php │ │ │ │ └── Template │ │ │ │ │ ├── Description.php │ │ │ │ │ ├── Description │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Definition.php │ │ │ │ │ ├── Definition │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Specific.php │ │ │ │ │ └── Specific │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── SellingFormat.php │ │ │ │ │ ├── SellingFormat │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── ShippingOverride.php │ │ │ │ │ ├── ShippingOverride │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Service.php │ │ │ │ │ └── Service │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Synchronization.php │ │ │ │ │ └── Synchronization │ │ │ │ │ └── Collection.php │ │ │ ├── Buy │ │ │ │ ├── Account.php │ │ │ │ ├── Account │ │ │ │ │ └── Collection.php │ │ │ │ ├── Item.php │ │ │ │ ├── Item │ │ │ │ │ └── Collection.php │ │ │ │ ├── Listing.php │ │ │ │ ├── Listing │ │ │ │ │ ├── Auto │ │ │ │ │ │ └── Category │ │ │ │ │ │ │ ├── Group.php │ │ │ │ │ │ │ └── Group │ │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Other.php │ │ │ │ │ ├── Other │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Product.php │ │ │ │ │ └── Product │ │ │ │ │ │ ├── Collection.php │ │ │ │ │ │ ├── Variation.php │ │ │ │ │ │ └── Variation │ │ │ │ │ │ ├── Collection.php │ │ │ │ │ │ ├── Option.php │ │ │ │ │ │ └── Option │ │ │ │ │ │ └── Collection.php │ │ │ │ ├── Marketplace.php │ │ │ │ ├── Marketplace │ │ │ │ │ └── Collection.php │ │ │ │ ├── Order.php │ │ │ │ ├── Order │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Item.php │ │ │ │ │ └── Item │ │ │ │ │ │ └── Collection.php │ │ │ │ └── Template │ │ │ │ │ ├── NewProduct.php │ │ │ │ │ ├── NewProduct │ │ │ │ │ ├── Attribute.php │ │ │ │ │ ├── Attribute │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Core.php │ │ │ │ │ └── Core │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── SellingFormat.php │ │ │ │ │ ├── SellingFormat │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Synchronization.php │ │ │ │ │ └── Synchronization │ │ │ │ │ └── Collection.php │ │ │ ├── Collection │ │ │ │ ├── Abstract.php │ │ │ │ └── Component │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── Child │ │ │ │ │ └── Abstract.php │ │ │ │ │ └── Parent │ │ │ │ │ └── Abstract.php │ │ │ ├── Component │ │ │ │ ├── Abstract.php │ │ │ │ ├── Child │ │ │ │ │ └── Abstract.php │ │ │ │ └── Parent │ │ │ │ │ └── Abstract.php │ │ │ ├── Config │ │ │ │ ├── Cache.php │ │ │ │ ├── Cache │ │ │ │ │ └── Collection.php │ │ │ │ ├── Module.php │ │ │ │ ├── Module │ │ │ │ │ └── Collection.php │ │ │ │ ├── Primary.php │ │ │ │ ├── Primary │ │ │ │ │ └── Collection.php │ │ │ │ ├── Synchronization.php │ │ │ │ └── Synchronization │ │ │ │ │ └── Collection.php │ │ │ ├── Ebay │ │ │ │ ├── Account.php │ │ │ │ ├── Account │ │ │ │ │ └── Collection.php │ │ │ │ ├── Feedback.php │ │ │ │ ├── Feedback │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Template.php │ │ │ │ │ └── Template │ │ │ │ │ │ └── Collection.php │ │ │ │ ├── Item.php │ │ │ │ ├── Item │ │ │ │ │ └── Collection.php │ │ │ │ ├── Listing.php │ │ │ │ ├── Listing │ │ │ │ │ ├── Auto │ │ │ │ │ │ └── Category │ │ │ │ │ │ │ ├── Group.php │ │ │ │ │ │ │ └── Group │ │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Other.php │ │ │ │ │ ├── Other │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Product.php │ │ │ │ │ └── Product │ │ │ │ │ │ ├── Collection.php │ │ │ │ │ │ ├── Variation.php │ │ │ │ │ │ └── Variation │ │ │ │ │ │ ├── Collection.php │ │ │ │ │ │ ├── Option.php │ │ │ │ │ │ └── Option │ │ │ │ │ │ └── Collection.php │ │ │ │ ├── Marketplace.php │ │ │ │ ├── Marketplace │ │ │ │ │ └── Collection.php │ │ │ │ ├── Motor │ │ │ │ │ ├── Epids │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Filter.php │ │ │ │ │ ├── Filter │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Group.php │ │ │ │ │ ├── Group │ │ │ │ │ │ └── Collection.php │ │ │ │ │ └── Ktypes │ │ │ │ │ │ └── Collection.php │ │ │ │ ├── Order.php │ │ │ │ ├── Order │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── ExternalTransaction.php │ │ │ │ │ ├── ExternalTransaction │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Item.php │ │ │ │ │ └── Item │ │ │ │ │ │ └── Collection.php │ │ │ │ └── Template │ │ │ │ │ ├── Category.php │ │ │ │ │ ├── Category │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Specific.php │ │ │ │ │ └── Specific │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Description.php │ │ │ │ │ ├── Description │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── OtherCategory.php │ │ │ │ │ ├── OtherCategory │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Payment │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Service.php │ │ │ │ │ └── Service │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Return.php │ │ │ │ │ ├── Return │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── SellingFormat.php │ │ │ │ │ ├── SellingFormat │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Shipping.php │ │ │ │ │ ├── Shipping │ │ │ │ │ ├── Calculated.php │ │ │ │ │ ├── Calculated │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Service.php │ │ │ │ │ └── Service │ │ │ │ │ │ └── Collection.php │ │ │ │ │ ├── Synchronization.php │ │ │ │ │ └── Synchronization │ │ │ │ │ └── Collection.php │ │ │ ├── Listing.php │ │ │ ├── Listing │ │ │ │ ├── Auto │ │ │ │ │ ├── Category.php │ │ │ │ │ └── Category │ │ │ │ │ │ ├── Collection.php │ │ │ │ │ │ ├── Group.php │ │ │ │ │ │ └── Group │ │ │ │ │ │ └── Collection.php │ │ │ │ ├── Collection.php │ │ │ │ ├── Log.php │ │ │ │ ├── Log │ │ │ │ │ └── Collection.php │ │ │ │ ├── Other.php │ │ │ │ ├── Other │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Log.php │ │ │ │ │ └── Log │ │ │ │ │ │ └── Collection.php │ │ │ │ ├── Product.php │ │ │ │ └── Product │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Variation.php │ │ │ │ │ └── Variation │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Option.php │ │ │ │ │ └── Option │ │ │ │ │ └── Collection.php │ │ │ ├── LockItem.php │ │ │ ├── LockItem │ │ │ │ └── Collection.php │ │ │ ├── LockedObject.php │ │ │ ├── LockedObject │ │ │ │ └── Collection.php │ │ │ ├── Log │ │ │ │ ├── System.php │ │ │ │ └── System │ │ │ │ │ └── Collection.php │ │ │ ├── Magento │ │ │ │ └── Product │ │ │ │ │ └── Collection.php │ │ │ ├── Marketplace.php │ │ │ ├── Marketplace │ │ │ │ └── Collection.php │ │ │ ├── OperationHistory.php │ │ │ ├── OperationHistory │ │ │ │ └── Collection.php │ │ │ ├── Order.php │ │ │ ├── Order │ │ │ │ ├── Change.php │ │ │ │ ├── Change │ │ │ │ │ └── Collection.php │ │ │ │ ├── Collection.php │ │ │ │ ├── Item.php │ │ │ │ ├── Item │ │ │ │ │ └── Collection.php │ │ │ │ ├── Log.php │ │ │ │ ├── Log │ │ │ │ │ └── Collection.php │ │ │ │ ├── Matching.php │ │ │ │ └── Matching │ │ │ │ │ └── Collection.php │ │ │ ├── Processing │ │ │ │ ├── Request.php │ │ │ │ └── Request │ │ │ │ │ └── Collection.php │ │ │ ├── ProductChange.php │ │ │ ├── ProductChange │ │ │ │ └── Collection.php │ │ │ ├── Registry.php │ │ │ ├── Registry │ │ │ │ └── Collection.php │ │ │ ├── StopQueue.php │ │ │ ├── StopQueue │ │ │ │ └── Collection.php │ │ │ ├── Synchronization │ │ │ │ ├── Log.php │ │ │ │ └── Log │ │ │ │ │ └── Collection.php │ │ │ ├── Template │ │ │ │ ├── Description.php │ │ │ │ ├── Description │ │ │ │ │ └── Collection.php │ │ │ │ ├── SellingFormat.php │ │ │ │ ├── SellingFormat │ │ │ │ │ └── Collection.php │ │ │ │ ├── Synchronization.php │ │ │ │ └── Synchronization │ │ │ │ │ └── Collection.php │ │ │ ├── Wizard.php │ │ │ └── Wizard │ │ │ │ └── Collection.php │ │ ├── Observer │ │ │ ├── Abstract.php │ │ │ ├── Amazon │ │ │ │ ├── Order.php │ │ │ │ └── Order │ │ │ │ │ └── Item.php │ │ │ ├── Buy │ │ │ │ └── Order │ │ │ │ │ └── Item.php │ │ │ ├── Category.php │ │ │ ├── CreditMemo.php │ │ │ ├── Dispatcher.php │ │ │ ├── Ebay │ │ │ │ └── Order │ │ │ │ │ └── Item.php │ │ │ ├── Indexes │ │ │ │ ├── Disable.php │ │ │ │ └── Enable.php │ │ │ ├── Invoice.php │ │ │ ├── Magento │ │ │ │ └── Configuration.php │ │ │ ├── Order.php │ │ │ ├── Order │ │ │ │ ├── Quote.php │ │ │ │ └── View.php │ │ │ ├── Product │ │ │ │ ├── Abstract.php │ │ │ │ ├── AddUpdate │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── After.php │ │ │ │ │ ├── Before.php │ │ │ │ │ └── Before │ │ │ │ │ │ └── Proxy.php │ │ │ │ ├── Attribute │ │ │ │ │ └── Update │ │ │ │ │ │ └── Before.php │ │ │ │ └── Delete.php │ │ │ ├── Shipment.php │ │ │ ├── Shipment │ │ │ │ ├── Track.php │ │ │ │ └── View │ │ │ │ │ ├── After.php │ │ │ │ │ └── Before.php │ │ │ └── StockItem.php │ │ ├── OperationHistory.php │ │ ├── Order.php │ │ ├── Order │ │ │ ├── Change.php │ │ │ ├── DuplicateException.php │ │ │ ├── Item.php │ │ │ ├── Item │ │ │ │ ├── OptionsFinder.php │ │ │ │ └── Proxy.php │ │ │ ├── Log.php │ │ │ ├── Matching.php │ │ │ ├── Proxy.php │ │ │ ├── Reserve.php │ │ │ ├── Shipment │ │ │ │ └── Handler.php │ │ │ └── ShippingAddress.php │ │ ├── Processing │ │ │ └── Request.php │ │ ├── ProductChange.php │ │ ├── PublicServices │ │ │ ├── Magmi │ │ │ │ ├── conf │ │ │ │ │ └── plugins.conf │ │ │ │ └── plugins │ │ │ │ │ └── extra │ │ │ │ │ └── itemprocessors │ │ │ │ │ └── EssM2ePro │ │ │ │ │ └── M2eProChangesCatcher.php │ │ │ └── Product │ │ │ │ ├── ObjectChange.php │ │ │ │ └── SqlChange.php │ │ ├── Registry.php │ │ ├── Servicing │ │ │ ├── Dispatcher.php │ │ │ ├── Task.php │ │ │ └── Task │ │ │ │ ├── Backups.php │ │ │ │ ├── Backups │ │ │ │ └── Manager.php │ │ │ │ ├── Cron.php │ │ │ │ ├── Exceptions.php │ │ │ │ ├── License.php │ │ │ │ ├── Marketplaces.php │ │ │ │ ├── Messages.php │ │ │ │ ├── Settings.php │ │ │ │ └── Statistic.php │ │ ├── StopQueue.php │ │ ├── Synchronization │ │ │ ├── Dispatcher.php │ │ │ ├── LockItem.php │ │ │ ├── Log.php │ │ │ ├── OperationHistory.php │ │ │ ├── Task.php │ │ │ ├── Task │ │ │ │ ├── Abstract.php │ │ │ │ ├── Defaults.php │ │ │ │ └── Defaults │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── AddedProducts.php │ │ │ │ │ ├── DeletedProducts.php │ │ │ │ │ ├── Inspector.php │ │ │ │ │ ├── Inspector │ │ │ │ │ └── ProductChanges │ │ │ │ │ │ └── Circle.php │ │ │ │ │ ├── Processing.php │ │ │ │ │ └── StopQueue.php │ │ │ └── Templates │ │ │ │ ├── Changes.php │ │ │ │ ├── Inspector.php │ │ │ │ └── Runner.php │ │ ├── Template │ │ │ ├── Description.php │ │ │ ├── SellingFormat.php │ │ │ └── Synchronization.php │ │ ├── Upgrade │ │ │ ├── Migration │ │ │ │ ├── TODO │ │ │ │ ├── ToVersion6.php │ │ │ │ ├── ToVersion611.php │ │ │ │ ├── ToVersion611 │ │ │ │ │ ├── ConfigData.php │ │ │ │ │ ├── Logs.php │ │ │ │ │ ├── OrdersData.php │ │ │ │ │ └── Processing.php │ │ │ │ ├── ToVersion630.php │ │ │ │ └── ToVersion630 │ │ │ │ │ ├── AutoAction.php │ │ │ │ │ ├── DescriptionTemplate.php │ │ │ │ │ ├── General.php │ │ │ │ │ ├── Listing.php │ │ │ │ │ ├── ListingProduct.php │ │ │ │ │ ├── Marketplace.php │ │ │ │ │ └── Processing.php │ │ │ ├── Modifier │ │ │ │ ├── Abstract.php │ │ │ │ ├── Config.php │ │ │ │ ├── Config │ │ │ │ │ └── Entity.php │ │ │ │ └── Table.php │ │ │ ├── MySqlSetup.php │ │ │ └── Tables.php │ │ ├── VariablesDir.php │ │ ├── Wizard.php │ │ └── Wizard │ │ │ ├── Amazon.php │ │ │ ├── AmazonShippingOverridePolicy.php │ │ │ ├── Buy.php │ │ │ ├── EbayProductDetails.php │ │ │ ├── FullAmazonCategories.php │ │ │ ├── InstallationCommon.php │ │ │ ├── InstallationEbay.php │ │ │ ├── MigrationNewAmazon.php │ │ │ ├── MigrationToV6.php │ │ │ └── RemovedPlay.php │ │ ├── controllers │ │ ├── Adminhtml │ │ │ ├── Common │ │ │ │ ├── AccountController.php │ │ │ │ ├── Amazon │ │ │ │ │ ├── Account │ │ │ │ │ │ └── RepricingController.php │ │ │ │ │ ├── AccountController.php │ │ │ │ │ ├── Listing │ │ │ │ │ │ ├── OtherController.php │ │ │ │ │ │ ├── ProductAddController.php │ │ │ │ │ │ ├── RepricingController.php │ │ │ │ │ │ └── Variation │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── ManageController.php │ │ │ │ │ ├── ListingController.php │ │ │ │ │ ├── Order │ │ │ │ │ │ └── MerchantFulfillmentController.php │ │ │ │ │ ├── OrderController.php │ │ │ │ │ └── Template │ │ │ │ │ │ ├── DescriptionController.php │ │ │ │ │ │ ├── SellingFormatController.php │ │ │ │ │ │ ├── ShippingOverrideController.php │ │ │ │ │ │ └── SynchronizationController.php │ │ │ │ ├── Buy │ │ │ │ │ ├── AccountController.php │ │ │ │ │ ├── Listing │ │ │ │ │ │ └── OtherController.php │ │ │ │ │ ├── ListingController.php │ │ │ │ │ ├── OrderController.php │ │ │ │ │ └── Template │ │ │ │ │ │ ├── NewProductController.php │ │ │ │ │ │ ├── SellingFormatController.php │ │ │ │ │ │ └── SynchronizationController.php │ │ │ │ ├── ConfigurationController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── Listing │ │ │ │ │ ├── AutoActionController.php │ │ │ │ │ ├── CreateController.php │ │ │ │ │ ├── OtherController.php │ │ │ │ │ └── ProductAddController.php │ │ │ │ ├── ListingController.php │ │ │ │ ├── LogController.php │ │ │ │ ├── MarketplaceController.php │ │ │ │ ├── OrderController.php │ │ │ │ ├── SynchronizationController.php │ │ │ │ ├── Template │ │ │ │ │ ├── SellingFormatController.php │ │ │ │ │ └── SynchronizationController.php │ │ │ │ └── TemplateController.php │ │ │ ├── Configuration │ │ │ │ ├── ComponentsController.php │ │ │ │ ├── LicenseController.php │ │ │ │ ├── LogsClearingController.php │ │ │ │ └── SettingsController.php │ │ │ ├── Development │ │ │ │ ├── DatabaseController.php │ │ │ │ ├── InspectionController.php │ │ │ │ ├── Module │ │ │ │ │ ├── IntegrationController.php │ │ │ │ │ ├── ModuleController.php │ │ │ │ │ └── SynchronizationController.php │ │ │ │ └── Tools │ │ │ │ │ ├── AdditionalController.php │ │ │ │ │ ├── M2ePro │ │ │ │ │ ├── GeneralController.php │ │ │ │ │ └── InstallController.php │ │ │ │ │ └── MagentoController.php │ │ │ ├── DevelopmentController.php │ │ │ ├── Ebay │ │ │ │ ├── AccountController.php │ │ │ │ ├── CategoryController.php │ │ │ │ ├── ConfigurationController.php │ │ │ │ ├── FeedbackController.php │ │ │ │ ├── GeneralController.php │ │ │ │ ├── Listing │ │ │ │ │ ├── AutoActionController.php │ │ │ │ │ ├── CategorySettingsController.php │ │ │ │ │ ├── CreateController.php │ │ │ │ │ ├── MovingController.php │ │ │ │ │ ├── Other │ │ │ │ │ │ ├── MovingController.php │ │ │ │ │ │ └── SynchronizationController.php │ │ │ │ │ ├── OtherController.php │ │ │ │ │ ├── ProductAddController.php │ │ │ │ │ ├── Settings │ │ │ │ │ │ └── MovingController.php │ │ │ │ │ ├── TransferringController.php │ │ │ │ │ └── Variation │ │ │ │ │ │ └── Product │ │ │ │ │ │ └── ManageController.php │ │ │ │ ├── ListingController.php │ │ │ │ ├── LogController.php │ │ │ │ ├── MarketplaceController.php │ │ │ │ ├── MotorController.php │ │ │ │ ├── OrderController.php │ │ │ │ ├── SynchronizationController.php │ │ │ │ ├── Template │ │ │ │ │ ├── DescriptionController.php │ │ │ │ │ ├── SellingFormatController.php │ │ │ │ │ └── ShippingController.php │ │ │ │ └── TemplateController.php │ │ │ ├── GeneralController.php │ │ │ ├── Listing │ │ │ │ ├── MovingController.php │ │ │ │ ├── Other │ │ │ │ │ ├── MappingController.php │ │ │ │ │ └── MovingController.php │ │ │ │ └── OtherController.php │ │ │ ├── ListingController.php │ │ │ ├── OrderController.php │ │ │ ├── SupportController.php │ │ │ ├── TemplateController.php │ │ │ └── Wizard │ │ │ │ ├── AmazonController.php │ │ │ │ ├── AmazonShippingOverridePolicyController.php │ │ │ │ ├── BuyController.php │ │ │ │ ├── EbayProductDetailsController.php │ │ │ │ ├── FullAmazonCategoriesController.php │ │ │ │ ├── InstallationCommonController.php │ │ │ │ ├── InstallationEbayController.php │ │ │ │ ├── MigrationNewAmazonController.php │ │ │ │ ├── MigrationToV6Controller.php │ │ │ │ └── RemovedPlayController.php │ │ ├── CronController.php │ │ └── IndexController.php │ │ ├── etc │ │ ├── config.xml │ │ └── system.xml │ │ └── sql │ │ └── M2ePro_setup │ │ ├── mysql4-install-6.3.9.php │ │ ├── mysql4-upgrade-4.1.1-4.2.0.php │ │ ├── mysql4-upgrade-4.2.0-4.2.1.php │ │ ├── mysql4-upgrade-4.2.2-4.2.3.php │ │ ├── mysql4-upgrade-4.2.4-4.2.5.php │ │ ├── mysql4-upgrade-4.2.5-4.2.6.php │ │ ├── mysql4-upgrade-4.2.6-4.2.7.php │ │ ├── mysql4-upgrade-4.2.7-4.2.8.php │ │ ├── mysql4-upgrade-4.2.8-4.2.9.php │ │ ├── mysql4-upgrade-4.2.9-5.0.0.php │ │ ├── mysql4-upgrade-5.0.0-5.0.1.php │ │ ├── mysql4-upgrade-5.0.1-5.0.2.php │ │ ├── mysql4-upgrade-5.0.2-5.0.3.php │ │ ├── mysql4-upgrade-5.0.3-5.0.4.php │ │ ├── mysql4-upgrade-5.0.4-5.0.5.php │ │ ├── mysql4-upgrade-5.0.6-5.0.7.php │ │ ├── mysql4-upgrade-5.0.7-5.0.8.php │ │ ├── mysql4-upgrade-5.0.9-5.1.0.php │ │ ├── mysql4-upgrade-5.1.0-5.1.1.php │ │ ├── mysql4-upgrade-5.1.1-5.2.0.php │ │ ├── mysql4-upgrade-5.2.0-5.2.1.php │ │ ├── mysql4-upgrade-5.2.2-5.2.3.php │ │ ├── mysql4-upgrade-5.2.5-6.0.0.php │ │ ├── mysql4-upgrade-6.0.0-6.0.1.php │ │ ├── mysql4-upgrade-6.0.1-6.0.2.php │ │ ├── mysql4-upgrade-6.0.2-6.0.3.php │ │ ├── mysql4-upgrade-6.0.3-6.0.4.php │ │ ├── mysql4-upgrade-6.0.4-6.0.5.php │ │ ├── mysql4-upgrade-6.0.5-6.0.6.php │ │ ├── mysql4-upgrade-6.0.6-6.0.7.php │ │ ├── mysql4-upgrade-6.0.7-6.0.8.php │ │ ├── mysql4-upgrade-6.0.8-6.0.9.php │ │ ├── mysql4-upgrade-6.0.9-6.1.0.php │ │ ├── mysql4-upgrade-6.1.0-6.1.1.php │ │ ├── mysql4-upgrade-6.1.1-6.1.2.php │ │ ├── mysql4-upgrade-6.1.4-6.1.5.php │ │ ├── mysql4-upgrade-6.1.5-6.1.6.php │ │ ├── mysql4-upgrade-6.1.6-6.1.7.php │ │ ├── mysql4-upgrade-6.1.8-6.1.9.php │ │ ├── mysql4-upgrade-6.1.9-6.1.9.1.php │ │ ├── mysql4-upgrade-6.1.9.1-6.2.0.php │ │ ├── mysql4-upgrade-6.2.0-6.2.1.php │ │ ├── mysql4-upgrade-6.2.1-6.2.2.php │ │ ├── mysql4-upgrade-6.2.2-6.2.3.php │ │ ├── mysql4-upgrade-6.2.3-6.2.4.php │ │ ├── mysql4-upgrade-6.2.4-6.2.4.1.php │ │ ├── mysql4-upgrade-6.2.4.2-6.2.4.3.php │ │ ├── mysql4-upgrade-6.2.4.3-6.2.4.4.php │ │ ├── mysql4-upgrade-6.2.4.4-6.2.4.5.php │ │ ├── mysql4-upgrade-6.2.4.5-6.3.0.php │ │ ├── mysql4-upgrade-6.3.0-6.3.1.php │ │ ├── mysql4-upgrade-6.3.1-6.3.2.php │ │ ├── mysql4-upgrade-6.3.2-6.3.3.php │ │ ├── mysql4-upgrade-6.3.3-6.3.4.php │ │ ├── mysql4-upgrade-6.3.4-6.3.5.php │ │ ├── mysql4-upgrade-6.3.5-6.3.6.php │ │ ├── mysql4-upgrade-6.3.6-6.3.7.php │ │ ├── mysql4-upgrade-6.3.7-6.3.8.php │ │ ├── mysql4-upgrade-6.3.8-6.3.9.php │ │ └── mysql4-upgrade-6.3.9-6.4.0.php ├── design │ └── adminhtml │ │ └── default │ │ └── default │ │ ├── layout │ │ └── M2ePro.xml │ │ └── template │ │ └── M2ePro │ │ ├── common │ │ ├── account │ │ │ ├── help.phtml │ │ │ └── switcher.phtml │ │ ├── amazon │ │ │ ├── account │ │ │ │ └── tabs │ │ │ │ │ ├── general.phtml │ │ │ │ │ ├── listing_other.phtml │ │ │ │ │ ├── order.phtml │ │ │ │ │ └── repricing.phtml │ │ │ ├── listing │ │ │ │ ├── add.phtml │ │ │ │ ├── add │ │ │ │ │ ├── new_asin.phtml │ │ │ │ │ ├── review.phtml │ │ │ │ │ ├── search_asin │ │ │ │ │ │ ├── help.phtml │ │ │ │ │ │ ├── manual │ │ │ │ │ │ │ └── skip_popup.phtml │ │ │ │ │ │ ├── new_asin_popup.phtml │ │ │ │ │ │ ├── not_completed.phtml │ │ │ │ │ │ └── search_settings.phtml │ │ │ │ │ └── tabs │ │ │ │ │ │ ├── general.phtml │ │ │ │ │ │ ├── search.phtml │ │ │ │ │ │ └── selling.phtml │ │ │ │ ├── auto_action │ │ │ │ │ └── mode │ │ │ │ │ │ ├── category │ │ │ │ │ │ └── form.phtml │ │ │ │ │ │ ├── global.phtml │ │ │ │ │ │ └── website.phtml │ │ │ │ ├── product │ │ │ │ │ └── help.phtml │ │ │ │ ├── product_search │ │ │ │ │ ├── main.phtml │ │ │ │ │ ├── menu.phtml │ │ │ │ │ └── suggested_asin_grid_help.phtml │ │ │ │ ├── template │ │ │ │ │ └── shipping_override │ │ │ │ │ │ └── main.phtml │ │ │ │ ├── template_description │ │ │ │ │ └── main.phtml │ │ │ │ ├── variation │ │ │ │ │ └── product │ │ │ │ │ │ ├── manage │ │ │ │ │ │ └── tabs │ │ │ │ │ │ │ ├── settings.phtml │ │ │ │ │ │ │ ├── variations.phtml │ │ │ │ │ │ │ ├── variations │ │ │ │ │ │ │ ├── child │ │ │ │ │ │ │ │ └── form.phtml │ │ │ │ │ │ │ └── help.phtml │ │ │ │ │ │ │ └── vocabulary.phtml │ │ │ │ │ │ ├── switch_to_individual_popup.phtml │ │ │ │ │ │ ├── switch_to_parent_popup.phtml │ │ │ │ │ │ ├── vocabulary_attributes_popup.phtml │ │ │ │ │ │ └── vocabulary_options_popup.phtml │ │ │ │ └── view │ │ │ │ │ └── help.phtml │ │ │ ├── marketplace.phtml │ │ │ ├── order.phtml │ │ │ ├── order │ │ │ │ ├── edit │ │ │ │ │ └── shipping_address.phtml │ │ │ │ ├── merchant_fulfillment.phtml │ │ │ │ └── merchant_fulfillment │ │ │ │ │ ├── breadcrumb.phtml │ │ │ │ │ ├── configuration.phtml │ │ │ │ │ ├── information.phtml │ │ │ │ │ ├── magento │ │ │ │ │ └── shipment.phtml │ │ │ │ │ ├── message.phtml │ │ │ │ │ └── shipping_services.phtml │ │ │ ├── synchronization.phtml │ │ │ └── template │ │ │ │ ├── description │ │ │ │ ├── category │ │ │ │ │ ├── chooser │ │ │ │ │ │ ├── edit.phtml │ │ │ │ │ │ └── tabs │ │ │ │ │ │ │ ├── browse.phtml │ │ │ │ │ │ │ ├── recent.phtml │ │ │ │ │ │ │ └── search.phtml │ │ │ │ │ └── specific │ │ │ │ │ │ └── add.phtml │ │ │ │ └── tabs │ │ │ │ │ ├── definition.phtml │ │ │ │ │ ├── general.phtml │ │ │ │ │ └── specifics.phtml │ │ │ │ ├── selling_format │ │ │ │ └── form.phtml │ │ │ │ ├── shippingOverride │ │ │ │ └── form.phtml │ │ │ │ └── synchronization │ │ │ │ ├── list.phtml │ │ │ │ ├── relist.phtml │ │ │ │ ├── revise.phtml │ │ │ │ └── stop.phtml │ │ ├── buy │ │ │ ├── account │ │ │ │ └── tabs │ │ │ │ │ ├── general.phtml │ │ │ │ │ ├── listing_other.phtml │ │ │ │ │ └── order.phtml │ │ │ ├── listing │ │ │ │ ├── add │ │ │ │ │ └── tabs │ │ │ │ │ │ ├── general.phtml │ │ │ │ │ │ ├── search.phtml │ │ │ │ │ │ └── selling.phtml │ │ │ │ ├── product │ │ │ │ │ └── help.phtml │ │ │ │ ├── product_search │ │ │ │ │ ├── main.phtml │ │ │ │ │ └── menu.phtml │ │ │ │ └── view │ │ │ │ │ └── help.phtml │ │ │ ├── order.phtml │ │ │ ├── order │ │ │ │ └── edit │ │ │ │ │ └── shipping_address.phtml │ │ │ ├── synchronization.phtml │ │ │ └── template │ │ │ │ ├── newProduct │ │ │ │ ├── help.phtml │ │ │ │ └── tabs │ │ │ │ │ ├── attributes.phtml │ │ │ │ │ ├── description.phtml │ │ │ │ │ └── general.phtml │ │ │ │ ├── selling_format │ │ │ │ └── form.phtml │ │ │ │ └── synchronization │ │ │ │ ├── list.phtml │ │ │ │ ├── relist.phtml │ │ │ │ ├── revise.phtml │ │ │ │ └── stop.phtml │ │ ├── component │ │ │ ├── container.phtml │ │ │ └── tabs │ │ │ │ └── linktabs.phtml │ │ ├── listing │ │ │ ├── add.phtml │ │ │ ├── add │ │ │ │ ├── main.phtml │ │ │ │ ├── review.phtml │ │ │ │ └── source_mode │ │ │ │ │ └── source_mode.phtml │ │ │ ├── breadcrumb.phtml │ │ │ ├── category │ │ │ │ └── tree.phtml │ │ │ ├── help.phtml │ │ │ ├── log │ │ │ │ └── help.phtml │ │ │ ├── other │ │ │ │ ├── help.phtml │ │ │ │ └── log │ │ │ │ │ └── help.phtml │ │ │ ├── product │ │ │ │ ├── summary │ │ │ │ │ └── help.phtml │ │ │ │ └── variation │ │ │ │ │ ├── edit.phtml │ │ │ │ │ └── manage.phtml │ │ │ └── search │ │ │ │ └── help.phtml │ │ ├── log │ │ │ └── log.phtml │ │ ├── manageListings.phtml │ │ ├── marketplace │ │ │ ├── form.phtml │ │ │ └── help.phtml │ │ ├── order │ │ │ ├── help.phtml │ │ │ └── log │ │ │ │ └── help.phtml │ │ ├── rakuten │ │ │ └── marketplace.phtml │ │ ├── synchronization │ │ │ ├── form.phtml │ │ │ ├── help.phtml │ │ │ └── log │ │ │ │ └── help.phtml │ │ └── template │ │ │ ├── help.phtml │ │ │ └── tabs.phtml │ │ ├── configuration │ │ ├── components.phtml │ │ ├── license.phtml │ │ ├── linker.phtml │ │ ├── logsClearing.phtml │ │ └── settings.phtml │ │ ├── development.phtml │ │ ├── development │ │ ├── info │ │ │ ├── actual.phtml │ │ │ ├── license │ │ │ │ ├── component.phtml │ │ │ │ └── information.phtml │ │ │ ├── location.phtml │ │ │ ├── magento.phtml │ │ │ ├── module.phtml │ │ │ ├── mysql │ │ │ │ ├── info.phtml │ │ │ │ ├── integration.phtml │ │ │ │ ├── module.phtml │ │ │ │ └── summary.phtml │ │ │ ├── php.phtml │ │ │ └── system.phtml │ │ ├── inspection │ │ │ ├── caches.phtml │ │ │ ├── conflictedModules.phtml │ │ │ ├── cron.phtml │ │ │ ├── databaseBrokenTables.phtml │ │ │ ├── installation.phtml │ │ │ ├── magento.phtml │ │ │ ├── otherIssues.phtml │ │ │ └── requirements.phtml │ │ └── tabs │ │ │ ├── about.phtml │ │ │ ├── command │ │ │ └── group.phtml │ │ │ ├── database │ │ │ └── table_cells_popup.phtml │ │ │ ├── debug.phtml │ │ │ ├── inspection.phtml │ │ │ ├── module.phtml │ │ │ ├── summary.phtml │ │ │ └── tools.phtml │ │ ├── ebay │ │ ├── account │ │ │ ├── help.phtml │ │ │ └── tabs │ │ │ │ ├── feedback.phtml │ │ │ │ ├── general.phtml │ │ │ │ ├── listing_other.phtml │ │ │ │ ├── order.phtml │ │ │ │ └── store.phtml │ │ ├── configuration.phtml │ │ ├── configuration │ │ │ ├── category │ │ │ │ ├── chooser.phtml │ │ │ │ ├── help.phtml │ │ │ │ ├── primary.phtml │ │ │ │ └── primary │ │ │ │ │ ├── help.phtml │ │ │ │ │ └── specific.phtml │ │ │ └── general │ │ │ │ ├── form.phtml │ │ │ │ └── help.phtml │ │ ├── feedback │ │ │ ├── form.phtml │ │ │ └── help.phtml │ │ ├── listing │ │ │ ├── account_marketplace.phtml │ │ │ ├── auto_action │ │ │ │ ├── mode.phtml │ │ │ │ └── mode │ │ │ │ │ ├── breadcrumb.phtml │ │ │ │ │ ├── category.phtml │ │ │ │ │ ├── category │ │ │ │ │ └── form.phtml │ │ │ │ │ ├── global.phtml │ │ │ │ │ └── website.phtml │ │ │ ├── bids │ │ │ │ └── help.phtml │ │ │ ├── breadcrumb.phtml │ │ │ ├── category │ │ │ │ ├── breadcrumb.phtml │ │ │ │ ├── chooser.phtml │ │ │ │ ├── chooser │ │ │ │ │ ├── edit.phtml │ │ │ │ │ ├── tabs │ │ │ │ │ │ ├── attribute.phtml │ │ │ │ │ │ ├── browse.phtml │ │ │ │ │ │ ├── recent.phtml │ │ │ │ │ │ └── search.phtml │ │ │ │ │ └── wrapper.phtml │ │ │ │ ├── mode.phtml │ │ │ │ ├── product │ │ │ │ │ └── warning_popup.phtml │ │ │ │ ├── same │ │ │ │ │ ├── chooser.phtml │ │ │ │ │ └── specific.phtml │ │ │ │ ├── specific.phtml │ │ │ │ └── specific │ │ │ │ │ └── wrapper.phtml │ │ │ ├── help.phtml │ │ │ ├── log │ │ │ │ └── help.phtml │ │ │ ├── other │ │ │ │ ├── help.phtml │ │ │ │ ├── log │ │ │ │ │ └── help.phtml │ │ │ │ └── synchronization │ │ │ │ │ └── tabs │ │ │ │ │ ├── general.phtml │ │ │ │ │ ├── relist.phtml │ │ │ │ │ ├── revise.phtml │ │ │ │ │ └── stop.phtml │ │ │ ├── preview.phtml │ │ │ ├── product │ │ │ │ ├── help.phtml │ │ │ │ ├── review.phtml │ │ │ │ └── source_categories │ │ │ │ │ ├── summary │ │ │ │ │ └── help.phtml │ │ │ │ │ └── tree.phtml │ │ │ ├── search │ │ │ │ └── help.phtml │ │ │ ├── settings │ │ │ │ └── help.phtml │ │ │ ├── source_mode.phtml │ │ │ ├── template │ │ │ │ ├── switcher.phtml │ │ │ │ └── switcher │ │ │ │ │ └── initialization.phtml │ │ │ ├── transferring │ │ │ │ ├── breadcrumb.phtml │ │ │ │ ├── failedProducts.phtml │ │ │ │ ├── general.phtml │ │ │ │ ├── step │ │ │ │ │ ├── categories.phtml │ │ │ │ │ ├── destination.phtml │ │ │ │ │ ├── policy.phtml │ │ │ │ │ ├── translation.phtml │ │ │ │ │ └── tutorial.phtml │ │ │ │ └── translate.phtml │ │ │ ├── variation │ │ │ │ └── product │ │ │ │ │ └── manage │ │ │ │ │ ├── view.phtml │ │ │ │ │ └── view │ │ │ │ │ └── help.phtml │ │ │ └── view │ │ │ │ ├── fee │ │ │ │ ├── details.phtml │ │ │ │ ├── errors.phtml │ │ │ │ ├── obtain.phtml │ │ │ │ ├── preview.phtml │ │ │ │ └── product.phtml │ │ │ │ ├── help.phtml │ │ │ │ └── settings │ │ │ │ └── category │ │ │ │ └── specific │ │ │ │ └── wrapper.phtml │ │ ├── log.phtml │ │ ├── manageListings.phtml │ │ ├── marketplace │ │ │ ├── form.phtml │ │ │ └── help.phtml │ │ ├── motor │ │ │ ├── add.phtml │ │ │ ├── add │ │ │ │ ├── save_as_group_popup.phtml │ │ │ │ ├── set_note_popup.phtml │ │ │ │ └── tab │ │ │ │ │ └── Item │ │ │ │ │ └── filter_popup.phtml │ │ │ └── view │ │ │ │ ├── filter.phtml │ │ │ │ ├── group.phtml │ │ │ │ ├── group │ │ │ │ ├── filters.phtml │ │ │ │ └── items.phtml │ │ │ │ └── item.phtml │ │ ├── order.phtml │ │ ├── order │ │ │ ├── edit │ │ │ │ └── shipping_address.phtml │ │ │ ├── help.phtml │ │ │ ├── log │ │ │ │ └── help.phtml │ │ │ └── migration_to_v611.phtml │ │ ├── synchronization │ │ │ ├── form.phtml │ │ │ ├── help.phtml │ │ │ └── log │ │ │ │ └── help.phtml │ │ └── template │ │ │ ├── description │ │ │ ├── form │ │ │ │ └── data.phtml │ │ │ └── preview │ │ │ │ ├── body.phtml │ │ │ │ └── form.phtml │ │ │ ├── edit │ │ │ ├── general.phtml │ │ │ ├── general │ │ │ │ └── help.phtml │ │ │ ├── selling │ │ │ │ └── help.phtml │ │ │ └── synchronization │ │ │ │ └── help.phtml │ │ │ ├── help.phtml │ │ │ ├── payment │ │ │ └── form │ │ │ │ └── data.phtml │ │ │ ├── return │ │ │ └── form │ │ │ │ └── data.phtml │ │ │ ├── sellingFormat │ │ │ ├── form │ │ │ │ └── data.phtml │ │ │ └── searchCharity.phtml │ │ │ ├── shipping │ │ │ └── form │ │ │ │ └── data.phtml │ │ │ └── synchronization │ │ │ └── form │ │ │ ├── data.phtml │ │ │ └── tabs │ │ │ ├── list.phtml │ │ │ ├── relist.phtml │ │ │ ├── revise.phtml │ │ │ ├── schedule.phtml │ │ │ └── stop.phtml │ │ ├── general.phtml │ │ ├── general │ │ └── createAttribute.phtml │ │ ├── listing │ │ ├── auto_action │ │ │ ├── mode.phtml │ │ │ └── mode │ │ │ │ ├── category.phtml │ │ │ │ ├── category │ │ │ │ └── form.phtml │ │ │ │ ├── global.phtml │ │ │ │ └── website.phtml │ │ ├── category │ │ │ └── tree.phtml │ │ ├── moving │ │ │ └── failedProducts.phtml │ │ ├── other │ │ │ ├── mapping.phtml │ │ │ └── view │ │ │ │ └── header.phtml │ │ ├── product │ │ │ └── rule.phtml │ │ └── view │ │ │ ├── header.phtml │ │ │ ├── listing_switcher.phtml │ │ │ └── mode_switcher.phtml │ │ ├── log │ │ ├── errors_summary.phtml │ │ └── grid │ │ │ └── summary.phtml │ │ ├── magento │ │ ├── order │ │ │ └── payment │ │ │ │ ├── info.phtml │ │ │ │ └── pdf.phtml │ │ └── product │ │ │ └── rule.phtml │ │ ├── order │ │ ├── debug.phtml │ │ ├── general.phtml │ │ ├── item │ │ │ ├── edit.phtml │ │ │ └── product │ │ │ │ ├── mapping.phtml │ │ │ │ └── options │ │ │ │ └── mapping.phtml │ │ └── not_created_filter.phtml │ │ ├── renderer │ │ └── description │ │ │ ├── gallery.phtml │ │ │ └── image.phtml │ │ ├── requirements_popup.phtml │ │ ├── store_switcher.phtml │ │ ├── support.phtml │ │ ├── support │ │ ├── contact_form.phtml │ │ └── results.phtml │ │ ├── switcher.phtml │ │ ├── template │ │ └── messages.phtml │ │ ├── widget │ │ ├── button │ │ │ └── dropdown.phtml │ │ ├── dialog │ │ │ └── confirm.phtml │ │ ├── floating_toolbar_fixer.phtml │ │ ├── form │ │ │ └── container │ │ │ │ └── simplified.phtml │ │ └── grid │ │ │ └── container │ │ │ └── only_content.phtml │ │ └── wizard │ │ ├── amazon │ │ ├── congratulation │ │ │ └── content.phtml │ │ ├── installation │ │ │ ├── account.phtml │ │ │ ├── marketplace.phtml │ │ │ └── marketplace │ │ │ │ └── form.phtml │ │ ├── notification.phtml │ │ ├── presentation.phtml │ │ └── welcome │ │ │ └── content.phtml │ │ ├── amazonShippingOverridePolicy │ │ ├── installation │ │ │ └── marketplacesSynchronization.phtml │ │ └── notification.phtml │ │ ├── buy │ │ ├── congratulation │ │ │ └── content.phtml │ │ ├── installation │ │ │ ├── account.phtml │ │ │ ├── marketplace.phtml │ │ │ └── marketplace │ │ │ │ └── form.phtml │ │ ├── notification.phtml │ │ ├── presentation.phtml │ │ └── welcome │ │ │ └── content.phtml │ │ ├── ebayProductDetails │ │ ├── installation │ │ │ └── marketplacesSynchronization.phtml │ │ └── notification.phtml │ │ ├── fullAmazonCategories │ │ ├── installation │ │ │ └── marketplacesSynchronization.phtml │ │ └── notification.phtml │ │ ├── initialization.phtml │ │ ├── installationCommon │ │ ├── congratulation │ │ │ └── content.phtml │ │ ├── installation │ │ │ ├── description.phtml │ │ │ ├── license.phtml │ │ │ └── settings.phtml │ │ └── notification.phtml │ │ ├── installationEbay │ │ ├── installation │ │ │ ├── account.phtml │ │ │ ├── license.phtml │ │ │ ├── listing_tutorial.phtml │ │ │ ├── mode_confirmation.phtml │ │ │ ├── product_tutorial.phtml │ │ │ └── wizard_tutorial.phtml │ │ └── notification.phtml │ │ ├── migrationNewAmazon │ │ ├── installation │ │ │ ├── descriptionTemplates.phtml │ │ │ ├── information.phtml │ │ │ └── marketplacesSynchronization.phtml │ │ └── notification.phtml │ │ ├── migrationToV6 │ │ ├── breadcrumb.phtml │ │ ├── container.phtml │ │ ├── installation │ │ │ ├── intro.phtml │ │ │ ├── notifications.phtml │ │ │ ├── sellingFormatCurrencies │ │ │ │ ├── amazon.phtml │ │ │ │ ├── buy.phtml │ │ │ │ └── ebay.phtml │ │ │ └── selling_format_currencies.phtml │ │ └── notification.phtml │ │ └── removedPlay │ │ └── notification.phtml ├── etc │ └── modules │ │ └── Ess_M2ePro.xml └── locale │ ├── de_AT │ └── Ess_M2ePro.csv │ ├── de_CH │ └── Ess_M2ePro.csv │ ├── de_DE │ └── Ess_M2ePro.csv │ ├── en_GB │ └── Ess_M2ePro.csv │ ├── es_ES │ └── Ess_M2ePro.csv │ ├── fr_CA │ └── Ess_M2ePro.csv │ ├── fr_FR │ └── Ess_M2ePro.csv │ ├── it_CH │ └── Ess_M2ePro.csv │ └── it_IT │ └── Ess_M2ePro.csv ├── js └── M2ePro │ ├── ActionHandler.js │ ├── AttributeHandler.js │ ├── Common │ ├── Amazon │ │ ├── AccountHandler.js │ │ ├── Listing │ │ │ ├── ActionHandler.js │ │ │ ├── AfnQtyHandler.js │ │ │ ├── AutoActionHandler.js │ │ │ ├── ChannelSettingsHandler.js │ │ │ ├── FulfillmentHandler.js │ │ │ ├── GridHandler.js │ │ │ ├── NewAsinTemplateDescriptionGridHandler.js │ │ │ ├── Other │ │ │ │ └── GridHandler.js │ │ │ ├── ProductSearchHandler.js │ │ │ ├── ProductsFilterHandler.js │ │ │ ├── RepricingHandler.js │ │ │ ├── SearchAsinGridHandler.js │ │ │ ├── Template │ │ │ │ ├── DescriptionHandler.js │ │ │ │ └── ShippingOverrideHandler.js │ │ │ ├── VariationProductManageHandler.js │ │ │ └── VariationProductManageVariationsGridHandler.js │ │ ├── Order │ │ │ ├── MerchantFulfillment │ │ │ │ └── MagentoHandler.js │ │ │ └── MerchantFulfillmentHandler.js │ │ └── Template │ │ │ ├── Description │ │ │ ├── Category │ │ │ │ ├── ChooserHandler.js │ │ │ │ ├── Specific │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── AddSpecificRenderer.js │ │ │ │ │ │ └── GridRenderer.js │ │ │ │ │ ├── BlockRenderer.js │ │ │ │ │ ├── Dictionary.js │ │ │ │ │ ├── Grid │ │ │ │ │ │ ├── RowAttributeRenderer.js │ │ │ │ │ │ └── RowRenderer.js │ │ │ │ │ └── Renderer.js │ │ │ │ └── SpecificHandler.js │ │ │ ├── DefinitionHandler.js │ │ │ └── Handler.js │ │ │ ├── SellingFormatHandler.js │ │ │ ├── ShippingOverrideHandler.js │ │ │ └── SynchronizationHandler.js │ ├── Buy │ │ ├── AccountHandler.js │ │ ├── Listing │ │ │ ├── ChannelSettingsHandler.js │ │ │ ├── GridHandler.js │ │ │ ├── Other │ │ │ │ └── GridHandler.js │ │ │ ├── ProductSearchHandler.js │ │ │ └── ProductsFilterHandler.js │ │ └── Template │ │ │ ├── NewProduct │ │ │ ├── AttributeHandler.js │ │ │ └── Handler.js │ │ │ ├── SellingFormatHandler.js │ │ │ └── SynchronizationHandler.js │ ├── Listing.js │ └── Listing │ │ ├── AddListingHandler.js │ │ ├── Category │ │ ├── Summary │ │ │ └── GridHandler.js │ │ └── TreeHandler.js │ │ ├── GridHandler.js │ │ ├── Other │ │ └── GridHandler.js │ │ ├── Product │ │ └── VariationHandler.js │ │ └── SettingsHandler.js │ ├── Configuration │ ├── ComponentsHandler.js │ ├── General.js │ ├── LicenseHandler.js │ ├── LogClearingHandler.js │ └── SettingsHandler.js │ ├── Development │ ├── ControlPanelHandler.js │ └── DatabaseGridHandler.js │ ├── Ebay │ ├── AccountHandler.js │ ├── Configuration │ │ └── CategoryHandler.js │ ├── ConfigurationHandler.js │ ├── FeedbackHandler.js │ ├── Listing │ │ ├── AutoActionHandler.js │ │ ├── BidsHandler.js │ │ ├── Category │ │ │ ├── Category │ │ │ │ └── GridHandler.js │ │ │ ├── Chooser │ │ │ │ └── BrowseHandler.js │ │ │ ├── ChooserHandler.js │ │ │ ├── GridHandler.js │ │ │ ├── Product │ │ │ │ ├── GridHandler.js │ │ │ │ └── SuggestedSearchHandler.js │ │ │ ├── Specific │ │ │ │ └── WrapperHandler.js │ │ │ └── SpecificHandler.js │ │ ├── Ebay │ │ │ └── GridHandler.js │ │ ├── GridHandler.js │ │ ├── MarketplaceSynchProgressHandler.js │ │ ├── Other │ │ │ ├── ActionHandler.js │ │ │ ├── GridHandler.js │ │ │ └── SynchronizationHandler.js │ │ ├── Product │ │ │ └── SourceCategories │ │ │ │ └── Summary │ │ │ │ └── GridHandler.js │ │ ├── ProductAdd │ │ │ └── Settings │ │ │ │ └── GridHandler.js │ │ ├── ProductAddHandler.js │ │ ├── Settings │ │ │ └── GridHandler.js │ │ ├── Template │ │ │ └── SwitcherHandler.js │ │ ├── Transferring │ │ │ ├── ActionHandler.js │ │ │ ├── BreadcrumbHandler.js │ │ │ ├── InfoHandler.js │ │ │ ├── PaymentHandler.js │ │ │ └── TranslateHandler.js │ │ ├── TransferringHandler.js │ │ ├── Translation │ │ │ └── GridHandler.js │ │ ├── VariationProductManageHandler.js │ │ ├── VariationProductManageVariationsGridHandler.js │ │ └── ViewGridHandler.js │ ├── MarketplaceSynchProgressHandler.js │ ├── Motor │ │ ├── Add │ │ │ ├── Filter │ │ │ │ └── GridHandler.js │ │ │ ├── Group │ │ │ │ └── GridHandler.js │ │ │ └── Item │ │ │ │ └── GridHandler.js │ │ └── View │ │ │ ├── Filter │ │ │ └── GridHandler.js │ │ │ ├── Group │ │ │ └── GridHandler.js │ │ │ └── Item │ │ │ └── GridHandler.js │ ├── MotorsHandler.js │ ├── Order │ │ └── MigrationToV611Handler.js │ └── Template │ │ ├── DescriptionHandler.js │ │ ├── EditHandler.js │ │ ├── PaymentHandler.js │ │ ├── ReturnHandler.js │ │ ├── SellingFormatHandler.js │ │ ├── ShippingHandler.js │ │ └── SynchronizationHandler.js │ ├── General │ ├── CommonHandler.js │ ├── PhpFunctions.js │ ├── PhpHandler.js │ ├── PrototypeSimulate.js │ ├── TranslatorHandler.js │ └── UrlHandler.js │ ├── GridHandler.js │ ├── Initialization.js │ ├── Listing │ ├── ActionHandler.js │ ├── AutoActionHandler.js │ ├── Category │ │ └── TreeHandler.js │ ├── EditListingTitle.js │ ├── GridHandler.js │ ├── MovingHandler.js │ ├── Other │ │ ├── AutoMappingHandler.js │ │ ├── GridHandler.js │ │ ├── MappingHandler.js │ │ ├── RemovingHandler.js │ │ └── UnmappingHandler.js │ └── ProductGridHandler.js │ ├── LogHandler.js │ ├── MarketplaceHandler.js │ ├── Order │ ├── Debug.js │ ├── Edit │ │ ├── ItemHandler.js │ │ └── ShippingAddressHandler.js │ └── Handler.js │ ├── Plugin │ ├── ActionColumn.js │ ├── AreaWrapper.js │ ├── AutoComplete.js │ ├── BlockNotice.js │ ├── DropDown.js │ ├── Magento │ │ ├── AttributeCreator.js │ │ ├── Block.js │ │ ├── FieldTip.js │ │ └── Message.js │ └── ProgressBar.js │ ├── SupportHandler.js │ ├── SynchProgressHandler.js │ ├── SynchronizationHandler.js │ ├── TemplateHandler.js │ ├── VideoTutorialHandler.js │ ├── Wizard │ ├── Amazon │ │ ├── CustomHandler.js │ │ └── MarketplaceHandler.js │ ├── AmazonShippingOverridePolicy.js │ ├── Buy │ │ └── MarketplaceHandler.js │ ├── EbayProductDetails.js │ ├── FullAmazonCategories.js │ ├── InstallationCommon.js │ ├── InstallationEbay.js │ └── MigrationNewAmazonHandler.js │ └── WizardHandler.js └── skin └── adminhtml └── default ├── default └── M2ePro │ ├── css │ ├── Plugin │ │ ├── AreaWrapper.css │ │ ├── AutoComplete.css │ │ ├── BlockNotice.css │ │ ├── DropDown.css │ │ └── ProgressBar.css │ └── main.css │ └── images │ ├── add.png │ ├── amazon-video-thumbnail.png │ ├── buy-video-thumbnail.png │ ├── delete.png │ ├── drop_down_bg.png │ ├── duplicate.png │ ├── ebay-video-thumbnail.png │ ├── error.png │ ├── goto_listing.png │ ├── grid-cal.gif │ ├── help.png │ ├── i_icon.png │ ├── i_logo.png │ ├── i_notice.gif │ ├── icon-enabled.png │ ├── icon_article.png │ ├── icon_idea.png │ ├── img_echeck.png │ ├── log_statuses │ ├── error.png │ ├── normal.png │ └── warning.png │ ├── money.png │ ├── next.gif │ ├── note_background.png │ ├── note_cell_bg.gif │ ├── pencil.png │ ├── play-video-thumbnail.png │ ├── preview_no_images.png │ ├── prime.png │ ├── rule_chooser_trigger.gif │ ├── rule_component_add.gif │ ├── rule_component_apply.gif │ ├── rule_component_remove.gif │ ├── search.gif │ ├── search_statuses │ ├── error.png │ ├── list.png │ ├── processing.gif │ ├── search.png │ └── unassign.png │ ├── settings.png │ ├── tool-tip-icon.png │ ├── warning.png │ └── wizard-note.png └── enterprise └── M2ePro ├── css ├── Plugin │ ├── AreaWrapper.css │ ├── AutoComplete.css │ ├── BlockNotice.css │ ├── DropDown.css │ └── ProgressBar.css └── main.css └── images ├── add.png ├── amazon-video-thumbnail.png ├── buy-video-thumbnail.png ├── delete.png ├── drop_down_bg.png ├── duplicate.png ├── ebay-video-thumbnail.png ├── error.png ├── goto_listing.png ├── grid-cal.gif ├── help.png ├── i_icon.png ├── i_logo.png ├── i_notice.gif ├── icon-enabled.png ├── icon_article.png ├── icon_idea.png ├── img_echeck.png ├── log_statuses ├── error.png ├── normal.png └── warning.png ├── money.png ├── next.gif ├── note_background.png ├── note_cell_bg.gif ├── pencil.png ├── play-video-thumbnail.png ├── preview_no_images.png ├── prime.png ├── rule_chooser_trigger.gif ├── rule_component_add.gif ├── rule_component_apply.gif ├── rule_component_remove.gif ├── search.gif ├── search_statuses ├── error.png ├── list.png ├── processing.gif ├── search.png └── unassign.png ├── settings.png ├── tool-tip-icon.png ├── warning.png └── wizard-note.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # M2E 2 | 3 | This fantastic module is now super easy to install with Packagist/Composer. Once installed, you need to go to http://m2epro.com/ to set up an account. 4 | 5 | Copy of official M2E Pro module from http://www.magentocommerce.com/magento-connect/ebay-magento-integration-order-importing-and-stock-level-synchronization.html 6 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ess/m2e-pro", 3 | "type": "magento-module", 4 | "description": "eBay/Amazon/Rakuten/PLAY.COM Magento Integration - Order Importing and Stock Level Synchronization", 5 | "homepage": "http://www.magentocommerce.com/magento-connect/ebay-magento-integration-order-importing-and-stock-level-synchronization.html", 6 | "require": { 7 | "magento-hackathon/magento-composer-installer": "*" 8 | } 9 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Common/Account/Help.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/common/account/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Common/Buy/Listing/AutoAction/Mode/Category/Form.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/common/component/container.phtml'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Common/Listing/Help.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/common/listing/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Common/Listing/Other/Help.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/common/listing/other/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Common/Listing/Other/Log/Help.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/common/listing/other/log/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Common/Listing/Search/Help.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/common/listing/search/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Common/ManageListings/Tabs.php: -------------------------------------------------------------------------------- 1 | setTemplate('widget/tabshoriz.phtml'); 17 | } 18 | 19 | //######################################## 20 | } 21 | -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Common/Marketplace/Help.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/common/marketplace/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Common/Marketplace/Tabs.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/common/component/tabs/linktabs.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Common/Order/Help.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/common/order/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Common/Order/Log/Grid.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/common/synchronization/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Common/Synchronization/Tabs.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/common/component/tabs/linktabs.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Common/Template/Help.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/common/template/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Common/Template/SellingFormat/Help.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/common/template/sellingFormat/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Common/Template/Synchronization/Help.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/common/template/synchronization/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Development/Inspection/Abstract.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/ebay/account/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Ebay/Configuration/Category/Help.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/ebay/configuration/category/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Ebay/Configuration/General/Help.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/ebay/configuration/general/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Ebay/Listing/Other/Log/Help.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/ebay/listing/other/log/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Ebay/ManageListings/Tabs.php: -------------------------------------------------------------------------------- 1 | setTemplate('widget/tabshoriz.phtml'); 17 | } 18 | 19 | //######################################## 20 | } 21 | -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Ebay/Order/Help.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/ebay/order/help.phtml'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Ebay/Synchronization/Help.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/ebay/synchronization/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Ebay/Synchronization/Log/Help.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/ebay/synchronization/log/help.phtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Order/Item/Edit.php: -------------------------------------------------------------------------------- 1 | setTemplate('M2ePro/order/item/edit.phtml'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Renderer/Description/Abstract.php: -------------------------------------------------------------------------------- 1 | setData('area', 'adminhtml'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Support/Results.php: -------------------------------------------------------------------------------- 1 | setId('supportSearchResults'); 18 | $this->setTemplate('M2ePro/support/results.phtml'); 19 | } 20 | 21 | //######################################## 22 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Block/Adminhtml/Widget/Container.php: -------------------------------------------------------------------------------- 1 | isAllowed(Ess_M2ePro_Helper_View_Common::MENU_ROOT_NODE_NICK); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Controller/Adminhtml/Configuration/MainController.php: -------------------------------------------------------------------------------- 1 | isAllowed(Ess_M2ePro_Helper_View_Ebay::MENU_ROOT_NODE_NICK); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Amazon/Listing/Product/Variation/Manager/Type/Individual.php: -------------------------------------------------------------------------------- 1 | params['query']; 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Buy/Search/Custom/ByQuery/Responser.php: -------------------------------------------------------------------------------- 1 | params['query']; 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Buy/Synchronization/Abstract.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Account', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Account/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Account'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Account.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Account', 'account_id'); 19 | $this->_isPkAutoIncrement = false; 20 | } 21 | 22 | //######################################## 23 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Account/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Account'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Item.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Item', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Item/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Item'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Listing/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Listing'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Listing/Other/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Listing_Other'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Listing/Product/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Listing_Product'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Marketplace/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Marketplace'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Order/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Order'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Order/Item.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Order_Item', 'order_item_id'); 19 | $this->_isPkAutoIncrement = false; 20 | } 21 | 22 | //######################################## 23 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Order/Item/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Order_Item'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Template/Description/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Template_Description'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Template/Description/Definition/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Template_Description_Definition'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Template/Description/Specific.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Template_Description_Specific', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Template/Description/Specific/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Template_Description_Specific'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Template/SellingFormat/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Template_SellingFormat'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Template/ShippingOverride/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Template_ShippingOverride'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Template/ShippingOverride/Service.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Template_ShippingOverride_Service', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Template/ShippingOverride/Service/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Template_ShippingOverride_Service'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Amazon/Template/Synchronization/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Amazon_Template_Synchronization'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Account.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Account', 'account_id'); 19 | $this->_isPkAutoIncrement = false; 20 | } 21 | 22 | //######################################## 23 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Account/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Account'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Item.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Item', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Item/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Item'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Listing/Auto/Category/Group/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Listing_Auto_Category_Group'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Listing/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Listing'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Listing/Other/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Listing_Other'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Listing/Product/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Listing_Product'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Listing/Product/Variation/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Listing_Product_Variation'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Marketplace/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Marketplace'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Order/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Order'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Order/Item.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Order_Item', 'order_item_id'); 19 | $this->_isPkAutoIncrement = false; 20 | } 21 | 22 | //######################################## 23 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Order/Item/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Order_Item'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Template/NewProduct.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Template_NewProduct', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Template/NewProduct/Attribute.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Template_NewProduct_Attribute', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Template/NewProduct/Attribute/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Template_NewProduct_Attribute'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Template/NewProduct/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Template_NewProduct'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Template/NewProduct/Core.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Template_NewProduct_Core', 'template_new_product_id'); 17 | $this->_isPkAutoIncrement = false; 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Template/NewProduct/Core/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Template_NewProduct_Core'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Template/SellingFormat/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Template_SellingFormat'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Buy/Template/Synchronization/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Buy_Template_Synchronization'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Collection/Component/Abstract.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Config_Cache', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Config/Cache/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Config_Cache'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Config/Module.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Config_Module', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Config/Module/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Config_Module'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Config/Primary.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Config_Primary', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Config/Primary/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Config_Primary'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Config/Synchronization.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Config_Synchronization', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Config/Synchronization/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Config_Synchronization'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Account.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Account', 'account_id'); 19 | $this->_isPkAutoIncrement = false; 20 | } 21 | 22 | //######################################## 23 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Account/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Account'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Feedback.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Feedback', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Feedback/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Feedback'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Feedback/Template.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Feedback_Template', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Feedback/Template/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Feedback_Template'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Item.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Item', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Item/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Item'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Listing/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Listing'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Listing/Other/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Listing_Other'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Listing/Product/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Listing_Product'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Listing/Product/Variation/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Listing_Product_Variation'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Marketplace/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Marketplace'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Motor/Filter.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Motor_Filter', 'id'); 17 | } 18 | 19 | //######################################## 20 | } 21 | -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Motor/Filter/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Motor_Filter'); 18 | } 19 | 20 | //######################################## 21 | } 22 | -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Motor/Group.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Motor_Group', 'id'); 17 | } 18 | 19 | //######################################## 20 | } 21 | -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Motor/Group/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Motor_Group'); 18 | } 19 | 20 | //######################################## 21 | } 22 | -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Order/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Order'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Order/ExternalTransaction/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Order_ExternalTransaction'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Order/Item/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Order_Item'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Template/Category/Specific.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Template_Category_Specific', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Template/Category/Specific/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Template_Category_Specific'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Template/Description/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Template_Description'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Template/OtherCategory/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Template_OtherCategory'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Template/Payment/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Template_Payment'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Template/Payment/Service.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Template_Payment_Service', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Template/Payment/Service/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Template_Payment_Service'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Template/Return/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Template_Return'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Template/SellingFormat/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Template_SellingFormat'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Template/Shipping/Calculated/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Template_Shipping_Calculated'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Template/Shipping/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Template_Shipping'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Template/Shipping/Service.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Template_Shipping_Service', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Template/Shipping/Service/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Template_Shipping_Service'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Ebay/Template/Synchronization/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Ebay_Template_Synchronization'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Listing/Auto/Category.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Listing_Auto_Category', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Listing/Auto/Category/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Listing_Auto_Category'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Listing/Auto/Category/Group/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Listing_Auto_Category_Group'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Listing/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Listing'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Listing/Log.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Listing_Log', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Listing/Log/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Listing_Log'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Listing/Other/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Listing_Other'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Listing/Other/Log.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Listing_Other_Log', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Listing/Other/Log/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Listing_Other_Log'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Listing/Product/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Listing_Product'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Listing/Product/Variation/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Listing_Product_Variation'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Listing/Product/Variation/Option.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Listing_Product_Variation_Option', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/LockItem.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/LockItem', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/LockItem/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/LockItem'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/LockedObject.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/LockedObject', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/LockedObject/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/LockedObject'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Log/System.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Log_System', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Log/System/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Log_System'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Marketplace.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Marketplace', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Marketplace/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Marketplace'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/OperationHistory.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/OperationHistory', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/OperationHistory/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/OperationHistory'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Order.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Order', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Order/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Order'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Order/Item.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Order_Item', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Order/Log.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Order_Log', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Order/Log/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Order_Log'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Order/Matching.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Order_Matching', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Order/Matching/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Order_Matching'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Processing/Request.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Processing_Request', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Processing/Request/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Processing_Request'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/ProductChange.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/ProductChange', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/ProductChange/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/ProductChange'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Registry.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Registry', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Registry/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Registry'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/StopQueue.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/StopQueue', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/StopQueue/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/StopQueue'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Synchronization/Log.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Synchronization_Log', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Synchronization/Log/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Synchronization_Log'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Template/Description.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Template_Description', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Template/Description/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Template_Description'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Template/SellingFormat.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Template_SellingFormat', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Template/SellingFormat/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Template_SellingFormat'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Template/Synchronization.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Template_Synchronization', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Template/Synchronization/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Template_Synchronization'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Wizard.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Wizard', 'id'); 17 | } 18 | 19 | //######################################## 20 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Mysql4/Wizard/Collection.php: -------------------------------------------------------------------------------- 1 | _init('M2ePro/Wizard'); 18 | } 19 | 20 | //######################################## 21 | } -------------------------------------------------------------------------------- /src/app/code/community/Ess/M2ePro/Model/Order/DuplicateException.php: -------------------------------------------------------------------------------- 1 | getResponse()->setRedirect(Mage::getBaseUrl()); 16 | } 17 | 18 | //######################################## 19 | } -------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/common/amazon/listing/add.phtml: -------------------------------------------------------------------------------- 1 | getChildHtml('general'); ?> 2 | 3 |
4 | 5 | 6 | 7 | getChildHtml('content'); ?> 8 | 9 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/common/amazon/listing/product/help.phtml: -------------------------------------------------------------------------------- 1 |
2 | __('Displayed Products have the same Attribute Set as the Listing you are going to add them to.

3 | Note: A Product can be added to the Listing only once. If a Product was added to the Listing earlier, it will not be displayed. '); ?> 4 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/common/amazon/listing/product_search/suggested_asin_grid_help.phtml: -------------------------------------------------------------------------------- 1 |
2 | __('Automatic ASIN/ISBN Search was performed according to the Listing Search Settings. 3 | The results of the Search are displayed in the Grid below. You can Assign appropriate ASIN/ISBN to the selected Magento Product or "Clear Search Results".'); ?> 4 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/common/amazon/listing/variation/product/manage/tabs/variations.phtml: -------------------------------------------------------------------------------- 1 |
2 | getUrl('*/adminhtml_common_amazon_listing_variation_product_manage/viewVariationsGrid', 4 | array( 5 | 'product_id' => $this->getListingProductId(), 6 | 'filter' => $this->getRequest()->getParam('filter') 7 | ) 8 | ); 9 | ?> 10 | 11 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/common/buy/listing/product/help.phtml: -------------------------------------------------------------------------------- 1 |
2 | __('Displayed Products have the same Attribute Set as the Listing you are going to add them to.

3 | Note: A Product can be added to the Listing only once. If a Product was added to the Listing earlier, it will not be displayed. '); ?> 4 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/common/component/container.phtml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 8 | 9 |
getHeaderHtml() ?> 6 | getButtonsHtml() ?> 7 |
10 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/common/listing/add.phtml: -------------------------------------------------------------------------------- 1 | getChildHtml('general'); ?> 2 | 3 |
4 | 5 | 6 | 7 | getChildHtml('content'); ?> 8 | 9 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/common/listing/add/main.phtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/common/listing/product/summary/help.phtml: -------------------------------------------------------------------------------- 1 |
2 | __('The Quantity of chosen Products in each Category is shown in brackets. 
3 | If the Product belongs to several Categories, it is shown in each Category. And if you remove the Category with such Product it will be subtracted from each Category.'); ?> 4 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/common/log/log.phtml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 8 | 9 |
getHeaderHtml() ?> 6 | getButtonsHtml() ?> 7 |
10 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/common/manageListings.phtml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 8 | 9 |
getHeaderHtml() ?> 6 | getButtonsHtml() ?> 7 |
10 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/development/info/system.phtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | 11 | 12 | 13 | 16 | 19 | 20 | 21 |
5 | 6 | 8 | systemName; ?> 9 |
14 | 15 | 17 | systemTime; ?> 18 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/development/inspection/magento.phtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | defaultMagentoTimeZone !== 'UTC') { ?> 4 | 5 | 8 | 11 | 12 | 13 | 14 |
6 | 7 | 9 | defaultMagentoTimeZone; ?> 10 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/configuration.phtml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 8 | 9 |
getHeaderHtml() ?> 6 | getButtonsHtml() ?> 7 |
10 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/configuration/category/primary.phtml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 8 | 9 |
getHeaderHtml() ?> 6 | getButtonsHtml() ?> 7 |
10 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/configuration/general/help.phtml: -------------------------------------------------------------------------------- 1 |
2 | __( 3 | 'Choose whether you want to use M2E Pro in Simple Mode or Advanced Mode. 4 | More Settings become available if you choose Advanced Mode.

5 | More detailed information about ability to work with this Page you can find here.', 6 | Mage::helper('M2ePro/Module_Support')->getDocumentationUrl(NULL, NULL, 'x/OgAJAQ') 7 | ); ?> 8 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/listing/bids/help.phtml: -------------------------------------------------------------------------------- 1 |
2 | __(' 3 | In this section you can see the list of all Bids for your Product sorted by 4 | descending. You can see the eBay User ID, User email, the Price and a Date of Bid Creation. 5 | '); ?> 6 |
7 | -------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/listing/category/chooser/tabs/recent.phtml: -------------------------------------------------------------------------------- 1 |
2 |
3 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/listing/category/chooser/tabs/search.phtml: -------------------------------------------------------------------------------- 1 |
2 |      3 |
4 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/listing/category/chooser/wrapper.phtml: -------------------------------------------------------------------------------- 1 |
2 | getChildHtml('chooser'); ?> 3 |
4 | 5 |
6 | 7 |
8 | __('Cancel'); ?> 9 |   10 |   11 |   12 | getChildHtml('done'); ?> 13 |
14 | 15 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/listing/category/same/chooser.phtml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | 7 |
getHeaderHtml() ?>getButtonsHtml() ?>
8 |
9 | 10 | getChildHtml('view_header'); ?> 11 | 12 | getChildHtml('category_chooser'); ?> -------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/listing/log/help.phtml: -------------------------------------------------------------------------------- 1 |
2 | __('This Log contains all information about Actions, which were done on all M2E Pro Listings and their Items.

3 | More detailed information about ability to work with this Page you can find here.', 4 | Mage::helper('M2ePro/Module_Support')->getDocumentationUrl(NULL, NULL, 'x/MAAJAQ#Logs.-ListingsLog') 5 | ); ?> 6 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/listing/other/log/help.phtml: -------------------------------------------------------------------------------- 1 |
2 | __('This Log contains all information about Actions, which were done on 3rd Party Listings.

3 | More detailed information about ability to work with this Page you can find here.', 4 | Mage::helper('M2ePro/Module_Support')->getDocumentationUrl(NULL, NULL, 'x/MAAJAQ#Logs.-3rdPartyListingsLog(advancedmodeonly)') 5 | ); ?> 6 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/listing/product/help.phtml: -------------------------------------------------------------------------------- 1 |
2 | __('Displayed Products have the same Attribute Set as the Listing you are going to add them to.

3 | Note: A Product can be added to the Listing only once. If a Product was added to the Listing earlier, it will not be displayed. '); ?> 4 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/listing/product/source_categories/summary/help.phtml: -------------------------------------------------------------------------------- 1 |
2 | __('The Quantity of chosen Products in each Category is shown in brackets. 3 |
4 | If the Product belongs to several Categories, it is shown in each Category. And if you remove the Category with such Product it will be subtracted from 5 | each Category.'); ?> 6 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/listing/variation/product/manage/view.phtml: -------------------------------------------------------------------------------- 1 |
2 | getUrl('*/adminhtml_ebay_listing_variation_product_manage/viewVariationsGrid', 4 | array( 5 | 'product_id' => $this->getListingProductId(), 6 | 'filter' => $this->getRequest()->getParam('filter') 7 | ) 8 | ); 9 | ?> 10 | 11 |
12 | -------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/listing/view/fee/product.phtml: -------------------------------------------------------------------------------- 1 | 4 | 7 | getTotalFee() ?> [__('details') ?>] -------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/log.phtml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 8 | 9 |
getHeaderHtml() ?> 6 | getButtonsHtml() ?> 7 |
10 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/manageListings.phtml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 8 | 9 |
getHeaderHtml() ?> 6 | getButtonsHtml() ?> 7 |
10 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/order/log/help.phtml: -------------------------------------------------------------------------------- 1 |
2 | __('This Log contains Orders history information.

3 | More detailed information about ability to work with this Page you can find here.', 4 | Mage::helper('M2ePro/Module_Support')->getDocumentationUrl(NULL, NULL, 'x/MAAJAQ#Logs.-OrdersLog') 5 | ); ?> 6 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/ebay/template/description/preview/body.phtml: -------------------------------------------------------------------------------- 1 | getData('title'))) { ?> 2 | 3 |
4 |

escapeHtml($title); ?>

5 |
getData('description'); ?> 6 |
7 | 8 | -------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/magento/order/payment/pdf.phtml: -------------------------------------------------------------------------------- 1 | getPaymentMethod()) { ?> 2 | getPaymentMethod(); ?>{{pdf_row_separator}} 3 | 4 | 5 | getChannelOrderId()) { ?> 6 | __('Order ID') . ': ' . $this->getChannelOrderId() ?>{{pdf_row_separator}} 7 | -------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/magento/product/rule.phtml: -------------------------------------------------------------------------------- 1 | getElement(); 3 | ?> 4 | 5 |
6 |
7 | getChildrenHtml() ?> 8 |
9 |
10 | 16 | -------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/widget/button/dropdown.phtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/widget/dialog/confirm.phtml: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | __('Cancel') ?> 5 |      6 | getChildHtml('ok_button') ?> 7 |
8 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/widget/form/container/simplified.phtml: -------------------------------------------------------------------------------- 1 |
2 | getFormInitScripts() ?> 3 | getFormHtml() ?> 4 | hasFooterButtons()): ?> 5 | 8 | 9 | 12 | getFormScripts() ?> 13 | -------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/widget/grid/container/only_content.phtml: -------------------------------------------------------------------------------- 1 |
2 | getGridHtml() ?> 3 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/wizard/amazon/presentation.phtml: -------------------------------------------------------------------------------- 1 |
2 |
3 | __('Setting up Settings to be able to sell on Amazon.'); ?> 4 |
5 | 6 |
7 | getChildHtml('continue_button'); ?> 8 |
9 |
10 | -------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/wizard/amazonShippingOverridePolicy/notification.phtml: -------------------------------------------------------------------------------- 1 | getUrl("*/adminhtml_wizard_amazonShippingOverridePolicy"); 4 | 5 | ?> 6 | 7 |
8 | 9 |
10 | __( 13 | 'Please resynchronize Amazon Marketplaces Data to work with Extension. It should be updated because ability to specify Shipping Override Settings was added.', 14 | $startWizardLink 15 | ); 16 | 17 | ?> 18 |
19 | 20 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/wizard/ebayProductDetails/notification.phtml: -------------------------------------------------------------------------------- 1 | getUrl("*/adminhtml_wizard_ebayProductDetails"); 4 | 5 | ?> 6 | 7 |
8 | 9 |
10 | __( 13 | 'Please resynchronize eBay Sites Data to work with extension. It should be updated because eBay seriously changed the policy of using eBay Catalog Identifiers.', 14 | $startWizardLink 15 | ); 16 | 17 | ?> 18 |
19 | 20 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/wizard/fullAmazonCategories/notification.phtml: -------------------------------------------------------------------------------- 1 | getUrl("*/adminhtml_wizard_fullAmazonCategories"); 4 | 5 | ?> 6 | 7 |
8 | 9 |
10 | __( 13 | 'Please resynchronize Amazon Marketplaces Data to work with Extension. It should be Updated because available Amazon Categories were Added.', 14 | $startWizardLink 15 | ); 16 | 17 | ?> 18 |
19 | 20 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/wizard/migrationNewAmazon/notification.phtml: -------------------------------------------------------------------------------- 1 | getUrl("*/adminhtml_wizard_migrationNewAmazon"); 4 | 5 | ?> 6 | 7 |
8 | 9 |
10 | __( 13 | 'Click 14 | Start Configuration Wizard to start migration process to new M2E Pro Amazon generation.', 15 | $startWizardLink 16 | ); 17 | 18 | ?> 19 |
20 | 21 |
-------------------------------------------------------------------------------- /src/app/design/adminhtml/default/default/template/M2ePro/wizard/migrationToV6/container.phtml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 8 | 9 |

getHeaderText() ?>

6 | getButtonsHtml() ?> 7 |
10 |
-------------------------------------------------------------------------------- /src/app/etc/modules/Ess_M2ePro.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | true 6 | community 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/js/M2ePro/ActionHandler.js: -------------------------------------------------------------------------------- 1 | ActionHandler = Class.create(CommonHandler, { 2 | 3 | // --------------------------------------- 4 | 5 | initialize: function(gridHandler) 6 | { 7 | this.gridHandler = gridHandler; 8 | } 9 | 10 | // --------------------------------------- 11 | }); -------------------------------------------------------------------------------- /src/js/M2ePro/Common/Amazon/Listing/ActionHandler.js: -------------------------------------------------------------------------------- 1 | CommonAmazonListingActionHandler = Class.create(ListingActionHandler, { 2 | 3 | // --------------------------------------- 4 | 5 | deleteAndRemoveAction: function() 6 | { 7 | var selectedProductsParts = this.gridHandler.getSelectedItemsParts(); 8 | if (selectedProductsParts.length == 0) { 9 | return; 10 | } 11 | 12 | this.startActions( 13 | this.options.text.deleting_and_removing_selected_items_message, 14 | this.options.url.runDeleteAndRemoveProducts,selectedProductsParts 15 | ); 16 | } 17 | 18 | // --------------------------------------- 19 | }); -------------------------------------------------------------------------------- /src/js/M2ePro/Common/Amazon/Listing/Other/GridHandler.js: -------------------------------------------------------------------------------- 1 | CommonAmazonListingOtherGridHandler = Class.create(CommonListingOtherGridHandler, { 2 | 3 | // --------------------------------------- 4 | 5 | getComponent: function() 6 | { 7 | return 'amazon'; 8 | } 9 | 10 | // --------------------------------------- 11 | }); -------------------------------------------------------------------------------- /src/js/M2ePro/Common/Buy/Listing/Other/GridHandler.js: -------------------------------------------------------------------------------- 1 | CommonBuyListingOtherGridHandler = Class.create(CommonListingOtherGridHandler, { 2 | 3 | // --------------------------------------- 4 | 5 | getComponent: function() 6 | { 7 | return 'buy'; 8 | } 9 | 10 | // --------------------------------------- 11 | }); -------------------------------------------------------------------------------- /src/js/M2ePro/Common/Listing/Other/GridHandler.js: -------------------------------------------------------------------------------- 1 | CommonListingOtherGridHandler = Class.create(ListingOtherGridHandler, { 2 | 3 | // --------------------------------------- 4 | 5 | getLogViewUrl: function(rowId) 6 | { 7 | return M2ePro.url.get('adminhtml_common_log/listingOther', { 8 | id: rowId, 9 | filter: base64_encode('component_mode=' + this.getComponent()) 10 | }); 11 | } 12 | 13 | // --------------------------------------- 14 | }); -------------------------------------------------------------------------------- /src/js/M2ePro/Wizard/AmazonShippingOverridePolicy.js: -------------------------------------------------------------------------------- 1 | AmazonShippingOverridePolicy = Class.create(WizardAmazonCustomHandler, {}); 2 | -------------------------------------------------------------------------------- /src/js/M2ePro/Wizard/FullAmazonCategories.js: -------------------------------------------------------------------------------- 1 | WizardFullAmazonCategories = Class.create(WizardAmazonCustomHandler, {}); -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/css/Plugin/AreaWrapper.css: -------------------------------------------------------------------------------- 1 | /* General Styles */ 2 | /* ================================================ */ 3 | 4 | .area_wrapper { 5 | position: absolute !important; 6 | z-index: 1000 !important; 7 | opacity: 0.4 !important; 8 | filter: alpha(opacity=40) !important; 9 | background-color: #f8fcfd !important; 10 | 11 | width: 100%; 12 | height: 100%; 13 | left: 0px; 14 | top: 0px; 15 | } 16 | 17 | /* ================================================ */ -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/add.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/amazon-video-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/amazon-video-thumbnail.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/buy-video-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/buy-video-thumbnail.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/delete.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/drop_down_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/drop_down_bg.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/duplicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/duplicate.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/ebay-video-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/ebay-video-thumbnail.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/error.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/goto_listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/goto_listing.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/grid-cal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/grid-cal.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/help.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/i_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/i_icon.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/i_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/i_logo.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/i_notice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/i_notice.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/icon-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/icon-enabled.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/icon_article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/icon_article.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/icon_idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/icon_idea.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/img_echeck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/img_echeck.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/log_statuses/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/log_statuses/error.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/log_statuses/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/log_statuses/normal.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/log_statuses/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/log_statuses/warning.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/money.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/next.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/note_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/note_background.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/note_cell_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/note_cell_bg.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/pencil.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/play-video-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/play-video-thumbnail.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/preview_no_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/preview_no_images.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/prime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/prime.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/rule_chooser_trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/rule_chooser_trigger.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/rule_component_add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/rule_component_add.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/rule_component_apply.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/rule_component_apply.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/rule_component_remove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/rule_component_remove.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/search.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/search_statuses/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/search_statuses/error.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/search_statuses/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/search_statuses/list.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/search_statuses/processing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/search_statuses/processing.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/search_statuses/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/search_statuses/search.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/search_statuses/unassign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/search_statuses/unassign.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/settings.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/tool-tip-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/tool-tip-icon.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/warning.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/default/M2ePro/images/wizard-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/default/M2ePro/images/wizard-note.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/css/Plugin/AreaWrapper.css: -------------------------------------------------------------------------------- 1 | /* General Styles */ 2 | /* ================================================ */ 3 | 4 | .area_wrapper { 5 | position: absolute !important; 6 | z-index: 1000 !important; 7 | opacity: 0.4 !important; 8 | filter: alpha(opacity=40) !important; 9 | background-color: #f8fcfd !important; 10 | 11 | width: 100%; 12 | height: 100%; 13 | left: 0px; 14 | top: 0px; 15 | } 16 | 17 | /* ================================================ */ -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/add.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/amazon-video-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/amazon-video-thumbnail.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/buy-video-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/buy-video-thumbnail.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/delete.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/drop_down_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/drop_down_bg.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/duplicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/duplicate.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/ebay-video-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/ebay-video-thumbnail.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/error.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/goto_listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/goto_listing.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/grid-cal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/grid-cal.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/help.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/i_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/i_icon.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/i_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/i_logo.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/i_notice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/i_notice.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/icon-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/icon-enabled.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/icon_article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/icon_article.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/icon_idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/icon_idea.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/img_echeck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/img_echeck.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/log_statuses/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/log_statuses/error.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/log_statuses/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/log_statuses/normal.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/log_statuses/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/log_statuses/warning.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/money.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/next.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/note_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/note_background.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/note_cell_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/note_cell_bg.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/pencil.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/play-video-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/play-video-thumbnail.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/preview_no_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/preview_no_images.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/prime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/prime.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/rule_chooser_trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/rule_chooser_trigger.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/rule_component_add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/rule_component_add.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/rule_component_apply.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/rule_component_apply.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/rule_component_remove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/rule_component_remove.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/search.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/search_statuses/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/search_statuses/error.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/search_statuses/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/search_statuses/list.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/search_statuses/processing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/search_statuses/processing.gif -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/search_statuses/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/search_statuses/search.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/search_statuses/unassign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/search_statuses/unassign.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/settings.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/tool-tip-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/tool-tip-icon.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/warning.png -------------------------------------------------------------------------------- /src/skin/adminhtml/default/enterprise/M2ePro/images/wizard-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/integer-net/M2E/4d26556ab016f9984a0d0b1641e4711302f55799/src/skin/adminhtml/default/enterprise/M2ePro/images/wizard-note.png --------------------------------------------------------------------------------