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
magento2-functional-testing-framework
src
Magento
FunctionalTestingFramework
XmlParser
SectionParser.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\FunctionalTestingFramework\XmlParser
;
8
9
use
Magento\FunctionalTestingFramework\Config\DataInterface
;
10
use
Magento\FunctionalTestingFramework\ObjectManagerInterface
;
11
15
class
SectionParser
implements
ParserInterface
16
{
22
protected
$objectManager
;
23
29
protected
$configData
;
30
36
public
function
__construct
(
ObjectManagerInterface
$objectManager
,
DataInterface
$configData
)
37
{
38
$this->objectManager =
$objectManager
;
39
$this->configData =
$configData
;
40
}
41
48
public
function
getData
(
$type
)
49
{
50
return
$this->configData->get(
$type
);
51
}
52
}
Magento\FunctionalTestingFramework\XmlParser\SectionParser\__construct
__construct(ObjectManagerInterface $objectManager, DataInterface $configData)
Definition:
SectionParser.php:36
Magento\FunctionalTestingFramework\XmlParser\SectionParser\getData
getData($type)
Definition:
SectionParser.php:48
Magento\FunctionalTestingFramework\Config\DataInterface
Definition:
DataInterface.php:11
$type
$type
Definition:
item.phtml:13
Magento\FunctionalTestingFramework\XmlParser
Definition:
PageParser.php:6
Magento\FunctionalTestingFramework\XmlParser\SectionParser\$configData
$configData
Definition:
SectionParser.php:29
Magento\FunctionalTestingFramework\XmlParser\SectionParser
Definition:
SectionParser.php:15
Magento\FunctionalTestingFramework\XmlParser\SectionParser\$objectManager
$objectManager
Definition:
SectionParser.php:22
Magento\FunctionalTestingFramework\XmlParser\ParserInterface
Definition:
ParserInterface.php:12
Magento\FunctionalTestingFramework\ObjectManagerInterface
Definition:
ObjectManagerInterface.php:12