├── .github └── workflows │ ├── grumphp.yaml │ └── release.yml ├── .gitignore ├── .grumphpinclude ├── .releaserc ├── LICENSE.md ├── README.md ├── composer.json ├── grumphp.yml ├── phpcs.xml ├── phpstan.neon ├── ruleset.xml └── src ├── Api ├── Data │ ├── FilterInterface.php │ ├── LandingPageInterface.php │ ├── OverviewPageInterface.php │ ├── OverviewPageSearchResultsInterface.php │ └── PageSearchResultsInterface.php ├── LandingPageRepositoryInterface.php ├── OverviewPageRepositoryInterface.php └── UrlRewriteGeneratorInterface.php ├── Block ├── Adminhtml │ ├── OverviewPage │ │ └── Edit │ │ │ ├── BackButton.php │ │ │ ├── DeleteButton.php │ │ │ ├── GenericButton.php │ │ │ ├── SaveAndContinueButton.php │ │ │ └── SaveButton.php │ └── Page │ │ └── Edit │ │ ├── BackButton.php │ │ ├── DeleteButton.php │ │ ├── GenericButton.php │ │ ├── SaveAndContinueButton.php │ │ └── SaveButton.php ├── Catalog │ └── Breadcrumbs.php ├── LandingPage │ └── Content.php ├── LayeredNavigation │ └── Navigation │ │ └── FilterHidePlugin.php └── OverviewPage │ └── View.php ├── Console └── Command │ └── RegenerateUrlRewrites.php ├── Controller ├── Adminhtml │ ├── OverviewPage.php │ ├── OverviewPage │ │ ├── Delete.php │ │ ├── Edit.php │ │ ├── Index.php │ │ ├── NewAction.php │ │ └── Save.php │ ├── Page.php │ └── Page │ │ ├── Delete.php │ │ ├── Duplicate.php │ │ ├── Edit.php │ │ ├── Index.php │ │ ├── NewAction.php │ │ ├── Save.php │ │ └── UploadImage.php ├── LandingPage │ └── View.php └── OverviewPage │ └── View.php ├── Model ├── Catalog │ └── Layer │ │ └── State │ │ └── Plugin.php ├── Config.php ├── Config │ └── Source │ │ └── OverviewPage.php ├── Filter.php ├── FilterApplier │ ├── AggregateFilterApplier.php │ ├── FilterApplierInterface.php │ └── MagentoFilterApplier.php ├── FilterHider │ ├── FilterHiderInterface.php │ └── MagentoFilterHider.php ├── LandingPage.php ├── LandingPageContext.php ├── LandingPageRepository.php ├── OverviewPage.php ├── OverviewPage │ └── DataProvider.php ├── OverviewPageRepository.php ├── Page │ ├── DataProvider.php │ └── ImageUploader.php ├── ResourceModel │ ├── OverviewPage.php │ ├── OverviewPage │ │ └── Collection.php │ ├── Page.php │ └── Page │ │ └── Collection.php ├── Sitemap │ └── LandingPageItemProvider.php ├── System │ └── Config │ │ └── AppendUrlSuffix.php ├── UrlFinder.php └── UrlRewriteService.php ├── Observer ├── CategoryUrlSuffixObserver.php ├── InvalidateCacheObserver.php ├── SeoObserver.php ├── UrlRewriteGenerateObserver.php └── UrlRewriteRemoveObserver.php ├── Plugin └── Model │ └── SitemapPlugin.php ├── Setup └── Patch │ └── Data │ └── ConvertLandingpageEntries.php ├── Ui └── Component │ ├── Listing │ └── Column │ │ ├── OverviewPageActions.php │ │ └── PageActions.php │ └── Product │ └── Form │ └── Categories │ └── Options.php ├── etc ├── acl.xml ├── adminhtml │ ├── menu.xml │ ├── routes.xml │ └── system.xml ├── config.xml ├── db_schema.xml ├── di.xml ├── events.xml ├── frontend │ ├── events.xml │ └── routes.xml ├── module.xml └── webapi.xml ├── i18n └── nl_NL.csv ├── registration.php └── view ├── adminhtml ├── layout │ ├── emico_attributelanding_overviewpage_edit.xml │ ├── emico_attributelanding_overviewpage_index.xml │ ├── emico_attributelanding_overviewpage_new.xml │ ├── emico_attributelanding_page_edit.xml │ ├── emico_attributelanding_page_index.xml │ └── emico_attributelanding_page_new.xml └── ui_component │ ├── emico_attributelanding_overviewpage_form.xml │ ├── emico_attributelanding_overviewpage_listing.xml │ ├── emico_attributelanding_page_form.xml │ └── emico_attributelanding_page_listing.xml └── frontend ├── layout ├── emico_attributelanding_landingpage_view.xml └── emico_attributelanding_overviewpage_view.xml ├── templates ├── landing-page │ ├── bottom-content.phtml │ └── top-content.phtml └── overview-page │ └── view.phtml └── web └── css └── source └── _module.less /.github/workflows/grumphp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/.github/workflows/grumphp.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/.gitignore -------------------------------------------------------------------------------- /.grumphpinclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/.grumphpinclude -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/.releaserc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/composer.json -------------------------------------------------------------------------------- /grumphp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/grumphp.yml -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- 1 | vendor/emico/code-quality/config-templates/magento/phpcs.dist.xml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/phpstan.neon -------------------------------------------------------------------------------- /ruleset.xml: -------------------------------------------------------------------------------- 1 | vendor/emico/code-quality/config-templates/magento/ruleset.dist.xml -------------------------------------------------------------------------------- /src/Api/Data/FilterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Api/Data/FilterInterface.php -------------------------------------------------------------------------------- /src/Api/Data/LandingPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Api/Data/LandingPageInterface.php -------------------------------------------------------------------------------- /src/Api/Data/OverviewPageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Api/Data/OverviewPageInterface.php -------------------------------------------------------------------------------- /src/Api/Data/OverviewPageSearchResultsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Api/Data/OverviewPageSearchResultsInterface.php -------------------------------------------------------------------------------- /src/Api/Data/PageSearchResultsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Api/Data/PageSearchResultsInterface.php -------------------------------------------------------------------------------- /src/Api/LandingPageRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Api/LandingPageRepositoryInterface.php -------------------------------------------------------------------------------- /src/Api/OverviewPageRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Api/OverviewPageRepositoryInterface.php -------------------------------------------------------------------------------- /src/Api/UrlRewriteGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Api/UrlRewriteGeneratorInterface.php -------------------------------------------------------------------------------- /src/Block/Adminhtml/OverviewPage/Edit/BackButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Block/Adminhtml/OverviewPage/Edit/BackButton.php -------------------------------------------------------------------------------- /src/Block/Adminhtml/OverviewPage/Edit/DeleteButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Block/Adminhtml/OverviewPage/Edit/DeleteButton.php -------------------------------------------------------------------------------- /src/Block/Adminhtml/OverviewPage/Edit/GenericButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Block/Adminhtml/OverviewPage/Edit/GenericButton.php -------------------------------------------------------------------------------- /src/Block/Adminhtml/OverviewPage/Edit/SaveAndContinueButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Block/Adminhtml/OverviewPage/Edit/SaveAndContinueButton.php -------------------------------------------------------------------------------- /src/Block/Adminhtml/OverviewPage/Edit/SaveButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Block/Adminhtml/OverviewPage/Edit/SaveButton.php -------------------------------------------------------------------------------- /src/Block/Adminhtml/Page/Edit/BackButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Block/Adminhtml/Page/Edit/BackButton.php -------------------------------------------------------------------------------- /src/Block/Adminhtml/Page/Edit/DeleteButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Block/Adminhtml/Page/Edit/DeleteButton.php -------------------------------------------------------------------------------- /src/Block/Adminhtml/Page/Edit/GenericButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Block/Adminhtml/Page/Edit/GenericButton.php -------------------------------------------------------------------------------- /src/Block/Adminhtml/Page/Edit/SaveAndContinueButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Block/Adminhtml/Page/Edit/SaveAndContinueButton.php -------------------------------------------------------------------------------- /src/Block/Adminhtml/Page/Edit/SaveButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Block/Adminhtml/Page/Edit/SaveButton.php -------------------------------------------------------------------------------- /src/Block/Catalog/Breadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Block/Catalog/Breadcrumbs.php -------------------------------------------------------------------------------- /src/Block/LandingPage/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Block/LandingPage/Content.php -------------------------------------------------------------------------------- /src/Block/LayeredNavigation/Navigation/FilterHidePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Block/LayeredNavigation/Navigation/FilterHidePlugin.php -------------------------------------------------------------------------------- /src/Block/OverviewPage/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Block/OverviewPage/View.php -------------------------------------------------------------------------------- /src/Console/Command/RegenerateUrlRewrites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Console/Command/RegenerateUrlRewrites.php -------------------------------------------------------------------------------- /src/Controller/Adminhtml/OverviewPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Controller/Adminhtml/OverviewPage.php -------------------------------------------------------------------------------- /src/Controller/Adminhtml/OverviewPage/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Controller/Adminhtml/OverviewPage/Delete.php -------------------------------------------------------------------------------- /src/Controller/Adminhtml/OverviewPage/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Controller/Adminhtml/OverviewPage/Edit.php -------------------------------------------------------------------------------- /src/Controller/Adminhtml/OverviewPage/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Controller/Adminhtml/OverviewPage/Index.php -------------------------------------------------------------------------------- /src/Controller/Adminhtml/OverviewPage/NewAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Controller/Adminhtml/OverviewPage/NewAction.php -------------------------------------------------------------------------------- /src/Controller/Adminhtml/OverviewPage/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Controller/Adminhtml/OverviewPage/Save.php -------------------------------------------------------------------------------- /src/Controller/Adminhtml/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Controller/Adminhtml/Page.php -------------------------------------------------------------------------------- /src/Controller/Adminhtml/Page/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Controller/Adminhtml/Page/Delete.php -------------------------------------------------------------------------------- /src/Controller/Adminhtml/Page/Duplicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Controller/Adminhtml/Page/Duplicate.php -------------------------------------------------------------------------------- /src/Controller/Adminhtml/Page/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Controller/Adminhtml/Page/Edit.php -------------------------------------------------------------------------------- /src/Controller/Adminhtml/Page/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Controller/Adminhtml/Page/Index.php -------------------------------------------------------------------------------- /src/Controller/Adminhtml/Page/NewAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Controller/Adminhtml/Page/NewAction.php -------------------------------------------------------------------------------- /src/Controller/Adminhtml/Page/Save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Controller/Adminhtml/Page/Save.php -------------------------------------------------------------------------------- /src/Controller/Adminhtml/Page/UploadImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Controller/Adminhtml/Page/UploadImage.php -------------------------------------------------------------------------------- /src/Controller/LandingPage/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Controller/LandingPage/View.php -------------------------------------------------------------------------------- /src/Controller/OverviewPage/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Controller/OverviewPage/View.php -------------------------------------------------------------------------------- /src/Model/Catalog/Layer/State/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/Catalog/Layer/State/Plugin.php -------------------------------------------------------------------------------- /src/Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/Config.php -------------------------------------------------------------------------------- /src/Model/Config/Source/OverviewPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/Config/Source/OverviewPage.php -------------------------------------------------------------------------------- /src/Model/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/Filter.php -------------------------------------------------------------------------------- /src/Model/FilterApplier/AggregateFilterApplier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/FilterApplier/AggregateFilterApplier.php -------------------------------------------------------------------------------- /src/Model/FilterApplier/FilterApplierInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/FilterApplier/FilterApplierInterface.php -------------------------------------------------------------------------------- /src/Model/FilterApplier/MagentoFilterApplier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/FilterApplier/MagentoFilterApplier.php -------------------------------------------------------------------------------- /src/Model/FilterHider/FilterHiderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/FilterHider/FilterHiderInterface.php -------------------------------------------------------------------------------- /src/Model/FilterHider/MagentoFilterHider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/FilterHider/MagentoFilterHider.php -------------------------------------------------------------------------------- /src/Model/LandingPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/LandingPage.php -------------------------------------------------------------------------------- /src/Model/LandingPageContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/LandingPageContext.php -------------------------------------------------------------------------------- /src/Model/LandingPageRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/LandingPageRepository.php -------------------------------------------------------------------------------- /src/Model/OverviewPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/OverviewPage.php -------------------------------------------------------------------------------- /src/Model/OverviewPage/DataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/OverviewPage/DataProvider.php -------------------------------------------------------------------------------- /src/Model/OverviewPageRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/OverviewPageRepository.php -------------------------------------------------------------------------------- /src/Model/Page/DataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/Page/DataProvider.php -------------------------------------------------------------------------------- /src/Model/Page/ImageUploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/Page/ImageUploader.php -------------------------------------------------------------------------------- /src/Model/ResourceModel/OverviewPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/ResourceModel/OverviewPage.php -------------------------------------------------------------------------------- /src/Model/ResourceModel/OverviewPage/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/ResourceModel/OverviewPage/Collection.php -------------------------------------------------------------------------------- /src/Model/ResourceModel/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/ResourceModel/Page.php -------------------------------------------------------------------------------- /src/Model/ResourceModel/Page/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/ResourceModel/Page/Collection.php -------------------------------------------------------------------------------- /src/Model/Sitemap/LandingPageItemProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/Sitemap/LandingPageItemProvider.php -------------------------------------------------------------------------------- /src/Model/System/Config/AppendUrlSuffix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/System/Config/AppendUrlSuffix.php -------------------------------------------------------------------------------- /src/Model/UrlFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/UrlFinder.php -------------------------------------------------------------------------------- /src/Model/UrlRewriteService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Model/UrlRewriteService.php -------------------------------------------------------------------------------- /src/Observer/CategoryUrlSuffixObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Observer/CategoryUrlSuffixObserver.php -------------------------------------------------------------------------------- /src/Observer/InvalidateCacheObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Observer/InvalidateCacheObserver.php -------------------------------------------------------------------------------- /src/Observer/SeoObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Observer/SeoObserver.php -------------------------------------------------------------------------------- /src/Observer/UrlRewriteGenerateObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Observer/UrlRewriteGenerateObserver.php -------------------------------------------------------------------------------- /src/Observer/UrlRewriteRemoveObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Observer/UrlRewriteRemoveObserver.php -------------------------------------------------------------------------------- /src/Plugin/Model/SitemapPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Plugin/Model/SitemapPlugin.php -------------------------------------------------------------------------------- /src/Setup/Patch/Data/ConvertLandingpageEntries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Setup/Patch/Data/ConvertLandingpageEntries.php -------------------------------------------------------------------------------- /src/Ui/Component/Listing/Column/OverviewPageActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Ui/Component/Listing/Column/OverviewPageActions.php -------------------------------------------------------------------------------- /src/Ui/Component/Listing/Column/PageActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Ui/Component/Listing/Column/PageActions.php -------------------------------------------------------------------------------- /src/Ui/Component/Product/Form/Categories/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/Ui/Component/Product/Form/Categories/Options.php -------------------------------------------------------------------------------- /src/etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/etc/acl.xml -------------------------------------------------------------------------------- /src/etc/adminhtml/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/etc/adminhtml/menu.xml -------------------------------------------------------------------------------- /src/etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /src/etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /src/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/etc/config.xml -------------------------------------------------------------------------------- /src/etc/db_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/etc/db_schema.xml -------------------------------------------------------------------------------- /src/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/etc/di.xml -------------------------------------------------------------------------------- /src/etc/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/etc/events.xml -------------------------------------------------------------------------------- /src/etc/frontend/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/etc/frontend/events.xml -------------------------------------------------------------------------------- /src/etc/frontend/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/etc/frontend/routes.xml -------------------------------------------------------------------------------- /src/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/etc/module.xml -------------------------------------------------------------------------------- /src/etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/etc/webapi.xml -------------------------------------------------------------------------------- /src/i18n/nl_NL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/i18n/nl_NL.csv -------------------------------------------------------------------------------- /src/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/registration.php -------------------------------------------------------------------------------- /src/view/adminhtml/layout/emico_attributelanding_overviewpage_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/view/adminhtml/layout/emico_attributelanding_overviewpage_edit.xml -------------------------------------------------------------------------------- /src/view/adminhtml/layout/emico_attributelanding_overviewpage_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/view/adminhtml/layout/emico_attributelanding_overviewpage_index.xml -------------------------------------------------------------------------------- /src/view/adminhtml/layout/emico_attributelanding_overviewpage_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/view/adminhtml/layout/emico_attributelanding_overviewpage_new.xml -------------------------------------------------------------------------------- /src/view/adminhtml/layout/emico_attributelanding_page_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/view/adminhtml/layout/emico_attributelanding_page_edit.xml -------------------------------------------------------------------------------- /src/view/adminhtml/layout/emico_attributelanding_page_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/view/adminhtml/layout/emico_attributelanding_page_index.xml -------------------------------------------------------------------------------- /src/view/adminhtml/layout/emico_attributelanding_page_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/view/adminhtml/layout/emico_attributelanding_page_new.xml -------------------------------------------------------------------------------- /src/view/adminhtml/ui_component/emico_attributelanding_overviewpage_form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/view/adminhtml/ui_component/emico_attributelanding_overviewpage_form.xml -------------------------------------------------------------------------------- /src/view/adminhtml/ui_component/emico_attributelanding_overviewpage_listing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/view/adminhtml/ui_component/emico_attributelanding_overviewpage_listing.xml -------------------------------------------------------------------------------- /src/view/adminhtml/ui_component/emico_attributelanding_page_form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/view/adminhtml/ui_component/emico_attributelanding_page_form.xml -------------------------------------------------------------------------------- /src/view/adminhtml/ui_component/emico_attributelanding_page_listing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/view/adminhtml/ui_component/emico_attributelanding_page_listing.xml -------------------------------------------------------------------------------- /src/view/frontend/layout/emico_attributelanding_landingpage_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/view/frontend/layout/emico_attributelanding_landingpage_view.xml -------------------------------------------------------------------------------- /src/view/frontend/layout/emico_attributelanding_overviewpage_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/view/frontend/layout/emico_attributelanding_overviewpage_view.xml -------------------------------------------------------------------------------- /src/view/frontend/templates/landing-page/bottom-content.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/view/frontend/templates/landing-page/bottom-content.phtml -------------------------------------------------------------------------------- /src/view/frontend/templates/landing-page/top-content.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/view/frontend/templates/landing-page/top-content.phtml -------------------------------------------------------------------------------- /src/view/frontend/templates/overview-page/view.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/view/frontend/templates/overview-page/view.phtml -------------------------------------------------------------------------------- /src/view/frontend/web/css/source/_module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmicoEcommerce/Magento2AttributeLanding/HEAD/src/view/frontend/web/css/source/_module.less --------------------------------------------------------------------------------