├── .github ├── FUNDING.yml └── workflows │ ├── coding-standard.yml │ ├── integration.yml │ ├── mess-detector.yml │ └── phpstan.yml ├── LICENSE ├── Plugin ├── RemoveCompareSectionNamePlugin.php ├── RemoveCompareSectionPlugin.php ├── RemoveCompareUrlPlugin.php └── RemoveCompareWidgetPlugin.php ├── README.md ├── Test └── Integration │ └── RemoveLinksTest.php ├── composer.json ├── etc ├── frontend │ └── di.xml └── module.xml ├── registration.php └── view └── frontend ├── layout └── default.xml ├── requirejs-config.js └── web └── js └── storage-manager-mixin.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [customgento] 2 | -------------------------------------------------------------------------------- /.github/workflows/coding-standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/.github/workflows/coding-standard.yml -------------------------------------------------------------------------------- /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.github/workflows/mess-detector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/.github/workflows/mess-detector.yml -------------------------------------------------------------------------------- /.github/workflows/phpstan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/.github/workflows/phpstan.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugin/RemoveCompareSectionNamePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/Plugin/RemoveCompareSectionNamePlugin.php -------------------------------------------------------------------------------- /Plugin/RemoveCompareSectionPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/Plugin/RemoveCompareSectionPlugin.php -------------------------------------------------------------------------------- /Plugin/RemoveCompareUrlPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/Plugin/RemoveCompareUrlPlugin.php -------------------------------------------------------------------------------- /Plugin/RemoveCompareWidgetPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/Plugin/RemoveCompareWidgetPlugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/README.md -------------------------------------------------------------------------------- /Test/Integration/RemoveLinksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/Test/Integration/RemoveLinksTest.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/composer.json -------------------------------------------------------------------------------- /etc/frontend/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/etc/frontend/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/registration.php -------------------------------------------------------------------------------- /view/frontend/layout/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/view/frontend/layout/default.xml -------------------------------------------------------------------------------- /view/frontend/requirejs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/view/frontend/requirejs-config.js -------------------------------------------------------------------------------- /view/frontend/web/js/storage-manager-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/customgento/module-remove-product-comparison-m2/HEAD/view/frontend/web/js/storage-manager-mixin.js --------------------------------------------------------------------------------