├── app └── code │ └── Atwix │ └── RegistryAlternative │ ├── Service │ ├── GetCurrentCategoryService.php │ └── GetCurrentProductService.php │ ├── ViewModel │ └── BackToCategoryViewModel.php │ ├── composer.json │ ├── etc │ └── module.xml │ ├── registration.php │ └── view │ └── frontend │ ├── layout │ └── catalog_product_view.xml │ ├── templates │ └── product │ │ └── back_to_category.phtml │ └── web │ └── images │ └── back-to-category.jpg └── readme.md /app/code/Atwix/RegistryAlternative/Service/GetCurrentCategoryService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atwix/atwix-blog-magento2-registry-deprecated-solutions/HEAD/app/code/Atwix/RegistryAlternative/Service/GetCurrentCategoryService.php -------------------------------------------------------------------------------- /app/code/Atwix/RegistryAlternative/Service/GetCurrentProductService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atwix/atwix-blog-magento2-registry-deprecated-solutions/HEAD/app/code/Atwix/RegistryAlternative/Service/GetCurrentProductService.php -------------------------------------------------------------------------------- /app/code/Atwix/RegistryAlternative/ViewModel/BackToCategoryViewModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atwix/atwix-blog-magento2-registry-deprecated-solutions/HEAD/app/code/Atwix/RegistryAlternative/ViewModel/BackToCategoryViewModel.php -------------------------------------------------------------------------------- /app/code/Atwix/RegistryAlternative/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atwix/atwix-blog-magento2-registry-deprecated-solutions/HEAD/app/code/Atwix/RegistryAlternative/composer.json -------------------------------------------------------------------------------- /app/code/Atwix/RegistryAlternative/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atwix/atwix-blog-magento2-registry-deprecated-solutions/HEAD/app/code/Atwix/RegistryAlternative/etc/module.xml -------------------------------------------------------------------------------- /app/code/Atwix/RegistryAlternative/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atwix/atwix-blog-magento2-registry-deprecated-solutions/HEAD/app/code/Atwix/RegistryAlternative/registration.php -------------------------------------------------------------------------------- /app/code/Atwix/RegistryAlternative/view/frontend/layout/catalog_product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atwix/atwix-blog-magento2-registry-deprecated-solutions/HEAD/app/code/Atwix/RegistryAlternative/view/frontend/layout/catalog_product_view.xml -------------------------------------------------------------------------------- /app/code/Atwix/RegistryAlternative/view/frontend/templates/product/back_to_category.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atwix/atwix-blog-magento2-registry-deprecated-solutions/HEAD/app/code/Atwix/RegistryAlternative/view/frontend/templates/product/back_to_category.phtml -------------------------------------------------------------------------------- /app/code/Atwix/RegistryAlternative/view/frontend/web/images/back-to-category.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atwix/atwix-blog-magento2-registry-deprecated-solutions/HEAD/app/code/Atwix/RegistryAlternative/view/frontend/web/images/back-to-category.jpg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atwix/atwix-blog-magento2-registry-deprecated-solutions/HEAD/readme.md --------------------------------------------------------------------------------