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-analytics
ReportXml
DB
SelectBuilderFactory.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Analytics\ReportXml\DB
;
7
8
use
Magento\Framework\ObjectManagerInterface
;
9
13
class
SelectBuilderFactory
14
{
20
private
$objectManager;
21
27
public
function
__construct
(
28
ObjectManagerInterface
$objectManager
29
) {
30
$this->objectManager =
$objectManager
;
31
}
32
39
public
function
create
(array
$data
= [])
40
{
41
return
$this->objectManager->create(SelectBuilder::class,
$data
);
42
}
43
}
$objectManager
$objectManager
Definition:
bootstrap.php:17
Magento\Analytics\ReportXml\DB
Magento\Framework\ObjectManagerInterface
Definition:
ObjectManagerInterface.php:12
Magento\Analytics\ReportXml\DB\SelectBuilderFactory
Definition:
SelectBuilderFactory.php:13
Magento\Analytics\ReportXml\DB\SelectBuilderFactory\__construct
__construct(ObjectManagerInterface $objectManager)
Definition:
SelectBuilderFactory.php:27
$data
$data
Definition:
attribute_set_with_image_attribute.php:16
Magento\Analytics\ReportXml\DB\SelectBuilderFactory\create
create(array $data=[])
Definition:
SelectBuilderFactory.php:39