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
Search
Adapter
Mysql
TemporaryStorageFactory.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\Search\Adapter\Mysql
;
7
8
use
Magento\Framework\ObjectManagerInterface
;
9
19
class
TemporaryStorageFactory
20
{
26
protected
$objectManager
=
null
;
27
33
protected
$instanceName
=
null
;
34
41
public
function
__construct
(
42
ObjectManagerInterface
$objectManager
,
43
$instanceName
= \
Magento
\Framework\
Search
\
Adapter
\Mysql\TemporaryStorage::class
44
) {
45
$this->objectManager =
$objectManager
;
46
$this->instanceName =
$instanceName
;
47
}
48
55
public
function
create
(array
$data
= [])
56
{
57
return
$this->objectManager->create($this->instanceName,
$data
);
58
}
59
}
Magento\Framework\Search\Adapter\Mysql\TemporaryStorageFactory\$objectManager
$objectManager
Definition:
TemporaryStorageFactory.php:26
Magento\Framework\ObjectManagerInterface
Definition:
ObjectManagerInterface.php:12
Magento\Framework\Search\Adapter\Mysql\TemporaryStorageFactory\__construct
__construct(ObjectManagerInterface $objectManager, $instanceName=\Magento\Framework\Search\Adapter\Mysql\TemporaryStorage::class)
Definition:
TemporaryStorageFactory.php:41
Magento\Framework\Search\Adapter\Mysql\TemporaryStorageFactory\$instanceName
$instanceName
Definition:
TemporaryStorageFactory.php:33
$data
$data
Definition:
attribute_set_with_image_attribute.php:16
Magento\Framework\Search\Adapter\Mysql\Adapter
Definition:
Adapter.php:21
Magento\Framework\Search\Adapter\Mysql\TemporaryStorageFactory\create
create(array $data=[])
Definition:
TemporaryStorageFactory.php:55
Magento
Magento\Framework\Search\Adapter\Mysql
Definition:
Adapter.php:6
Magento\Framework\Search\Adapter\Mysql\TemporaryStorageFactory
Definition:
TemporaryStorageFactory.php:19
Magento\Framework\Search\Search
Definition:
Search.php:13