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
Api
ExtensionAttribute
JoinDataInterfaceFactory.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Framework\Api\ExtensionAttribute
;
8
13
class
JoinDataInterfaceFactory
14
{
20
protected
$_objectManager
=
null
;
21
27
protected
$_instanceName
=
null
;
28
35
public
function
__construct
(
36
\
Magento
\Framework\
ObjectManagerInterface
$objectManager
,
37
$instanceName = \
Magento
\Framework\Api\ExtensionAttribute\JoinDataInterface::class
38
) {
39
$this->_objectManager =
$objectManager
;
40
$this->_instanceName = $instanceName;
41
}
42
49
public
function
create
(array
$data
= [])
50
{
51
return
$this->_objectManager->create($this->_instanceName,
$data
);
52
}
53
}
Magento\Framework\Api\ExtensionAttribute\JoinDataInterfaceFactory
Definition:
JoinDataInterfaceFactory.php:13
$objectManager
$objectManager
Definition:
bootstrap.php:17
Magento\Framework\Api\ExtensionAttribute\JoinDataInterfaceFactory\__construct
__construct(\Magento\Framework\ObjectManagerInterface $objectManager, $instanceName=\Magento\Framework\Api\ExtensionAttribute\JoinDataInterface::class)
Definition:
JoinDataInterfaceFactory.php:35
Magento\Framework\ObjectManagerInterface
Definition:
ObjectManagerInterface.php:12
Magento\Framework\Api\ExtensionAttribute
$data
$data
Definition:
attribute_set_with_image_attribute.php:16
Magento\Framework\Api\ExtensionAttribute\JoinDataInterfaceFactory\$_instanceName
$_instanceName
Definition:
JoinDataInterfaceFactory.php:27
Magento
Magento\Framework\Api\ExtensionAttribute\JoinDataInterfaceFactory\$_objectManager
$_objectManager
Definition:
JoinDataInterfaceFactory.php:20
Magento\Framework\Api\ExtensionAttribute\JoinDataInterfaceFactory\create
create(array $data=[])
Definition:
JoinDataInterfaceFactory.php:49