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
framework
View
Page
ConfigFactory.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Framework\View\Page
;
8
12
class
ConfigFactory
13
{
19
protected
$objectManager
=
null
;
20
26
protected
$instanceName
=
null
;
27
34
public
function
__construct
(
35
\
Magento
\Framework\
ObjectManagerInterface
$objectManager
,
36
$instanceName
= \
Magento
\Framework\
View
\Page\Config::class
37
) {
38
$this->objectManager =
$objectManager
;
39
$this->instanceName =
$instanceName
;
40
}
41
48
public
function
create
(array
$data
= [])
49
{
50
return
$this->objectManager->create($this->instanceName,
$data
);
51
}
52
}
Magento\Framework\View\Page
Definition:
Builder.php:6
Magento\Framework\View\Page\ConfigFactory
Definition:
ConfigFactory.php:12
Magento\Framework\ObjectManagerInterface
Definition:
ObjectManagerInterface.php:12
Magento\Framework\View\Page\ConfigFactory\$objectManager
$objectManager
Definition:
ConfigFactory.php:19
$data
$data
Definition:
attribute_set_with_image_attribute.php:16
Magento\Framework\View\Page\ConfigFactory\$instanceName
$instanceName
Definition:
ConfigFactory.php:26
Magento
Magento\Framework\View\Page\ConfigFactory\create
create(array $data=[])
Definition:
ConfigFactory.php:48
Magento\Framework\View\Page\ConfigFactory\__construct
__construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName=\Magento\Framework\View\Page\Config::class)
Definition:
ConfigFactory.php:34
Magento\Framework\App\View
Definition:
View.php:8