├── README.md ├── app ├── code │ └── community │ │ └── DPD │ │ └── Shipping │ │ ├── Block │ │ ├── Adminhtml │ │ │ ├── Sales │ │ │ │ ├── Order.php │ │ │ │ └── Order │ │ │ │ │ ├── Grid.php │ │ │ │ │ ├── Grid │ │ │ │ │ └── Renderer │ │ │ │ │ │ └── Shippingmethod.php │ │ │ │ │ └── View │ │ │ │ │ └── Tab │ │ │ │ │ └── Returnlabels.php │ │ │ ├── Shipping │ │ │ │ └── Carrier │ │ │ │ │ ├── Dpdclassic │ │ │ │ │ └── Tablerate │ │ │ │ │ │ └── Grid.php │ │ │ │ │ └── Dpdparcelshops │ │ │ │ │ └── Tablerate │ │ │ │ │ └── Grid.php │ │ │ └── System │ │ │ │ └── Config │ │ │ │ └── Form │ │ │ │ ├── Availability.php │ │ │ │ ├── Dpdclassicexport.php │ │ │ │ └── Dpdparcelshopsexport.php │ │ └── Carrier │ │ │ └── Parcelshop.php │ │ ├── Helper │ │ └── Data.php │ │ ├── Model │ │ ├── Adminhtml │ │ │ ├── Dpdgrid.php │ │ │ └── System │ │ │ │ └── Config │ │ │ │ └── Backend │ │ │ │ └── Shipping │ │ │ │ ├── Dpdclassic │ │ │ │ └── Tablerate.php │ │ │ │ ├── Dpdparcelshops │ │ │ │ └── Tablerate.php │ │ │ │ └── Specialparcelshops.php │ │ ├── Carrier │ │ │ ├── Dpdclassic.php │ │ │ └── Dpdparcelshops.php │ │ ├── Dpdclassic │ │ │ └── Tablerate.php │ │ ├── Dpdparcelshops │ │ │ └── Tablerate.php │ │ ├── Mysql4 │ │ │ ├── Dpdclassic │ │ │ │ ├── Tablerate.php │ │ │ │ └── Tablerate │ │ │ │ │ └── Collection.php │ │ │ ├── Dpdparcelshops │ │ │ │ ├── Tablerate.php │ │ │ │ └── Tablerate │ │ │ │ │ └── Collection.php │ │ │ ├── Returnlabels.php │ │ │ ├── Returnlabels │ │ │ │ └── Collection.php │ │ │ ├── Specialparcelshops.php │ │ │ └── Specialparcelshops │ │ │ │ └── Collection.php │ │ ├── Observer.php │ │ ├── Returnlabels.php │ │ ├── Specialparcelshops.php │ │ ├── System │ │ │ └── Config │ │ │ │ └── Source │ │ │ │ ├── Display.php │ │ │ │ ├── Paperformat.php │ │ │ │ ├── Ratetypes.php │ │ │ │ └── Weightunit.php │ │ └── Webservice.php │ │ ├── controllers │ │ ├── Adminhtml │ │ │ ├── DpdconfigController.php │ │ │ └── DpdorderController.php │ │ └── AjaxController.php │ │ ├── etc │ │ ├── adminhtml.xml │ │ ├── config.xml │ │ └── system.xml │ │ └── sql │ │ └── dpd_setup │ │ ├── mysql4-install-0.0.1.php │ │ ├── mysql4-upgrade-0.0.1-0.0.2.php │ │ ├── mysql4-upgrade-0.0.2-0.0.3.php │ │ ├── mysql4-upgrade-0.0.3-0.0.4.php │ │ ├── mysql4-upgrade-0.0.4-0.0.5.php │ │ ├── mysql4-upgrade-0.0.5-0.0.6.php │ │ ├── mysql4-upgrade-0.0.6-0.0.7.php │ │ ├── mysql4-upgrade-0.0.7-0.0.8.php │ │ ├── mysql4-upgrade-0.0.8-0.0.9.php │ │ ├── mysql4-upgrade-0.0.9-0.1.0.php │ │ └── mysql4-upgrade-1.0.5-1.0.6.php ├── design │ ├── adminhtml │ │ └── default │ │ │ └── default │ │ │ ├── layout │ │ │ └── dpd │ │ │ │ └── shipping.xml │ │ │ └── template │ │ │ └── dpd │ │ │ ├── order │ │ │ └── view │ │ │ │ └── tab │ │ │ │ └── returnlabels.phtml │ │ │ └── system │ │ │ └── config │ │ │ └── availability.phtml │ └── frontend │ │ └── base │ │ └── default │ │ ├── layout │ │ └── dpd_shipping.xml │ │ └── template │ │ └── dpd │ │ ├── gmapsapi.phtml │ │ ├── ordertracking.phtml │ │ ├── parcelshop.phtml │ │ ├── parcelshoplink.phtml │ │ └── parcelshopselected.phtml ├── etc │ └── modules │ │ └── zDPD_Shipping.xml └── locale │ ├── de_DE │ ├── DPD_Shipping.csv │ └── template │ │ └── email │ │ └── sales │ │ └── dpd_returnlabel.html │ ├── en_US │ ├── DPD_Shipping.csv │ └── template │ │ └── email │ │ └── sales │ │ └── dpd_returnlabel.html │ ├── fr_FR │ ├── DPD_Shipping.csv │ └── template │ │ └── email │ │ └── sales │ │ └── dpd_returnlabel.html │ └── nl_NL │ ├── DPD_Shipping.csv │ └── template │ └── email │ └── sales │ └── dpd_returnlabel.html ├── js └── dpd │ ├── onestepcheckout_shipping.js │ ├── shipping.js │ └── window │ └── shipping.js └── skin ├── adminhtml └── default │ └── default │ └── dpd │ └── returnlabel │ └── instructions.pdf └── frontend └── base └── default ├── css └── dpd │ ├── shipping.css │ └── window.css └── images └── dpd ├── ajax-loader.gif ├── button_close.png ├── dpd_parcelshop_logo.png ├── icon_info.gif ├── icon_info.png ├── icon_parcelshop.png ├── icon_parcelshop_shadow.png └── icon_route.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/README.md -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Block/Adminhtml/Sales/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Block/Adminhtml/Sales/Order.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Block/Adminhtml/Sales/Order/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Block/Adminhtml/Sales/Order/Grid.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Block/Adminhtml/Sales/Order/Grid/Renderer/Shippingmethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Block/Adminhtml/Sales/Order/Grid/Renderer/Shippingmethod.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Block/Adminhtml/Sales/Order/View/Tab/Returnlabels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Block/Adminhtml/Sales/Order/View/Tab/Returnlabels.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Block/Adminhtml/Shipping/Carrier/Dpdclassic/Tablerate/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Block/Adminhtml/Shipping/Carrier/Dpdclassic/Tablerate/Grid.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Block/Adminhtml/Shipping/Carrier/Dpdparcelshops/Tablerate/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Block/Adminhtml/Shipping/Carrier/Dpdparcelshops/Tablerate/Grid.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Block/Adminhtml/System/Config/Form/Availability.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Block/Adminhtml/System/Config/Form/Availability.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Block/Adminhtml/System/Config/Form/Dpdclassicexport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Block/Adminhtml/System/Config/Form/Dpdclassicexport.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Block/Adminhtml/System/Config/Form/Dpdparcelshopsexport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Block/Adminhtml/System/Config/Form/Dpdparcelshopsexport.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Block/Carrier/Parcelshop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Block/Carrier/Parcelshop.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Helper/Data.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Adminhtml/Dpdgrid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Adminhtml/Dpdgrid.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Adminhtml/System/Config/Backend/Shipping/Dpdclassic/Tablerate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Adminhtml/System/Config/Backend/Shipping/Dpdclassic/Tablerate.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Adminhtml/System/Config/Backend/Shipping/Dpdparcelshops/Tablerate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Adminhtml/System/Config/Backend/Shipping/Dpdparcelshops/Tablerate.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Adminhtml/System/Config/Backend/Shipping/Specialparcelshops.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Adminhtml/System/Config/Backend/Shipping/Specialparcelshops.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Carrier/Dpdclassic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Carrier/Dpdclassic.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Carrier/Dpdparcelshops.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Carrier/Dpdparcelshops.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Dpdclassic/Tablerate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Dpdclassic/Tablerate.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Dpdparcelshops/Tablerate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Dpdparcelshops/Tablerate.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Mysql4/Dpdclassic/Tablerate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Mysql4/Dpdclassic/Tablerate.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Mysql4/Dpdclassic/Tablerate/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Mysql4/Dpdclassic/Tablerate/Collection.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Mysql4/Dpdparcelshops/Tablerate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Mysql4/Dpdparcelshops/Tablerate.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Mysql4/Dpdparcelshops/Tablerate/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Mysql4/Dpdparcelshops/Tablerate/Collection.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Mysql4/Returnlabels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Mysql4/Returnlabels.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Mysql4/Returnlabels/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Mysql4/Returnlabels/Collection.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Mysql4/Specialparcelshops.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Mysql4/Specialparcelshops.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Mysql4/Specialparcelshops/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Mysql4/Specialparcelshops/Collection.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Observer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Observer.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Returnlabels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Returnlabels.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Specialparcelshops.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Specialparcelshops.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/System/Config/Source/Display.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/System/Config/Source/Display.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/System/Config/Source/Paperformat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/System/Config/Source/Paperformat.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/System/Config/Source/Ratetypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/System/Config/Source/Ratetypes.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/System/Config/Source/Weightunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/System/Config/Source/Weightunit.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/Model/Webservice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/Model/Webservice.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/controllers/Adminhtml/DpdconfigController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/controllers/Adminhtml/DpdconfigController.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/controllers/Adminhtml/DpdorderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/controllers/Adminhtml/DpdorderController.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/controllers/AjaxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/controllers/AjaxController.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/etc/adminhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/etc/adminhtml.xml -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/etc/config.xml -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/etc/system.xml -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-install-0.0.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-install-0.0.1.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.1-0.0.2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.1-0.0.2.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.2-0.0.3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.2-0.0.3.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.3-0.0.4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.3-0.0.4.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.4-0.0.5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.4-0.0.5.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.5-0.0.6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.5-0.0.6.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.6-0.0.7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.6-0.0.7.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.7-0.0.8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.7-0.0.8.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.8-0.0.9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.8-0.0.9.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.9-0.1.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-0.0.9-0.1.0.php -------------------------------------------------------------------------------- /app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-1.0.5-1.0.6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/code/community/DPD/Shipping/sql/dpd_setup/mysql4-upgrade-1.0.5-1.0.6.php -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/layout/dpd/shipping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/design/adminhtml/default/default/layout/dpd/shipping.xml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/dpd/order/view/tab/returnlabels.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/design/adminhtml/default/default/template/dpd/order/view/tab/returnlabels.phtml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/dpd/system/config/availability.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/design/adminhtml/default/default/template/dpd/system/config/availability.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/layout/dpd_shipping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/design/frontend/base/default/layout/dpd_shipping.xml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/dpd/gmapsapi.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/design/frontend/base/default/template/dpd/gmapsapi.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/dpd/ordertracking.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/design/frontend/base/default/template/dpd/ordertracking.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/dpd/parcelshop.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/design/frontend/base/default/template/dpd/parcelshop.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/dpd/parcelshoplink.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/design/frontend/base/default/template/dpd/parcelshoplink.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/dpd/parcelshopselected.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/design/frontend/base/default/template/dpd/parcelshopselected.phtml -------------------------------------------------------------------------------- /app/etc/modules/zDPD_Shipping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/etc/modules/zDPD_Shipping.xml -------------------------------------------------------------------------------- /app/locale/de_DE/DPD_Shipping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/locale/de_DE/DPD_Shipping.csv -------------------------------------------------------------------------------- /app/locale/de_DE/template/email/sales/dpd_returnlabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/locale/de_DE/template/email/sales/dpd_returnlabel.html -------------------------------------------------------------------------------- /app/locale/en_US/DPD_Shipping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/locale/en_US/DPD_Shipping.csv -------------------------------------------------------------------------------- /app/locale/en_US/template/email/sales/dpd_returnlabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/locale/en_US/template/email/sales/dpd_returnlabel.html -------------------------------------------------------------------------------- /app/locale/fr_FR/DPD_Shipping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/locale/fr_FR/DPD_Shipping.csv -------------------------------------------------------------------------------- /app/locale/fr_FR/template/email/sales/dpd_returnlabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/locale/fr_FR/template/email/sales/dpd_returnlabel.html -------------------------------------------------------------------------------- /app/locale/nl_NL/DPD_Shipping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/locale/nl_NL/DPD_Shipping.csv -------------------------------------------------------------------------------- /app/locale/nl_NL/template/email/sales/dpd_returnlabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/app/locale/nl_NL/template/email/sales/dpd_returnlabel.html -------------------------------------------------------------------------------- /js/dpd/onestepcheckout_shipping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/js/dpd/onestepcheckout_shipping.js -------------------------------------------------------------------------------- /js/dpd/shipping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/js/dpd/shipping.js -------------------------------------------------------------------------------- /js/dpd/window/shipping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/js/dpd/window/shipping.js -------------------------------------------------------------------------------- /skin/adminhtml/default/default/dpd/returnlabel/instructions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/skin/adminhtml/default/default/dpd/returnlabel/instructions.pdf -------------------------------------------------------------------------------- /skin/frontend/base/default/css/dpd/shipping.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/skin/frontend/base/default/css/dpd/shipping.css -------------------------------------------------------------------------------- /skin/frontend/base/default/css/dpd/window.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/skin/frontend/base/default/css/dpd/window.css -------------------------------------------------------------------------------- /skin/frontend/base/default/images/dpd/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/skin/frontend/base/default/images/dpd/ajax-loader.gif -------------------------------------------------------------------------------- /skin/frontend/base/default/images/dpd/button_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/skin/frontend/base/default/images/dpd/button_close.png -------------------------------------------------------------------------------- /skin/frontend/base/default/images/dpd/dpd_parcelshop_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/skin/frontend/base/default/images/dpd/dpd_parcelshop_logo.png -------------------------------------------------------------------------------- /skin/frontend/base/default/images/dpd/icon_info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/skin/frontend/base/default/images/dpd/icon_info.gif -------------------------------------------------------------------------------- /skin/frontend/base/default/images/dpd/icon_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/skin/frontend/base/default/images/dpd/icon_info.png -------------------------------------------------------------------------------- /skin/frontend/base/default/images/dpd/icon_parcelshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/skin/frontend/base/default/images/dpd/icon_parcelshop.png -------------------------------------------------------------------------------- /skin/frontend/base/default/images/dpd/icon_parcelshop_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/skin/frontend/base/default/images/dpd/icon_parcelshop_shadow.png -------------------------------------------------------------------------------- /skin/frontend/base/default/images/dpd/icon_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DPDBeNeLux/magento-DPD_Shipping/HEAD/skin/frontend/base/default/images/dpd/icon_route.png --------------------------------------------------------------------------------