├── .gitattributes ├── Api ├── CategoryUrlRetrieverInterface.php ├── CmsPageUrlRetrieverInterface.php ├── ProductUrlRetrieverInterface.php └── UrlRetrieverInterface.php ├── Block └── HrefLang.php ├── CHANGELOG.md ├── LICENSE ├── Model ├── Adapter.php ├── Adapter │ ├── Category.php │ ├── Page.php │ └── Product.php ├── AdapterInterface.php ├── BlockParser.php ├── Config.php ├── Property.php └── PropertyInterface.php ├── README.md ├── Service └── HrefLang │ ├── AlternativeUrlService.php │ ├── CategoryUrlRetriever.php │ ├── CmsPageUrlRetriever.php │ └── ProductUrlRetriever.php ├── composer.json ├── etc ├── di.xml └── module.xml ├── registration.php └── view └── frontend ├── layout └── default.xml └── templates └── hreflang.phtml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/.gitattributes -------------------------------------------------------------------------------- /Api/CategoryUrlRetrieverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Api/CategoryUrlRetrieverInterface.php -------------------------------------------------------------------------------- /Api/CmsPageUrlRetrieverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Api/CmsPageUrlRetrieverInterface.php -------------------------------------------------------------------------------- /Api/ProductUrlRetrieverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Api/ProductUrlRetrieverInterface.php -------------------------------------------------------------------------------- /Api/UrlRetrieverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Api/UrlRetrieverInterface.php -------------------------------------------------------------------------------- /Block/HrefLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Block/HrefLang.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/LICENSE -------------------------------------------------------------------------------- /Model/Adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Model/Adapter.php -------------------------------------------------------------------------------- /Model/Adapter/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Model/Adapter/Category.php -------------------------------------------------------------------------------- /Model/Adapter/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Model/Adapter/Page.php -------------------------------------------------------------------------------- /Model/Adapter/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Model/Adapter/Product.php -------------------------------------------------------------------------------- /Model/AdapterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Model/AdapterInterface.php -------------------------------------------------------------------------------- /Model/BlockParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Model/BlockParser.php -------------------------------------------------------------------------------- /Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Model/Config.php -------------------------------------------------------------------------------- /Model/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Model/Property.php -------------------------------------------------------------------------------- /Model/PropertyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Model/PropertyInterface.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/README.md -------------------------------------------------------------------------------- /Service/HrefLang/AlternativeUrlService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Service/HrefLang/AlternativeUrlService.php -------------------------------------------------------------------------------- /Service/HrefLang/CategoryUrlRetriever.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Service/HrefLang/CategoryUrlRetriever.php -------------------------------------------------------------------------------- /Service/HrefLang/CmsPageUrlRetriever.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Service/HrefLang/CmsPageUrlRetriever.php -------------------------------------------------------------------------------- /Service/HrefLang/ProductUrlRetriever.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/Service/HrefLang/ProductUrlRetriever.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/composer.json -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/registration.php -------------------------------------------------------------------------------- /view/frontend/layout/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/view/frontend/layout/default.xml -------------------------------------------------------------------------------- /view/frontend/templates/hreflang.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brnquester/magento2-hrefLang/HEAD/view/frontend/templates/hreflang.phtml --------------------------------------------------------------------------------