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
module-ui
Component
Form
Fieldset
Factory.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Ui\Component\Form\Fieldset
;
7
8
use
Magento\Ui\Component\Form\Fieldset
;
9
use
Magento\Framework\ObjectManagerInterface
;
10
14
class
Factory
15
{
19
protected
$className
= \Magento\Ui\Component\Form\Fieldset::class;
20
24
protected
$objectManager
;
25
31
public
function
__construct
(
ObjectManagerInterface
$objectManager
)
32
{
33
$this->objectManager =
$objectManager
;
34
}
35
42
public
function
create
(array
$arguments
= [])
43
{
44
return
$this->objectManager->create($this->className, [
'data'
=>
$arguments
]);
45
}
46
}
Magento\Ui\Component\Form\Fieldset\Factory\$objectManager
$objectManager
Definition:
Factory.php:24
Magento\Ui\Component\Form\Fieldset\Factory
Definition:
Factory.php:14
Magento\Ui\Component\Form\Fieldset\Factory\__construct
__construct(ObjectManagerInterface $objectManager)
Definition:
Factory.php:31
Magento\Framework\ObjectManagerInterface
Definition:
ObjectManagerInterface.php:12
Magento\Ui\Component\Form\Fieldset
Definition:
Factory.php:6
$arguments
$arguments
Definition:
final_price.phtml:24
Magento\Ui\Component\Form\Fieldset\Factory\$className
$className
Definition:
Factory.php:19
Magento\Ui\Component\Form\Fieldset\Factory\create
create(array $arguments=[])
Definition:
Factory.php:42