├── Controller └── Cancelorder │ └── Index.php ├── Helper └── Data.php ├── README.md ├── composer.json ├── etc ├── adminhtml │ └── system.xml ├── config.xml ├── email_templates.xml ├── frontend │ └── routes.xml └── module.xml ├── media ├── admin_config.png └── order-history.gif ├── registration.php └── view └── frontend ├── email └── cancelOrderEmail.html ├── layout ├── customer_account_index.xml ├── email_product_list.xml └── sales_order_history.xml └── templates ├── order ├── history.phtml └── recent.phtml └── product.phtml /Controller/Cancelorder/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/Controller/Cancelorder/Index.php -------------------------------------------------------------------------------- /Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/Helper/Data.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/composer.json -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/email_templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/etc/email_templates.xml -------------------------------------------------------------------------------- /etc/frontend/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/etc/frontend/routes.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/etc/module.xml -------------------------------------------------------------------------------- /media/admin_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/media/admin_config.png -------------------------------------------------------------------------------- /media/order-history.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/media/order-history.gif -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/registration.php -------------------------------------------------------------------------------- /view/frontend/email/cancelOrderEmail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/view/frontend/email/cancelOrderEmail.html -------------------------------------------------------------------------------- /view/frontend/layout/customer_account_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/view/frontend/layout/customer_account_index.xml -------------------------------------------------------------------------------- /view/frontend/layout/email_product_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/view/frontend/layout/email_product_list.xml -------------------------------------------------------------------------------- /view/frontend/layout/sales_order_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/view/frontend/layout/sales_order_history.xml -------------------------------------------------------------------------------- /view/frontend/templates/order/history.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/view/frontend/templates/order/history.phtml -------------------------------------------------------------------------------- /view/frontend/templates/order/recent.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/view/frontend/templates/order/recent.phtml -------------------------------------------------------------------------------- /view/frontend/templates/product.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magepow/magento-2-cancel-order/HEAD/view/frontend/templates/product.phtml --------------------------------------------------------------------------------