├── README.md ├── composer.json ├── modman └── src ├── Block └── System │ └── Config │ └── Form │ └── Field │ └── Version.php ├── Helper └── Data.php ├── LICENSE.txt ├── Model └── Carrier │ └── CustomShipping.php ├── composer.json ├── etc ├── adminhtml │ └── system.xml ├── config.xml └── module.xml ├── i18n └── en_US.csv ├── registration.php └── view └── frontend ├── layout ├── checkout_cart_index.xml └── checkout_index_index.xml └── web └── js ├── model ├── shipping-rates-validation-rules.js └── shipping-rates-validator.js └── view └── shipping-rates-validation.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/composer.json -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- 1 | src/ app/code/MagePsycho/CustomShipping/ 2 | -------------------------------------------------------------------------------- /src/Block/System/Config/Form/Field/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/src/Block/System/Config/Form/Field/Version.php -------------------------------------------------------------------------------- /src/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/src/Helper/Data.php -------------------------------------------------------------------------------- /src/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/src/LICENSE.txt -------------------------------------------------------------------------------- /src/Model/Carrier/CustomShipping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/src/Model/Carrier/CustomShipping.php -------------------------------------------------------------------------------- /src/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/src/composer.json -------------------------------------------------------------------------------- /src/etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/src/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /src/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/src/etc/config.xml -------------------------------------------------------------------------------- /src/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/src/etc/module.xml -------------------------------------------------------------------------------- /src/i18n/en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/src/i18n/en_US.csv -------------------------------------------------------------------------------- /src/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/src/registration.php -------------------------------------------------------------------------------- /src/view/frontend/layout/checkout_cart_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/src/view/frontend/layout/checkout_cart_index.xml -------------------------------------------------------------------------------- /src/view/frontend/layout/checkout_index_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/src/view/frontend/layout/checkout_index_index.xml -------------------------------------------------------------------------------- /src/view/frontend/web/js/model/shipping-rates-validation-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/src/view/frontend/web/js/model/shipping-rates-validation-rules.js -------------------------------------------------------------------------------- /src/view/frontend/web/js/model/shipping-rates-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/src/view/frontend/web/js/model/shipping-rates-validator.js -------------------------------------------------------------------------------- /src/view/frontend/web/js/view/shipping-rates-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagePsycho/magento2-custom-shipping/HEAD/src/view/frontend/web/js/view/shipping-rates-validation.js --------------------------------------------------------------------------------