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
Element
UiComponent
Config
FileCollector
AggregatedFileCollectorFactory.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\View\Element\UiComponent\Config\FileCollector
;
7
8
use
Magento\Framework\ObjectManagerInterface
;
9
13
class
AggregatedFileCollectorFactory
14
{
15
const
INSTANCE_NAME
=
16
\Magento\Framework\View\Element\UiComponent\Config\FileCollector\AggregatedFileCollector::class;
17
21
protected
$objectManager
;
22
28
public
function
__construct
(
ObjectManagerInterface
$objectManager
)
29
{
30
$this->objectManager =
$objectManager
;
31
}
32
39
public
function
create
(array
$arguments
= [])
40
{
41
return
$this->objectManager->create(static::INSTANCE_NAME,
$arguments
);
42
}
43
}
Magento\Framework\View\Element\UiComponent\Config\FileCollector\AggregatedFileCollectorFactory
Definition:
AggregatedFileCollectorFactory.php:13
Magento\Framework\View\Element\UiComponent\Config\FileCollector
Definition:
AggregatedFileCollector.php:6
Magento\Framework\ObjectManagerInterface
Definition:
ObjectManagerInterface.php:12
Magento\Framework\View\Element\UiComponent\Config\FileCollector\AggregatedFileCollectorFactory\create
create(array $arguments=[])
Definition:
AggregatedFileCollectorFactory.php:39
Magento\Framework\View\Element\UiComponent\Config\FileCollector\AggregatedFileCollectorFactory\$objectManager
$objectManager
Definition:
AggregatedFileCollectorFactory.php:21
$arguments
$arguments
Definition:
final_price.phtml:24
Magento\Framework\View\Element\UiComponent\Config\FileCollector\AggregatedFileCollectorFactory\INSTANCE_NAME
const INSTANCE_NAME
Definition:
AggregatedFileCollectorFactory.php:15
Magento\Framework\View\Element\UiComponent\Config\FileCollector\AggregatedFileCollectorFactory\__construct
__construct(ObjectManagerInterface $objectManager)
Definition:
AggregatedFileCollectorFactory.php:28