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
Design
Fallback
Rule
ModuleFactory.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\View\Design\Fallback\Rule
;
7
8
use
Magento\Framework\ObjectManagerInterface
;
9
10
class
ModuleFactory
11
{
17
private
$objectManager;
18
24
public
function
__construct
(
ObjectManagerInterface
$objectManager)
25
{
26
$this->objectManager =
$objectManager
;
27
}
28
35
public
function
create
(array
$data
= [])
36
{
37
return
$this->objectManager->create(\
Magento
\Framework\View\Design\Fallback\Rule\Module::class,
$data
);
38
}
39
}
$objectManager
$objectManager
Definition:
bootstrap.php:17
Magento\Framework\ObjectManagerInterface
Definition:
ObjectManagerInterface.php:12
Magento\Framework\View\Design\Fallback\Rule\ModuleFactory
Definition:
ModuleFactory.php:10
Magento\Framework\View\Design\Fallback\Rule
Definition:
Composite.php:6
$data
$data
Definition:
attribute_set_with_image_attribute.php:16
Magento\Framework\View\Design\Fallback\Rule\ModuleFactory\create
create(array $data=[])
Definition:
ModuleFactory.php:35
Magento
Magento\Framework\View\Design\Fallback\Rule\ModuleFactory\__construct
__construct(ObjectManagerInterface $objectManager)
Definition:
ModuleFactory.php:24