├── .circleci └── config.yml ├── Block └── FullBreadcrumbs.php ├── Helper └── Data.php ├── LICENSE ├── README.md ├── Test └── Unit │ ├── Block │ └── FullBreadcrumbsTest.php │ └── Helper │ └── DataTest.php ├── composer.json ├── copyright.txt ├── etc ├── adminhtml │ └── system.xml └── module.xml ├── header.sh ├── registration.php └── view └── frontend ├── layout └── catalog_product_view.xml ├── requirejs-config.js ├── templates └── fullbreadcrumbs.phtml └── web ├── css └── replace_breadcrumbs.css └── js └── replace_breadcrumbs.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /Block/FullBreadcrumbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/Block/FullBreadcrumbs.php -------------------------------------------------------------------------------- /Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/Helper/Data.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/README.md -------------------------------------------------------------------------------- /Test/Unit/Block/FullBreadcrumbsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/Test/Unit/Block/FullBreadcrumbsTest.php -------------------------------------------------------------------------------- /Test/Unit/Helper/DataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/Test/Unit/Helper/DataTest.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/composer.json -------------------------------------------------------------------------------- /copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/copyright.txt -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/etc/module.xml -------------------------------------------------------------------------------- /header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/header.sh -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/registration.php -------------------------------------------------------------------------------- /view/frontend/layout/catalog_product_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/view/frontend/layout/catalog_product_view.xml -------------------------------------------------------------------------------- /view/frontend/requirejs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/view/frontend/requirejs-config.js -------------------------------------------------------------------------------- /view/frontend/templates/fullbreadcrumbs.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/view/frontend/templates/fullbreadcrumbs.phtml -------------------------------------------------------------------------------- /view/frontend/web/css/replace_breadcrumbs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/view/frontend/web/css/replace_breadcrumbs.css -------------------------------------------------------------------------------- /view/frontend/web/js/replace_breadcrumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EaDesgin/magento2-full-path-category-product-breadcrumb/HEAD/view/frontend/web/js/replace_breadcrumbs.js --------------------------------------------------------------------------------