├── Api ├── GetCategoryUrlByIdManagementInterface.php ├── GetProductUrlByIdManagementInterface.php └── GetProductUrlBySkuManagementInterface.php ├── Model ├── GetCategoryUrlByIdManagement.php ├── GetProductUrlByIdManagement.php └── GetProductUrlBySkuManagement.php ├── README.md ├── composer.json ├── etc ├── di.xml ├── module.xml └── webapi.xml └── registration.php /Api/GetCategoryUrlByIdManagementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magefan/module-urlwebapi/HEAD/Api/GetCategoryUrlByIdManagementInterface.php -------------------------------------------------------------------------------- /Api/GetProductUrlByIdManagementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magefan/module-urlwebapi/HEAD/Api/GetProductUrlByIdManagementInterface.php -------------------------------------------------------------------------------- /Api/GetProductUrlBySkuManagementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magefan/module-urlwebapi/HEAD/Api/GetProductUrlBySkuManagementInterface.php -------------------------------------------------------------------------------- /Model/GetCategoryUrlByIdManagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magefan/module-urlwebapi/HEAD/Model/GetCategoryUrlByIdManagement.php -------------------------------------------------------------------------------- /Model/GetProductUrlByIdManagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magefan/module-urlwebapi/HEAD/Model/GetProductUrlByIdManagement.php -------------------------------------------------------------------------------- /Model/GetProductUrlBySkuManagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magefan/module-urlwebapi/HEAD/Model/GetProductUrlBySkuManagement.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magefan/module-urlwebapi/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magefan/module-urlwebapi/HEAD/composer.json -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magefan/module-urlwebapi/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magefan/module-urlwebapi/HEAD/etc/module.xml -------------------------------------------------------------------------------- /etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magefan/module-urlwebapi/HEAD/etc/webapi.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magefan/module-urlwebapi/HEAD/registration.php --------------------------------------------------------------------------------