├── .gitignore ├── Api ├── BatchRepositoryInterface.php ├── Data │ ├── BatchInterface.php │ ├── BatchSearchResultsInterface.php │ ├── NotificationInterface.php │ ├── NotificationSearchResultsInterface.php │ ├── PusherInterface.php │ └── PusherSearchResultsInterface.php ├── NotificationRepositoryInterface.php └── PusherRepositoryInterface.php ├── Block ├── Html │ └── Injector.php ├── SearchResult │ └── ListProduct.php └── Widget │ └── LandingPage.php ├── CHANGELOG.md ├── Controller ├── Adminhtml │ ├── Install.php │ ├── Install │ │ └── Run.php │ ├── Redirect.php │ └── Redirect │ │ └── Index.php ├── Cart.php ├── Cart │ └── Add.php ├── Categories.php ├── Categories │ └── Send.php ├── Html.php ├── Html │ └── GetIspJsVars.php ├── Landing.php ├── Landing │ ├── Checkslug.php │ ├── CreatePage.php │ └── RemovePage.php ├── Layered.php ├── Layered │ ├── Getlayeredsearchconfig.php │ ├── SetSerpCustomValues.php │ ├── SetSmnV2.php │ ├── Setdropdownv2.php │ ├── Setlayeredsearchoff.php │ ├── Setlayeredsearchon.php │ ├── Setserpv2.php │ └── SwitchSmartNavigationNative.php ├── Products.php ├── Products │ ├── Changeserp.php │ ├── Checkinstall.php │ ├── Connection.php │ ├── Getbatchbyid.php │ ├── Getconflict.php │ ├── Geterrormessage.php │ ├── Getimage.php │ ├── Getispuuid.php │ ├── Getnumofproducts.php │ ├── Getpriceindex.php │ ├── Getstoreinfo.php │ ├── Getstores.php │ ├── Pushbulk.php │ ├── Send.php │ ├── Sendupdated.php │ ├── Setispgroup.php │ ├── Setispuuid.php │ ├── Updatesitemap.php │ └── Vers.php ├── Productsbyid.php ├── Productsbyid │ └── Getbyid.php ├── Result.php ├── Result │ └── Index.php └── Router.php ├── CustomerData └── IspConfigData.php ├── Helper ├── Api.php ├── Batches.php ├── Catalog │ └── Report.php ├── Category │ └── Json │ │ └── Generator.php ├── Data.php ├── Html │ └── Injector.php ├── Plugin │ ├── CatalogRule.php │ ├── CatalogSearch.php │ └── CsrfValidatorSkip.php └── Product │ └── Xml │ └── Generator.php ├── Model ├── Adminhtml │ └── Source │ │ └── Stock.php ├── Batch.php ├── BatchRepository.php ├── Notification.php ├── NotificationRepository.php ├── Plugin │ ├── Catalog │ │ ├── Index │ │ │ └── Price.php │ │ ├── Product │ │ │ └── Action.php │ │ └── Staging │ │ │ └── ProductSave.php │ └── Html │ │ ├── CategoryView.php │ │ ├── ConfigProvider.php │ │ └── Design.php ├── Pusher.php ├── PusherRepository.php ├── ResourceModel │ ├── AbstractCollection.php │ ├── Batch.php │ ├── Batch │ │ └── Collection.php │ ├── Notification.php │ ├── Notification │ │ └── Collection.php │ ├── Pusher.php │ └── Pusher │ │ └── Collection.php ├── Rule.php └── System │ └── Message │ └── NotInstalled.php ├── Observer ├── CategoryInit.php ├── CategorySave.php ├── IspProductSave.php ├── IspProductSaveLight.php ├── OrderCreate.php ├── ProductDelete.php ├── ProductImport.php ├── ProductSave.php ├── ProductUpdate.php ├── ProductView.php ├── UrapidAfterProductSave.php └── Webhook.php ├── README.md ├── Setup └── Patch │ └── Data │ └── PostInstall.php ├── Xml ├── Generator.php └── GeneratorInterface.php ├── _config.yml ├── composer.json ├── etc ├── acl.xml ├── adminhtml │ ├── di.xml │ ├── events.xml │ ├── menu.xml │ ├── routes.xml │ └── system.xml ├── config.xml ├── csp_whitelist.xml ├── db_schema.xml ├── db_schema_whitelist.json ├── di.xml ├── events.xml ├── frontend │ ├── di.xml │ ├── events.xml │ ├── routes.xml │ └── sections.xml ├── module.xml └── widget.xml ├── index.md ├── registration.php └── view ├── adminhtml ├── templates │ └── autocompleteplus │ │ ├── notifications.phtml │ │ └── system │ │ └── config │ │ ├── button.phtml │ │ └── sync.phtml └── web │ ├── css │ └── source │ │ └── _module.less │ └── fonts │ ├── icomoon.eot │ ├── icomoon.svg │ ├── icomoon.ttf │ ├── icomoon.woff │ └── icomoon.woff2 └── frontend ├── layout ├── catalog_category_view.xml ├── catalogsearch_result_index.xml ├── default.xml ├── default_head_blocks.xml └── instantsearchplus_result_index.xml ├── templates ├── catalog │ └── product │ │ ├── category.phtml │ │ └── list.phtml ├── html │ ├── injector.phtml │ └── preloader.phtml ├── layer │ └── view.phtml └── widget │ └── landingpage.phtml └── web └── js ├── add_isp_config.js └── preloader.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/.gitignore -------------------------------------------------------------------------------- /Api/BatchRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Api/BatchRepositoryInterface.php -------------------------------------------------------------------------------- /Api/Data/BatchInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Api/Data/BatchInterface.php -------------------------------------------------------------------------------- /Api/Data/BatchSearchResultsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Api/Data/BatchSearchResultsInterface.php -------------------------------------------------------------------------------- /Api/Data/NotificationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Api/Data/NotificationInterface.php -------------------------------------------------------------------------------- /Api/Data/NotificationSearchResultsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Api/Data/NotificationSearchResultsInterface.php -------------------------------------------------------------------------------- /Api/Data/PusherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Api/Data/PusherInterface.php -------------------------------------------------------------------------------- /Api/Data/PusherSearchResultsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Api/Data/PusherSearchResultsInterface.php -------------------------------------------------------------------------------- /Api/NotificationRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Api/NotificationRepositoryInterface.php -------------------------------------------------------------------------------- /Api/PusherRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Api/PusherRepositoryInterface.php -------------------------------------------------------------------------------- /Block/Html/Injector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Block/Html/Injector.php -------------------------------------------------------------------------------- /Block/SearchResult/ListProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Block/SearchResult/ListProduct.php -------------------------------------------------------------------------------- /Block/Widget/LandingPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Block/Widget/LandingPage.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Controller/Adminhtml/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Adminhtml/Install.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Install/Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Adminhtml/Install/Run.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Adminhtml/Redirect.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Redirect/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Adminhtml/Redirect/Index.php -------------------------------------------------------------------------------- /Controller/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Cart.php -------------------------------------------------------------------------------- /Controller/Cart/Add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Cart/Add.php -------------------------------------------------------------------------------- /Controller/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Categories.php -------------------------------------------------------------------------------- /Controller/Categories/Send.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Categories/Send.php -------------------------------------------------------------------------------- /Controller/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Html.php -------------------------------------------------------------------------------- /Controller/Html/GetIspJsVars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Html/GetIspJsVars.php -------------------------------------------------------------------------------- /Controller/Landing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Landing.php -------------------------------------------------------------------------------- /Controller/Landing/Checkslug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Landing/Checkslug.php -------------------------------------------------------------------------------- /Controller/Landing/CreatePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Landing/CreatePage.php -------------------------------------------------------------------------------- /Controller/Landing/RemovePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Landing/RemovePage.php -------------------------------------------------------------------------------- /Controller/Layered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Layered.php -------------------------------------------------------------------------------- /Controller/Layered/Getlayeredsearchconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Layered/Getlayeredsearchconfig.php -------------------------------------------------------------------------------- /Controller/Layered/SetSerpCustomValues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Layered/SetSerpCustomValues.php -------------------------------------------------------------------------------- /Controller/Layered/SetSmnV2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Layered/SetSmnV2.php -------------------------------------------------------------------------------- /Controller/Layered/Setdropdownv2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Layered/Setdropdownv2.php -------------------------------------------------------------------------------- /Controller/Layered/Setlayeredsearchoff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Layered/Setlayeredsearchoff.php -------------------------------------------------------------------------------- /Controller/Layered/Setlayeredsearchon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Layered/Setlayeredsearchon.php -------------------------------------------------------------------------------- /Controller/Layered/Setserpv2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Layered/Setserpv2.php -------------------------------------------------------------------------------- /Controller/Layered/SwitchSmartNavigationNative.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Layered/SwitchSmartNavigationNative.php -------------------------------------------------------------------------------- /Controller/Products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products.php -------------------------------------------------------------------------------- /Controller/Products/Changeserp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Changeserp.php -------------------------------------------------------------------------------- /Controller/Products/Checkinstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Checkinstall.php -------------------------------------------------------------------------------- /Controller/Products/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Connection.php -------------------------------------------------------------------------------- /Controller/Products/Getbatchbyid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Getbatchbyid.php -------------------------------------------------------------------------------- /Controller/Products/Getconflict.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Getconflict.php -------------------------------------------------------------------------------- /Controller/Products/Geterrormessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Geterrormessage.php -------------------------------------------------------------------------------- /Controller/Products/Getimage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Getimage.php -------------------------------------------------------------------------------- /Controller/Products/Getispuuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Getispuuid.php -------------------------------------------------------------------------------- /Controller/Products/Getnumofproducts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Getnumofproducts.php -------------------------------------------------------------------------------- /Controller/Products/Getpriceindex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Getpriceindex.php -------------------------------------------------------------------------------- /Controller/Products/Getstoreinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Getstoreinfo.php -------------------------------------------------------------------------------- /Controller/Products/Getstores.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Getstores.php -------------------------------------------------------------------------------- /Controller/Products/Pushbulk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Pushbulk.php -------------------------------------------------------------------------------- /Controller/Products/Send.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Send.php -------------------------------------------------------------------------------- /Controller/Products/Sendupdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Sendupdated.php -------------------------------------------------------------------------------- /Controller/Products/Setispgroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Setispgroup.php -------------------------------------------------------------------------------- /Controller/Products/Setispuuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Setispuuid.php -------------------------------------------------------------------------------- /Controller/Products/Updatesitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Updatesitemap.php -------------------------------------------------------------------------------- /Controller/Products/Vers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Products/Vers.php -------------------------------------------------------------------------------- /Controller/Productsbyid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Productsbyid.php -------------------------------------------------------------------------------- /Controller/Productsbyid/Getbyid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Productsbyid/Getbyid.php -------------------------------------------------------------------------------- /Controller/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Result.php -------------------------------------------------------------------------------- /Controller/Result/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Result/Index.php -------------------------------------------------------------------------------- /Controller/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Controller/Router.php -------------------------------------------------------------------------------- /CustomerData/IspConfigData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/CustomerData/IspConfigData.php -------------------------------------------------------------------------------- /Helper/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Helper/Api.php -------------------------------------------------------------------------------- /Helper/Batches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Helper/Batches.php -------------------------------------------------------------------------------- /Helper/Catalog/Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Helper/Catalog/Report.php -------------------------------------------------------------------------------- /Helper/Category/Json/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Helper/Category/Json/Generator.php -------------------------------------------------------------------------------- /Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Helper/Data.php -------------------------------------------------------------------------------- /Helper/Html/Injector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Helper/Html/Injector.php -------------------------------------------------------------------------------- /Helper/Plugin/CatalogRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Helper/Plugin/CatalogRule.php -------------------------------------------------------------------------------- /Helper/Plugin/CatalogSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Helper/Plugin/CatalogSearch.php -------------------------------------------------------------------------------- /Helper/Plugin/CsrfValidatorSkip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Helper/Plugin/CsrfValidatorSkip.php -------------------------------------------------------------------------------- /Helper/Product/Xml/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Helper/Product/Xml/Generator.php -------------------------------------------------------------------------------- /Model/Adminhtml/Source/Stock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/Adminhtml/Source/Stock.php -------------------------------------------------------------------------------- /Model/Batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/Batch.php -------------------------------------------------------------------------------- /Model/BatchRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/BatchRepository.php -------------------------------------------------------------------------------- /Model/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/Notification.php -------------------------------------------------------------------------------- /Model/NotificationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/NotificationRepository.php -------------------------------------------------------------------------------- /Model/Plugin/Catalog/Index/Price.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/Plugin/Catalog/Index/Price.php -------------------------------------------------------------------------------- /Model/Plugin/Catalog/Product/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/Plugin/Catalog/Product/Action.php -------------------------------------------------------------------------------- /Model/Plugin/Catalog/Staging/ProductSave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/Plugin/Catalog/Staging/ProductSave.php -------------------------------------------------------------------------------- /Model/Plugin/Html/CategoryView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/Plugin/Html/CategoryView.php -------------------------------------------------------------------------------- /Model/Plugin/Html/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/Plugin/Html/ConfigProvider.php -------------------------------------------------------------------------------- /Model/Plugin/Html/Design.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/Plugin/Html/Design.php -------------------------------------------------------------------------------- /Model/Pusher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/Pusher.php -------------------------------------------------------------------------------- /Model/PusherRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/PusherRepository.php -------------------------------------------------------------------------------- /Model/ResourceModel/AbstractCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/ResourceModel/AbstractCollection.php -------------------------------------------------------------------------------- /Model/ResourceModel/Batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/ResourceModel/Batch.php -------------------------------------------------------------------------------- /Model/ResourceModel/Batch/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/ResourceModel/Batch/Collection.php -------------------------------------------------------------------------------- /Model/ResourceModel/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/ResourceModel/Notification.php -------------------------------------------------------------------------------- /Model/ResourceModel/Notification/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/ResourceModel/Notification/Collection.php -------------------------------------------------------------------------------- /Model/ResourceModel/Pusher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/ResourceModel/Pusher.php -------------------------------------------------------------------------------- /Model/ResourceModel/Pusher/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/ResourceModel/Pusher/Collection.php -------------------------------------------------------------------------------- /Model/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/Rule.php -------------------------------------------------------------------------------- /Model/System/Message/NotInstalled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Model/System/Message/NotInstalled.php -------------------------------------------------------------------------------- /Observer/CategoryInit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Observer/CategoryInit.php -------------------------------------------------------------------------------- /Observer/CategorySave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Observer/CategorySave.php -------------------------------------------------------------------------------- /Observer/IspProductSave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Observer/IspProductSave.php -------------------------------------------------------------------------------- /Observer/IspProductSaveLight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Observer/IspProductSaveLight.php -------------------------------------------------------------------------------- /Observer/OrderCreate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Observer/OrderCreate.php -------------------------------------------------------------------------------- /Observer/ProductDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Observer/ProductDelete.php -------------------------------------------------------------------------------- /Observer/ProductImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Observer/ProductImport.php -------------------------------------------------------------------------------- /Observer/ProductSave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Observer/ProductSave.php -------------------------------------------------------------------------------- /Observer/ProductUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Observer/ProductUpdate.php -------------------------------------------------------------------------------- /Observer/ProductView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Observer/ProductView.php -------------------------------------------------------------------------------- /Observer/UrapidAfterProductSave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Observer/UrapidAfterProductSave.php -------------------------------------------------------------------------------- /Observer/Webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Observer/Webhook.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/README.md -------------------------------------------------------------------------------- /Setup/Patch/Data/PostInstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Setup/Patch/Data/PostInstall.php -------------------------------------------------------------------------------- /Xml/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Xml/Generator.php -------------------------------------------------------------------------------- /Xml/GeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/Xml/GeneratorInterface.php -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/_config.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/composer.json -------------------------------------------------------------------------------- /etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/acl.xml -------------------------------------------------------------------------------- /etc/adminhtml/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/adminhtml/di.xml -------------------------------------------------------------------------------- /etc/adminhtml/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/adminhtml/events.xml -------------------------------------------------------------------------------- /etc/adminhtml/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/adminhtml/menu.xml -------------------------------------------------------------------------------- /etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/csp_whitelist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/csp_whitelist.xml -------------------------------------------------------------------------------- /etc/db_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/db_schema.xml -------------------------------------------------------------------------------- /etc/db_schema_whitelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/db_schema_whitelist.json -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/events.xml -------------------------------------------------------------------------------- /etc/frontend/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/frontend/di.xml -------------------------------------------------------------------------------- /etc/frontend/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/frontend/events.xml -------------------------------------------------------------------------------- /etc/frontend/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/frontend/routes.xml -------------------------------------------------------------------------------- /etc/frontend/sections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/frontend/sections.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/module.xml -------------------------------------------------------------------------------- /etc/widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/etc/widget.xml -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/index.md -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/registration.php -------------------------------------------------------------------------------- /view/adminhtml/templates/autocompleteplus/notifications.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/adminhtml/templates/autocompleteplus/notifications.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/autocompleteplus/system/config/button.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/adminhtml/templates/autocompleteplus/system/config/button.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/autocompleteplus/system/config/sync.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/adminhtml/templates/autocompleteplus/system/config/sync.phtml -------------------------------------------------------------------------------- /view/adminhtml/web/css/source/_module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/adminhtml/web/css/source/_module.less -------------------------------------------------------------------------------- /view/adminhtml/web/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/adminhtml/web/fonts/icomoon.eot -------------------------------------------------------------------------------- /view/adminhtml/web/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/adminhtml/web/fonts/icomoon.svg -------------------------------------------------------------------------------- /view/adminhtml/web/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/adminhtml/web/fonts/icomoon.ttf -------------------------------------------------------------------------------- /view/adminhtml/web/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/adminhtml/web/fonts/icomoon.woff -------------------------------------------------------------------------------- /view/adminhtml/web/fonts/icomoon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/adminhtml/web/fonts/icomoon.woff2 -------------------------------------------------------------------------------- /view/frontend/layout/catalog_category_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/frontend/layout/catalog_category_view.xml -------------------------------------------------------------------------------- /view/frontend/layout/catalogsearch_result_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/frontend/layout/catalogsearch_result_index.xml -------------------------------------------------------------------------------- /view/frontend/layout/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/frontend/layout/default.xml -------------------------------------------------------------------------------- /view/frontend/layout/default_head_blocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/frontend/layout/default_head_blocks.xml -------------------------------------------------------------------------------- /view/frontend/layout/instantsearchplus_result_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/frontend/layout/instantsearchplus_result_index.xml -------------------------------------------------------------------------------- /view/frontend/templates/catalog/product/category.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/frontend/templates/catalog/product/category.phtml -------------------------------------------------------------------------------- /view/frontend/templates/catalog/product/list.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/frontend/templates/catalog/product/list.phtml -------------------------------------------------------------------------------- /view/frontend/templates/html/injector.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/frontend/templates/html/injector.phtml -------------------------------------------------------------------------------- /view/frontend/templates/html/preloader.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/frontend/templates/html/preloader.phtml -------------------------------------------------------------------------------- /view/frontend/templates/layer/view.phtml: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /view/frontend/templates/widget/landingpage.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/frontend/templates/widget/landingpage.phtml -------------------------------------------------------------------------------- /view/frontend/web/js/add_isp_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/frontend/web/js/add_isp_config.js -------------------------------------------------------------------------------- /view/frontend/web/js/preloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instantsearchplus/isp_magento2_extension/HEAD/view/frontend/web/js/preloader.js --------------------------------------------------------------------------------