Skip to content

Commit 55a225e

Browse files
author
Manish Prakash
committed
Namespace Changed
1 parent d4b276f commit 55a225e

File tree

7 files changed

+22
-9
lines changed

7 files changed

+22
-9
lines changed

Controller/Adminhtml/Order/MassDelete.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Copyright © 2015 Magento. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6-
namespace ManishJoy\DeleteOrders\Controller\Adminhtml\Order;
6+
namespace TheCodingTutor\DeleteOrders\Controller\Adminhtml\Order;
77

88
use Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection;
99
use Magento\Backend\App\Action\Context;

README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
# ManishJoy_DeleteOrders v1.0.0
1+
# TheCodingTutor_DeleteOrders v1.0.0
22

33
More courses and tutorials about Magento 2 visit:
44

5-
http://thecodingtutor.com/magento/
5+
http://thecodingtutor.com/category/magento/
6+
7+
###The extension is free and always will be
8+
##Charges:
9+
####Installation: $10
10+
####Supprt: $20/6 months

composer.json

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "manishjoy/magento2-delete-orders",
2+
"name": "thecodingtutor/magento2-delete-orders",
33
"description": "extension for deleting orders in magento 2",
44
"type": "magento2-module",
55
"version": "1.0.0",
@@ -11,11 +11,19 @@
1111
"php": "~5.5.0|~5.6.0|~7.0.0",
1212
"magento/magento-composer-installer": "*"
1313
},
14+
"authors": [
15+
{
16+
"name": "Manish Joy",
17+
"email": "[email protected]",
18+
"homepage": "http://thecodingtutor.com/",
19+
"role": "Developer"
20+
}
21+
],
1422
"extra": {
1523
"map": [
1624
[
1725
"*",
18-
"ManishJoy/DeleteOrders"
26+
"TheCodingTutor/DeleteOrders"
1927
]
2028
]
2129
}

etc/adminhtml/di.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77
-->
88
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
9-
<type name="ManishJoy\DeleteOrders\Controller\Adminhtml\Order\MassDelete">
9+
<type name="TheCodingTutor\DeleteOrders\Controller\Adminhtml\Order\MassDelete">
1010
<arguments>
1111
<argument name="deleteorderAction" xsi:type="array">
1212
<item name="context" xsi:type="string">Magento\Backend\App\Action\Context</item>

etc/adminhtml/routes.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
99
<router id="admin">
1010
<route id="mj_deleteorders" frontName="mj_deleteorders">
11-
<module name="ManishJoy_DeleteOrders" />
11+
<module name="TheCodingTutor_DeleteOrders" />
1212
</route>
1313
</router>
1414
</config>

etc/module.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
2-
<module name="ManishJoy_DeleteOrders" setup_version="1.0.0">
2+
<module name="TheCodingTutor_DeleteOrders" setup_version="1.0.0">
33
<sequence>
44
<module name="Magento_Sales"/>
55
</sequence>

registration.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66

77
\Magento\Framework\Component\ComponentRegistrar::register(
88
\Magento\Framework\Component\ComponentRegistrar::MODULE,
9-
'ManishJoy_DeleteOrders',
9+
'TheCodingTutor_DeleteOrders',
1010
__DIR__
1111
);

0 commit comments

Comments
 (0)