├── .env ├── Doofinder └── Feed │ ├── Api │ ├── CategoryListInterface.php │ ├── ChangedItemRepositoryInterface.php │ ├── Data │ │ ├── ChangedItemInterface.php │ │ ├── ChangedItemSearchResultsInterface.php │ │ └── FetcherInterface.php │ ├── ModuleDataInterface.php │ ├── ProductRepositoryInterface.php │ └── SingleScriptInterface.php │ ├── ApiClient │ ├── Client.php │ ├── ClientFactory.php │ └── ManagementClient.php │ ├── Block │ ├── Adminhtml │ │ ├── Form │ │ │ └── Field │ │ │ │ ├── CustomAttributes.php │ │ │ │ └── CustomAttributes │ │ │ │ ├── Code.php │ │ │ │ └── Enable.php │ │ ├── SearchEngines │ │ │ └── ProcessStatus.php │ │ ├── Setup.php │ │ └── System │ │ │ └── Config │ │ │ └── StoreViewTable.php │ ├── Display │ │ └── Layer.php │ └── System │ │ └── Config │ │ ├── CleanIntegration.php │ │ ├── CreateSearchEngine.php │ │ ├── Disabled.php │ │ └── UpdateOnClick.php │ ├── Controller │ ├── Adminhtml │ │ ├── Integration │ │ │ ├── CleanIntegration.php │ │ │ ├── CreateSearchEngine.php │ │ │ ├── CreateStore.php │ │ │ ├── Save.php │ │ │ ├── SaveConfig.php │ │ │ ├── SaveSector.php │ │ │ ├── Setup.php │ │ │ └── UpdateOnClick.php │ │ ├── SearchEngines │ │ │ └── ProcessStatus.php │ │ └── Setup │ │ │ ├── AccessToken.php │ │ │ ├── Check.php │ │ │ ├── Config.php │ │ │ └── Index.php │ ├── Product │ │ └── AddToCart.php │ └── Setup │ │ ├── Config.php │ │ └── ProcessCallback.php │ ├── Cron │ └── Processor.php │ ├── Errors │ ├── ApiClient │ │ └── InvalidApiKey.php │ ├── BadRequest.php │ ├── DoofinderFeedException.php │ ├── IndexingInProgress.php │ ├── InvalidArgumentException.php │ ├── NotAllowed.php │ ├── NotFound.php │ ├── QuotaExhausted.php │ ├── SearchEngineCreationException.php │ ├── StoreCreationException.php │ ├── ThrottledResponse.php │ ├── TypeAlreadyExists.php │ ├── Utils.php │ └── WrongResponse.php │ ├── Helper │ ├── Constants.php │ ├── Indexation.php │ ├── Indice.php │ ├── Inventory.php │ ├── Item.php │ ├── Price.php │ ├── Product.php │ ├── SearchEngine.php │ └── StoreConfig.php │ ├── LICENSE │ ├── Manual.pdf │ ├── Model │ ├── CategoryListRepository.php │ ├── ChangedItem.php │ ├── ChangedItem │ │ ├── DocumentsProvider.php │ │ └── ItemType.php │ ├── ChangedItemRepository.php │ ├── ChangedItemSearchResults.php │ ├── Config │ │ ├── Backend │ │ │ ├── ApiKeyValidation.php │ │ │ ├── Cron.php │ │ │ ├── CustomAttributes.php │ │ │ ├── HashIdValidation.php │ │ │ ├── ScopeGroupValue.php │ │ │ └── Updateonsave.php │ │ ├── Indexer │ │ │ └── Attributes.php │ │ └── Source │ │ │ ├── Cronexpression.php │ │ │ ├── ImageResize.php │ │ │ └── Integration.php │ ├── Data │ │ ├── InstallationOptionsStruct.php │ │ ├── InstallationStruct.php │ │ ├── ModuleStruct.php │ │ ├── SearchEngineOptionsStruct.php │ │ ├── SearchEngineStruct.php │ │ ├── SingleScriptStruct.php │ │ ├── StoreStruct.php │ │ └── WebsiteStruct.php │ ├── InstallationRepository.php │ ├── ModuleData.php │ ├── ProductRepository.php │ ├── ResourceModel │ │ ├── ChangedItem.php │ │ ├── ChangedItem │ │ │ └── Collection.php │ │ └── Index.php │ ├── SearchEngineRepository.php │ └── SingleScript.php │ ├── Observer │ ├── Category │ │ ├── AbstractChangedCategoryObserver.php │ │ ├── CategoryDeleteAfterObserver.php │ │ └── CategorySaveAfterObserver.php │ ├── Page │ │ ├── AbstractChangedCmsPageObserver.php │ │ ├── CmsPageDeleteAfterObserver.php │ │ └── CmsPageSaveAfterObserver.php │ └── Product │ │ ├── AbstractChangedProductObserver.php │ │ ├── CatalogProductDeleteAfterObserver.php │ │ └── CatalogProductSaveAfterObserver.php │ ├── Serializer │ └── Base64GzJson.php │ ├── Service │ ├── InstallationService.php │ └── SearchEngineService.php │ ├── Setup │ ├── Patch │ │ └── Data │ │ │ ├── UpgradeCustomAttributesConfigValuePatch.php │ │ │ ├── UpgradeIntegrationPatch.php │ │ │ └── UpgradeToStoreGroupPatch.php │ └── Uninstall.php │ ├── Wrapper │ └── Throttle.php │ ├── composer.json │ ├── etc │ ├── acl.xml │ ├── adminhtml │ │ ├── menu.xml │ │ ├── routes.xml │ │ └── system.xml │ ├── config.xml │ ├── crontab.xml │ ├── csp_whitelist.xml │ ├── db_schema.xml │ ├── di.xml │ ├── events.xml │ ├── extension_attributes.xml │ ├── frontend │ │ └── routes.xml │ ├── module.xml │ ├── view.xml │ └── webapi.xml │ ├── registration.php │ └── view │ ├── adminhtml │ ├── layout │ │ ├── adminhtml_system_config_edit.xml │ │ ├── doofinderfeed_searchengines_processstatus.xml │ │ └── doofinderfeed_setup_index.xml │ ├── templates │ │ ├── SearchEngines │ │ │ └── Process │ │ │ │ └── status.phtml │ │ ├── System │ │ │ └── Config │ │ │ │ ├── cleanIntegrationButton.phtml │ │ │ │ ├── createSearchEngine.phtml │ │ │ │ ├── customAttributes.phtml │ │ │ │ ├── storeViewTable.phtml │ │ │ │ └── updateOnClickButton.phtml │ │ └── setup.phtml │ └── web │ │ ├── css │ │ ├── doofinderfeed_setup.css │ │ ├── source │ │ │ ├── _module.less │ │ │ └── module │ │ │ │ └── _doofinderfeed_setup.less │ │ └── store_table.less │ │ ├── images │ │ ├── doofinder-logo.png │ │ └── doofinder.png │ │ └── js │ │ ├── initial.js │ │ └── link-account.js │ └── frontend │ ├── layout │ ├── default.xml │ └── hyva_default.xml │ ├── templates │ └── display │ │ └── layer.phtml │ └── web │ └── js │ ├── df_add_to_cart.js │ └── df_add_to_cart_hyva.js ├── LICENSE ├── README.md ├── composer-ci.json ├── composer.json ├── doc ├── magento_architecture.md ├── manual.md └── template │ ├── eisvogel.latex │ └── logodoofinder.png ├── phpcs.xml ├── phpdoc.dist.xml └── templates ├── Helper └── Constants.php └── etc └── config.xml /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/.env -------------------------------------------------------------------------------- /Doofinder/Feed/Api/CategoryListInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Api/CategoryListInterface.php -------------------------------------------------------------------------------- /Doofinder/Feed/Api/ChangedItemRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Api/ChangedItemRepositoryInterface.php -------------------------------------------------------------------------------- /Doofinder/Feed/Api/Data/ChangedItemInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Api/Data/ChangedItemInterface.php -------------------------------------------------------------------------------- /Doofinder/Feed/Api/Data/ChangedItemSearchResultsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Api/Data/ChangedItemSearchResultsInterface.php -------------------------------------------------------------------------------- /Doofinder/Feed/Api/Data/FetcherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Api/Data/FetcherInterface.php -------------------------------------------------------------------------------- /Doofinder/Feed/Api/ModuleDataInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Api/ModuleDataInterface.php -------------------------------------------------------------------------------- /Doofinder/Feed/Api/ProductRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Api/ProductRepositoryInterface.php -------------------------------------------------------------------------------- /Doofinder/Feed/Api/SingleScriptInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Api/SingleScriptInterface.php -------------------------------------------------------------------------------- /Doofinder/Feed/ApiClient/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/ApiClient/Client.php -------------------------------------------------------------------------------- /Doofinder/Feed/ApiClient/ClientFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/ApiClient/ClientFactory.php -------------------------------------------------------------------------------- /Doofinder/Feed/ApiClient/ManagementClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/ApiClient/ManagementClient.php -------------------------------------------------------------------------------- /Doofinder/Feed/Block/Adminhtml/Form/Field/CustomAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Block/Adminhtml/Form/Field/CustomAttributes.php -------------------------------------------------------------------------------- /Doofinder/Feed/Block/Adminhtml/Form/Field/CustomAttributes/Code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Block/Adminhtml/Form/Field/CustomAttributes/Code.php -------------------------------------------------------------------------------- /Doofinder/Feed/Block/Adminhtml/Form/Field/CustomAttributes/Enable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Block/Adminhtml/Form/Field/CustomAttributes/Enable.php -------------------------------------------------------------------------------- /Doofinder/Feed/Block/Adminhtml/SearchEngines/ProcessStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Block/Adminhtml/SearchEngines/ProcessStatus.php -------------------------------------------------------------------------------- /Doofinder/Feed/Block/Adminhtml/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Block/Adminhtml/Setup.php -------------------------------------------------------------------------------- /Doofinder/Feed/Block/Adminhtml/System/Config/StoreViewTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Block/Adminhtml/System/Config/StoreViewTable.php -------------------------------------------------------------------------------- /Doofinder/Feed/Block/Display/Layer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Block/Display/Layer.php -------------------------------------------------------------------------------- /Doofinder/Feed/Block/System/Config/CleanIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Block/System/Config/CleanIntegration.php -------------------------------------------------------------------------------- /Doofinder/Feed/Block/System/Config/CreateSearchEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Block/System/Config/CreateSearchEngine.php -------------------------------------------------------------------------------- /Doofinder/Feed/Block/System/Config/Disabled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Block/System/Config/Disabled.php -------------------------------------------------------------------------------- /Doofinder/Feed/Block/System/Config/UpdateOnClick.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Block/System/Config/UpdateOnClick.php -------------------------------------------------------------------------------- /Doofinder/Feed/Controller/Adminhtml/Integration/CleanIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Controller/Adminhtml/Integration/CleanIntegration.php -------------------------------------------------------------------------------- /Doofinder/Feed/Controller/Adminhtml/Integration/CreateSearchEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Controller/Adminhtml/Integration/CreateSearchEngine.php -------------------------------------------------------------------------------- /Doofinder/Feed/Controller/Adminhtml/Integration/CreateStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Controller/Adminhtml/Integration/CreateStore.php -------------------------------------------------------------------------------- /Doofinder/Feed/Controller/Adminhtml/Integration/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Controller/Adminhtml/Integration/Save.php -------------------------------------------------------------------------------- /Doofinder/Feed/Controller/Adminhtml/Integration/SaveConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Controller/Adminhtml/Integration/SaveConfig.php -------------------------------------------------------------------------------- /Doofinder/Feed/Controller/Adminhtml/Integration/SaveSector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Controller/Adminhtml/Integration/SaveSector.php -------------------------------------------------------------------------------- /Doofinder/Feed/Controller/Adminhtml/Integration/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Controller/Adminhtml/Integration/Setup.php -------------------------------------------------------------------------------- /Doofinder/Feed/Controller/Adminhtml/Integration/UpdateOnClick.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Controller/Adminhtml/Integration/UpdateOnClick.php -------------------------------------------------------------------------------- /Doofinder/Feed/Controller/Adminhtml/SearchEngines/ProcessStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Controller/Adminhtml/SearchEngines/ProcessStatus.php -------------------------------------------------------------------------------- /Doofinder/Feed/Controller/Adminhtml/Setup/AccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Controller/Adminhtml/Setup/AccessToken.php -------------------------------------------------------------------------------- /Doofinder/Feed/Controller/Adminhtml/Setup/Check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Controller/Adminhtml/Setup/Check.php -------------------------------------------------------------------------------- /Doofinder/Feed/Controller/Adminhtml/Setup/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Controller/Adminhtml/Setup/Config.php -------------------------------------------------------------------------------- /Doofinder/Feed/Controller/Adminhtml/Setup/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Controller/Adminhtml/Setup/Index.php -------------------------------------------------------------------------------- /Doofinder/Feed/Controller/Product/AddToCart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Controller/Product/AddToCart.php -------------------------------------------------------------------------------- /Doofinder/Feed/Controller/Setup/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Controller/Setup/Config.php -------------------------------------------------------------------------------- /Doofinder/Feed/Controller/Setup/ProcessCallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Controller/Setup/ProcessCallback.php -------------------------------------------------------------------------------- /Doofinder/Feed/Cron/Processor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Cron/Processor.php -------------------------------------------------------------------------------- /Doofinder/Feed/Errors/ApiClient/InvalidApiKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Errors/ApiClient/InvalidApiKey.php -------------------------------------------------------------------------------- /Doofinder/Feed/Errors/BadRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Errors/BadRequest.php -------------------------------------------------------------------------------- /Doofinder/Feed/Errors/DoofinderFeedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Errors/DoofinderFeedException.php -------------------------------------------------------------------------------- /Doofinder/Feed/Errors/IndexingInProgress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Errors/IndexingInProgress.php -------------------------------------------------------------------------------- /Doofinder/Feed/Errors/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Errors/InvalidArgumentException.php -------------------------------------------------------------------------------- /Doofinder/Feed/Errors/NotAllowed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Errors/NotAllowed.php -------------------------------------------------------------------------------- /Doofinder/Feed/Errors/NotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Errors/NotFound.php -------------------------------------------------------------------------------- /Doofinder/Feed/Errors/QuotaExhausted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Errors/QuotaExhausted.php -------------------------------------------------------------------------------- /Doofinder/Feed/Errors/SearchEngineCreationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Errors/SearchEngineCreationException.php -------------------------------------------------------------------------------- /Doofinder/Feed/Errors/StoreCreationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Errors/StoreCreationException.php -------------------------------------------------------------------------------- /Doofinder/Feed/Errors/ThrottledResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Errors/ThrottledResponse.php -------------------------------------------------------------------------------- /Doofinder/Feed/Errors/TypeAlreadyExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Errors/TypeAlreadyExists.php -------------------------------------------------------------------------------- /Doofinder/Feed/Errors/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Errors/Utils.php -------------------------------------------------------------------------------- /Doofinder/Feed/Errors/WrongResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Errors/WrongResponse.php -------------------------------------------------------------------------------- /Doofinder/Feed/Helper/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Helper/Constants.php -------------------------------------------------------------------------------- /Doofinder/Feed/Helper/Indexation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Helper/Indexation.php -------------------------------------------------------------------------------- /Doofinder/Feed/Helper/Indice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Helper/Indice.php -------------------------------------------------------------------------------- /Doofinder/Feed/Helper/Inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Helper/Inventory.php -------------------------------------------------------------------------------- /Doofinder/Feed/Helper/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Helper/Item.php -------------------------------------------------------------------------------- /Doofinder/Feed/Helper/Price.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Helper/Price.php -------------------------------------------------------------------------------- /Doofinder/Feed/Helper/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Helper/Product.php -------------------------------------------------------------------------------- /Doofinder/Feed/Helper/SearchEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Helper/SearchEngine.php -------------------------------------------------------------------------------- /Doofinder/Feed/Helper/StoreConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Helper/StoreConfig.php -------------------------------------------------------------------------------- /Doofinder/Feed/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/LICENSE -------------------------------------------------------------------------------- /Doofinder/Feed/Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Manual.pdf -------------------------------------------------------------------------------- /Doofinder/Feed/Model/CategoryListRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/CategoryListRepository.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/ChangedItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/ChangedItem.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/ChangedItem/DocumentsProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/ChangedItem/DocumentsProvider.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/ChangedItem/ItemType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/ChangedItem/ItemType.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/ChangedItemRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/ChangedItemRepository.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/ChangedItemSearchResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/ChangedItemSearchResults.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Config/Backend/ApiKeyValidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Config/Backend/ApiKeyValidation.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Config/Backend/Cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Config/Backend/Cron.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Config/Backend/CustomAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Config/Backend/CustomAttributes.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Config/Backend/HashIdValidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Config/Backend/HashIdValidation.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Config/Backend/ScopeGroupValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Config/Backend/ScopeGroupValue.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Config/Backend/Updateonsave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Config/Backend/Updateonsave.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Config/Indexer/Attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Config/Indexer/Attributes.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Config/Source/Cronexpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Config/Source/Cronexpression.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Config/Source/ImageResize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Config/Source/ImageResize.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Config/Source/Integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Config/Source/Integration.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Data/InstallationOptionsStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Data/InstallationOptionsStruct.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Data/InstallationStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Data/InstallationStruct.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Data/ModuleStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Data/ModuleStruct.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Data/SearchEngineOptionsStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Data/SearchEngineOptionsStruct.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Data/SearchEngineStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Data/SearchEngineStruct.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Data/SingleScriptStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Data/SingleScriptStruct.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Data/StoreStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Data/StoreStruct.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/Data/WebsiteStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/Data/WebsiteStruct.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/InstallationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/InstallationRepository.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/ModuleData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/ModuleData.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/ProductRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/ProductRepository.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/ResourceModel/ChangedItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/ResourceModel/ChangedItem.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/ResourceModel/ChangedItem/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/ResourceModel/ChangedItem/Collection.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/ResourceModel/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/ResourceModel/Index.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/SearchEngineRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/SearchEngineRepository.php -------------------------------------------------------------------------------- /Doofinder/Feed/Model/SingleScript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Model/SingleScript.php -------------------------------------------------------------------------------- /Doofinder/Feed/Observer/Category/AbstractChangedCategoryObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Observer/Category/AbstractChangedCategoryObserver.php -------------------------------------------------------------------------------- /Doofinder/Feed/Observer/Category/CategoryDeleteAfterObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Observer/Category/CategoryDeleteAfterObserver.php -------------------------------------------------------------------------------- /Doofinder/Feed/Observer/Category/CategorySaveAfterObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Observer/Category/CategorySaveAfterObserver.php -------------------------------------------------------------------------------- /Doofinder/Feed/Observer/Page/AbstractChangedCmsPageObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Observer/Page/AbstractChangedCmsPageObserver.php -------------------------------------------------------------------------------- /Doofinder/Feed/Observer/Page/CmsPageDeleteAfterObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Observer/Page/CmsPageDeleteAfterObserver.php -------------------------------------------------------------------------------- /Doofinder/Feed/Observer/Page/CmsPageSaveAfterObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Observer/Page/CmsPageSaveAfterObserver.php -------------------------------------------------------------------------------- /Doofinder/Feed/Observer/Product/AbstractChangedProductObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Observer/Product/AbstractChangedProductObserver.php -------------------------------------------------------------------------------- /Doofinder/Feed/Observer/Product/CatalogProductDeleteAfterObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Observer/Product/CatalogProductDeleteAfterObserver.php -------------------------------------------------------------------------------- /Doofinder/Feed/Observer/Product/CatalogProductSaveAfterObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Observer/Product/CatalogProductSaveAfterObserver.php -------------------------------------------------------------------------------- /Doofinder/Feed/Serializer/Base64GzJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Serializer/Base64GzJson.php -------------------------------------------------------------------------------- /Doofinder/Feed/Service/InstallationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Service/InstallationService.php -------------------------------------------------------------------------------- /Doofinder/Feed/Service/SearchEngineService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Service/SearchEngineService.php -------------------------------------------------------------------------------- /Doofinder/Feed/Setup/Patch/Data/UpgradeCustomAttributesConfigValuePatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Setup/Patch/Data/UpgradeCustomAttributesConfigValuePatch.php -------------------------------------------------------------------------------- /Doofinder/Feed/Setup/Patch/Data/UpgradeIntegrationPatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Setup/Patch/Data/UpgradeIntegrationPatch.php -------------------------------------------------------------------------------- /Doofinder/Feed/Setup/Patch/Data/UpgradeToStoreGroupPatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Setup/Patch/Data/UpgradeToStoreGroupPatch.php -------------------------------------------------------------------------------- /Doofinder/Feed/Setup/Uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Setup/Uninstall.php -------------------------------------------------------------------------------- /Doofinder/Feed/Wrapper/Throttle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/Wrapper/Throttle.php -------------------------------------------------------------------------------- /Doofinder/Feed/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/composer.json -------------------------------------------------------------------------------- /Doofinder/Feed/etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/etc/acl.xml -------------------------------------------------------------------------------- /Doofinder/Feed/etc/adminhtml/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/etc/adminhtml/menu.xml -------------------------------------------------------------------------------- /Doofinder/Feed/etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /Doofinder/Feed/etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /Doofinder/Feed/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/etc/config.xml -------------------------------------------------------------------------------- /Doofinder/Feed/etc/crontab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/etc/crontab.xml -------------------------------------------------------------------------------- /Doofinder/Feed/etc/csp_whitelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/etc/csp_whitelist.xml -------------------------------------------------------------------------------- /Doofinder/Feed/etc/db_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/etc/db_schema.xml -------------------------------------------------------------------------------- /Doofinder/Feed/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/etc/di.xml -------------------------------------------------------------------------------- /Doofinder/Feed/etc/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/etc/events.xml -------------------------------------------------------------------------------- /Doofinder/Feed/etc/extension_attributes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/etc/extension_attributes.xml -------------------------------------------------------------------------------- /Doofinder/Feed/etc/frontend/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/etc/frontend/routes.xml -------------------------------------------------------------------------------- /Doofinder/Feed/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/etc/module.xml -------------------------------------------------------------------------------- /Doofinder/Feed/etc/view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/etc/view.xml -------------------------------------------------------------------------------- /Doofinder/Feed/etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/etc/webapi.xml -------------------------------------------------------------------------------- /Doofinder/Feed/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/registration.php -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/layout/adminhtml_system_config_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/layout/adminhtml_system_config_edit.xml -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/layout/doofinderfeed_searchengines_processstatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/layout/doofinderfeed_searchengines_processstatus.xml -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/layout/doofinderfeed_setup_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/layout/doofinderfeed_setup_index.xml -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/templates/SearchEngines/Process/status.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/templates/SearchEngines/Process/status.phtml -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/templates/System/Config/cleanIntegrationButton.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/templates/System/Config/cleanIntegrationButton.phtml -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/templates/System/Config/createSearchEngine.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/templates/System/Config/createSearchEngine.phtml -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/templates/System/Config/customAttributes.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/templates/System/Config/customAttributes.phtml -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/templates/System/Config/storeViewTable.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/templates/System/Config/storeViewTable.phtml -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/templates/System/Config/updateOnClickButton.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/templates/System/Config/updateOnClickButton.phtml -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/templates/setup.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/templates/setup.phtml -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/web/css/doofinderfeed_setup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/web/css/doofinderfeed_setup.css -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/web/css/source/_module.less: -------------------------------------------------------------------------------- 1 | @import "module/_doofinderfeed_setup"; 2 | -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/web/css/source/module/_doofinderfeed_setup.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/web/css/source/module/_doofinderfeed_setup.less -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/web/css/store_table.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/web/css/store_table.less -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/web/images/doofinder-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/web/images/doofinder-logo.png -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/web/images/doofinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/web/images/doofinder.png -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/web/js/initial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/web/js/initial.js -------------------------------------------------------------------------------- /Doofinder/Feed/view/adminhtml/web/js/link-account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/adminhtml/web/js/link-account.js -------------------------------------------------------------------------------- /Doofinder/Feed/view/frontend/layout/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/frontend/layout/default.xml -------------------------------------------------------------------------------- /Doofinder/Feed/view/frontend/layout/hyva_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/frontend/layout/hyva_default.xml -------------------------------------------------------------------------------- /Doofinder/Feed/view/frontend/templates/display/layer.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/frontend/templates/display/layer.phtml -------------------------------------------------------------------------------- /Doofinder/Feed/view/frontend/web/js/df_add_to_cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/frontend/web/js/df_add_to_cart.js -------------------------------------------------------------------------------- /Doofinder/Feed/view/frontend/web/js/df_add_to_cart_hyva.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/Doofinder/Feed/view/frontend/web/js/df_add_to_cart_hyva.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/README.md -------------------------------------------------------------------------------- /composer-ci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/composer-ci.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/composer.json -------------------------------------------------------------------------------- /doc/magento_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/doc/magento_architecture.md -------------------------------------------------------------------------------- /doc/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/doc/manual.md -------------------------------------------------------------------------------- /doc/template/eisvogel.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/doc/template/eisvogel.latex -------------------------------------------------------------------------------- /doc/template/logodoofinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/doc/template/logodoofinder.png -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpdoc.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/phpdoc.dist.xml -------------------------------------------------------------------------------- /templates/Helper/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/templates/Helper/Constants.php -------------------------------------------------------------------------------- /templates/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doofinder/doofinder-magento2/HEAD/templates/etc/config.xml --------------------------------------------------------------------------------