Magento 2: Working with ArraySerialized backend model

Magento 2 Developement

Magento 2 ArraySerialized is backend model used to store configuration data ( dynamic settings array ) in serialized state in one field. It extends \Magento\Config\Model\Config\Backend\Serialized model and has two basic methods. beforeSave serializes data before saving, as a result options converted to a string and can be stored in a single field in the database…

read more

How to Manage Custom Email Templates in Magento 2

Communicating with your customers is essential to smooth working of your online business. It’s a good practice for the store owner to notify them about different things like orders, subscriptions, promotions, invoices etc. This makes your clients trust your business and motivates them to return to your online store more and more. When a customer […]

read more

adminhtml.xml in details

adminhtml.xml in details

At the beginning there was config.xml. It contain module configuration information for all “areas”, like frontend, adminhtml, global etc. Since magento does consist of a lot of modules resulting configuration object has rather big size. To reduce its size and speed up frontend developers decide to separate admin information from config.xml. adminhtml.xml was presented in […]

read more