How to Create Custom Console Command in Magento 2

Blog
Spread the love

This Article is about how to create a custom console command in Magento 2. In Magento 2, a list of available commands is used to register a module, clear the cache, install/upgrade database schema, manage indexing/reindexing and run a Magento cron job over a fixed period of time. Magento developers are pretty familiar with these commands but sometimes they need to create custom commands to handle complex situations, for this Magento provides the functionality where Magento developers can use their own custom commands.

Step 1: Create file registration.php at app/code/Vendor/Module/ folder (In my case vendor is Bluethink, Module is CustomCommand and my file path is: app/code/Bluethink/CustomCommand/registration.php)

Step 2: Create module.xml file at app/code/Vendor/Module/etc/ folder (In my case vendor is Bluethink, Module is CustomCommand and my file path is : app/code/Bluethink/CustomCommand/etc/module.xml)

Step 3:Create di.xml file at app/code/Vendor/Module/etc folder (In my case my file path is : app/code/Bluethink/CustomCommand/etc/di.xml)

Step 4:Create Mycommand.php file at app/code/Vendor/Module/Console/Command folder (In my case my file path is : app/code/Bluethink/CustomCommand/Console/Command/Mycommand.php)

Note:If you are not using an existing module then run the appropriate commands to register your module and dependencies using –

php bin/magento setup:upgrade

php bin/magento setup:di:compile

php bin/magento cache:flush

Now check your custom command is appearing in Command List by using –

php bin/magento

you will find removecache:all command in command list.

removecache-all

Finally, Run the following command php bin/magento removecache:all

magento-removecache-all

bluethinkinc_blog

bluethinkinc_blog

2022-12-06

0

Leave a Reply

Your email address will not be published. Required fields are marked *

Find More Blogs

Salesforce Admin

Spread the love In our last blog, we discussed common

Unlocking AI with Spring Boot: Real-World Use Cases and Solutions

Spread the love Artificial Intelligence (AI) has moved from

Enhancing Performance with Reactive Java: A Beginner-Friendly Guide

Spread the love In today’s fast-paced software

Integrating Azure Function with Dynamics 365

Spread the love Signup on azure portal and make sure to

How to Create a Power Apps Component Framework (PCF) with React

Spread the love If youʼve been looking to supercharge your

Customize lead qualification for a seamless experience

Spread the love When the 2024 Release Wave 2 was launched,

Create a Custom Console Command in Spryker

Spread the love In Spryker, developers can create custom

SALESFORCE

Spread the love Salesforce is a cloud-based software

CRUD Operation in Spryker Backoffice with a Custom Module

Spread the love Spryker is a highly flexible and modular

How to create custom module on Spryker for Backoffice?

Spread the love Creating a custom module in Spryker

bluethinkinc Blogs