Làm cách nào tôi có thể đặt giá trị cấu hình trong Magento 2?
Trước đây (trong Magento 1, nghĩa là) chúng tôi đã tạo ra một mô-đun có tên là Setup chứa cài đặt cho trang web. Các kịch bản nâng cấp trông giống như thế này: $installer = $this; $installer->startSetup(); $installer->setConfigData("fastsimpleimport/general/partial_indexing", 1); $installer->setConfigData("fastsimpleimport/product/disable_preprocess_images", 1); $installer->setConfigData('general/country/default', 'GB'); $installer->setConfigData('general/locale/firstday', 1); $installer->setConfigData('general/locale/timezone', 'Europe/London'); $installer->setConfigData('general/store_information/merchant_country', 'GB'); …