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
Setup
SampleData
Context.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\Setup\SampleData
;
7
8
use \Magento\Framework\File\Csv;
9
21
class
Context
22
{
26
private
$fixtureManager;
27
31
private
$csvReader;
32
37
public
function
__construct
(
FixtureManager
$fixtureManager,
Csv
$csvReader)
38
{
39
$this->fixtureManager = $fixtureManager;
40
$this->csvReader = $csvReader;
41
}
42
46
public
function
getFixtureManager
()
47
{
48
return
$this->fixtureManager;
49
}
50
54
public
function
getCsvReader
()
55
{
56
return
$this->csvReader;
57
}
58
}
Magento\Framework\File\Csv
Definition:
Csv.php:16
Magento\Framework\Setup\SampleData
Definition:
Context.php:6
Magento\Framework\Setup\SampleData\Context\getFixtureManager
getFixtureManager()
Definition:
Context.php:46
Magento\Framework\Setup\SampleData\Context
Definition:
Context.php:21
Magento\Framework\Setup\SampleData\Context\getCsvReader
getCsvReader()
Definition:
Context.php:54
Magento\Framework\Setup\SampleData\FixtureManager
Definition:
FixtureManager.php:12
Magento\Framework\Setup\SampleData\Context\__construct
__construct(FixtureManager $fixtureManager, Csv $csvReader)
Definition:
Context.php:37