├── LICENSE.md ├── README.md ├── app ├── .DS_Store ├── code │ └── community │ │ └── Meanbee │ │ └── EstimatedDelivery │ │ ├── Block │ │ ├── Adminhtml │ │ │ ├── Estimateddelivery.php │ │ │ └── Estimateddelivery │ │ │ │ ├── Edit.php │ │ │ │ ├── Edit │ │ │ │ └── Form.php │ │ │ │ └── Grid.php │ │ ├── Checkout │ │ │ └── Onepage │ │ │ │ └── Success │ │ │ │ └── Estimateddelivery.php │ │ └── Form │ │ │ └── Element │ │ │ └── DateInterval.php │ │ ├── Helper │ │ ├── BankHoliday.php │ │ └── Data.php │ │ ├── Model │ │ ├── Estimateddelivery.php │ │ ├── Observer.php │ │ ├── Resource │ │ │ ├── Estimateddelivery.php │ │ │ └── Estimateddelivery │ │ │ │ └── Collection.php │ │ ├── Source │ │ │ ├── HolidayRegions.php │ │ │ └── TimeResolution.php │ │ └── System │ │ │ └── Config │ │ │ └── Source │ │ │ └── Times.php │ │ ├── Test │ │ ├── Helper │ │ │ ├── Data.php │ │ │ ├── expectations │ │ │ │ ├── testGetDaysUntilDispatchDate.yaml │ │ │ │ ├── testGetDaysUntilEstimatedDeliveryToAndFrom.yaml │ │ │ │ ├── testGetDispatchDate.yaml │ │ │ │ └── testGetEstimatedDeliveryToAndFrom.yaml │ │ │ └── providers │ │ │ │ ├── testGetDaysUntilDispatchDate.yaml │ │ │ │ ├── testGetDaysUntilEstimatedDeliveryToAndFrom.yaml │ │ │ │ ├── testGetDispatchDate.yaml │ │ │ │ └── testGetEstimatedDeliveryToAndFrom.yaml │ │ └── fixtures │ │ │ └── estimatedDelivery.yaml │ │ ├── controllers │ │ └── EstimateddeliveryController.php │ │ ├── etc │ │ ├── adminhtml.xml │ │ ├── config.xml │ │ └── system.xml │ │ └── sql │ │ └── meanbee_estimateddelivery_setup │ │ ├── mysql4-install-1.0.0.php │ │ ├── mysql4-upgrade-1.0.0-1.1.0.php │ │ ├── mysql4-upgrade-1.2.0-1.3.0.php │ │ ├── mysql4-upgrade-1.3.0-1.3.1.php │ │ ├── mysql4-upgrade-1.3.1-1.3.2.php │ │ └── mysql4-upgrade-1.3.6-1.4.0.php ├── design │ ├── adminhtml │ │ └── default │ │ │ └── default │ │ │ ├── layout │ │ │ └── meanbee │ │ │ │ └── estimated_delivery.xml │ │ │ └── template │ │ │ └── meanbee │ │ │ └── estimated_delivery │ │ │ └── sales │ │ │ └── order │ │ │ ├── create │ │ │ └── shipping │ │ │ │ └── method │ │ │ │ └── form.phtml │ │ │ └── view │ │ │ └── tab │ │ │ └── info.phtml │ └── frontend │ │ └── base │ │ └── default │ │ ├── layout │ │ └── meanbee │ │ │ └── estimated_delivery.xml │ │ └── template │ │ └── meanbee │ │ └── estimated_delivery │ │ ├── checkout │ │ └── onepage │ │ │ ├── shipping_method │ │ │ └── available.phtml │ │ │ └── success │ │ │ └── estimated_delivery.phtml │ │ ├── paypal │ │ └── express │ │ │ └── review.phtml │ │ └── sales │ │ └── order │ │ └── info.phtml └── etc │ └── modules │ └── Meanbee_EstimatedDelivery.xml ├── composer.json ├── js └── meanbee │ └── estimated_delivery │ └── selectslot.js ├── modman ├── package.xml └── skin ├── adminhtml └── base │ └── default │ └── css │ └── meanbee │ └── estimated_delivery.css └── frontend └── base └── default └── css └── meanbee └── estimated_delivery.css /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/README.md -------------------------------------------------------------------------------- /app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/.DS_Store -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Block/Adminhtml/Estimateddelivery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Block/Adminhtml/Estimateddelivery.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Block/Adminhtml/Estimateddelivery/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Block/Adminhtml/Estimateddelivery/Edit.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Block/Adminhtml/Estimateddelivery/Edit/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Block/Adminhtml/Estimateddelivery/Edit/Form.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Block/Adminhtml/Estimateddelivery/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Block/Adminhtml/Estimateddelivery/Grid.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Block/Checkout/Onepage/Success/Estimateddelivery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Block/Checkout/Onepage/Success/Estimateddelivery.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Block/Form/Element/DateInterval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Block/Form/Element/DateInterval.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Helper/BankHoliday.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Helper/BankHoliday.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Helper/Data.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Model/Estimateddelivery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Model/Estimateddelivery.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Model/Observer.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Model/Resource/Estimateddelivery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Model/Resource/Estimateddelivery.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Model/Resource/Estimateddelivery/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Model/Resource/Estimateddelivery/Collection.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Model/Source/HolidayRegions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Model/Source/HolidayRegions.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Model/Source/TimeResolution.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Model/Source/TimeResolution.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Model/System/Config/Source/Times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Model/System/Config/Source/Times.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Test/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Test/Helper/Data.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Test/Helper/expectations/testGetDaysUntilDispatchDate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Test/Helper/expectations/testGetDaysUntilDispatchDate.yaml -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Test/Helper/expectations/testGetDaysUntilEstimatedDeliveryToAndFrom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Test/Helper/expectations/testGetDaysUntilEstimatedDeliveryToAndFrom.yaml -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Test/Helper/expectations/testGetDispatchDate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Test/Helper/expectations/testGetDispatchDate.yaml -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Test/Helper/expectations/testGetEstimatedDeliveryToAndFrom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Test/Helper/expectations/testGetEstimatedDeliveryToAndFrom.yaml -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Test/Helper/providers/testGetDaysUntilDispatchDate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Test/Helper/providers/testGetDaysUntilDispatchDate.yaml -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Test/Helper/providers/testGetDaysUntilEstimatedDeliveryToAndFrom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Test/Helper/providers/testGetDaysUntilEstimatedDeliveryToAndFrom.yaml -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Test/Helper/providers/testGetDispatchDate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Test/Helper/providers/testGetDispatchDate.yaml -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Test/Helper/providers/testGetEstimatedDeliveryToAndFrom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Test/Helper/providers/testGetEstimatedDeliveryToAndFrom.yaml -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/Test/fixtures/estimatedDelivery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/Test/fixtures/estimatedDelivery.yaml -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/controllers/EstimateddeliveryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/controllers/EstimateddeliveryController.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/etc/adminhtml.xml -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/etc/config.xml -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/etc/system.xml -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/sql/meanbee_estimateddelivery_setup/mysql4-install-1.0.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/sql/meanbee_estimateddelivery_setup/mysql4-install-1.0.0.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/sql/meanbee_estimateddelivery_setup/mysql4-upgrade-1.0.0-1.1.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/sql/meanbee_estimateddelivery_setup/mysql4-upgrade-1.0.0-1.1.0.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/sql/meanbee_estimateddelivery_setup/mysql4-upgrade-1.2.0-1.3.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/sql/meanbee_estimateddelivery_setup/mysql4-upgrade-1.2.0-1.3.0.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/sql/meanbee_estimateddelivery_setup/mysql4-upgrade-1.3.0-1.3.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/sql/meanbee_estimateddelivery_setup/mysql4-upgrade-1.3.0-1.3.1.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/sql/meanbee_estimateddelivery_setup/mysql4-upgrade-1.3.1-1.3.2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/sql/meanbee_estimateddelivery_setup/mysql4-upgrade-1.3.1-1.3.2.php -------------------------------------------------------------------------------- /app/code/community/Meanbee/EstimatedDelivery/sql/meanbee_estimateddelivery_setup/mysql4-upgrade-1.3.6-1.4.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/code/community/Meanbee/EstimatedDelivery/sql/meanbee_estimateddelivery_setup/mysql4-upgrade-1.3.6-1.4.0.php -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/layout/meanbee/estimated_delivery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/design/adminhtml/default/default/layout/meanbee/estimated_delivery.xml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/meanbee/estimated_delivery/sales/order/create/shipping/method/form.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/design/adminhtml/default/default/template/meanbee/estimated_delivery/sales/order/create/shipping/method/form.phtml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/meanbee/estimated_delivery/sales/order/view/tab/info.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/design/adminhtml/default/default/template/meanbee/estimated_delivery/sales/order/view/tab/info.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/layout/meanbee/estimated_delivery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/design/frontend/base/default/layout/meanbee/estimated_delivery.xml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/meanbee/estimated_delivery/checkout/onepage/shipping_method/available.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/design/frontend/base/default/template/meanbee/estimated_delivery/checkout/onepage/shipping_method/available.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/meanbee/estimated_delivery/checkout/onepage/success/estimated_delivery.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/design/frontend/base/default/template/meanbee/estimated_delivery/checkout/onepage/success/estimated_delivery.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/meanbee/estimated_delivery/paypal/express/review.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/design/frontend/base/default/template/meanbee/estimated_delivery/paypal/express/review.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/meanbee/estimated_delivery/sales/order/info.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/design/frontend/base/default/template/meanbee/estimated_delivery/sales/order/info.phtml -------------------------------------------------------------------------------- /app/etc/modules/Meanbee_EstimatedDelivery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/app/etc/modules/Meanbee_EstimatedDelivery.xml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/composer.json -------------------------------------------------------------------------------- /js/meanbee/estimated_delivery/selectslot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/js/meanbee/estimated_delivery/selectslot.js -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/modman -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/package.xml -------------------------------------------------------------------------------- /skin/adminhtml/base/default/css/meanbee/estimated_delivery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/skin/adminhtml/base/default/css/meanbee/estimated_delivery.css -------------------------------------------------------------------------------- /skin/frontend/base/default/css/meanbee/estimated_delivery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meanbee/magento-estimateddelivery/HEAD/skin/frontend/base/default/css/meanbee/estimated_delivery.css --------------------------------------------------------------------------------