How to check if a Magento 2 module has been successfully installed
To check if your Magento 2 module has been successfully installed, use the following code:
This is the most convenient method among available now. Continue Reading
To check if your Magento 2 module has been successfully installed, use the following code:
This is the most convenient method among available now. Continue Reading
There are several options for adding custom CSS/JS to your Magento 2 modules, and the following one is the easiest. Continue Reading
You can easily flush the cache storage of Magento 2 from the command line. Note that the following script must be executed from the Magento 2 root folder:
It deletes all content from the var subfolder excluding the.htaccess file and the var/session subfolder. Besides, the script also deletes all content from the pub/static subfolder excluding the.htaccess file.
To create a message to a system log in Magento 2.0, use the code listed below:
In Magento 1, for instance, this code was more simple:
but you can also utilize another approach in case of Magento 2. Since there is a _logger property related to many objects, you can perform the same task by calling inside such objects. Just use the following code:
Please note that not every object has the _logger property. Thus, this method will not work with all your objects.
Create etc/product_types.xml in your module to add a new product type in Magento 2:
The second step requires creating the modelInstance:
To set a Magento 2 mode, use the following command:
Remove instruction is available in Magento 2. Please note that the layout merges in order shown in a module.xml/sequence section. Here is the instruction:
You can learn about Magento 2 Request Flow from this presentation by Anton Kril:
Right in refresh .less files, since it “collects, processes and publishes source LESS files”:
You can also use dev mode during development. According to
In a case of a controller that extends Magento\Framework\App\Action\Action, it is possible to get the request with the aid of $this->getRequest()->getPost().
For a custom class, inject the request in the constructor: