Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
magento2-base
dev
tests
integration
testsuite
Magento
Theme
_files
config_data.php
Go to the documentation of this file.
1
<?php
7
use
Magento\Config\Model\Config\Factory
;
8
use
Magento\TestFramework\Helper\Bootstrap
;
9
10
$objectManager
= Bootstrap::getObjectManager();
11
13
$configFactory
=
$objectManager
->create(Factory::class);
15
$config
=
$configFactory
->create();
16
$config
->setScope(
'stores'
);
17
$config
->setStore(
'default'
);
18
$config
->setDataByPath(
'design/header/welcome'
,
null
);
19
$config
->save();
Magento\TestFramework\Helper\Bootstrap
Definition:
Bootstrap.php:12
Magento\Config\Model\Config\Factory
Definition:
Factory.php:16
$objectManager
$objectManager
Definition:
config_data.php:41
$configFactory
$configFactory
Definition:
config_data.php:43
$config
$config
Definition:
config_data.php:15