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
Mview
Config
SchemaLocator.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\Mview\Config
;
7
8
class
SchemaLocator
implements
\Magento\Framework\Config\SchemaLocatorInterface
9
{
15
protected
$_schema
=
null
;
16
22
protected
$_perFileSchema
=
null
;
23
27
public
function
__construct
(\
Magento
\Framework\
Config
\Dom\UrnResolver $urnResolver)
28
{
29
$this->_schema = $urnResolver->getRealPath(
'urn:magento:framework:Mview/etc/mview.xsd'
);
30
$this->_perFileSchema =
$this->_schema
;
31
}
32
38
public
function
getSchema
()
39
{
40
return
$this->_schema
;
41
}
42
48
public
function
getPerFileSchema
()
49
{
50
return
$this->_perFileSchema
;
51
}
52
}
Magento\Framework\Mview\Config\SchemaLocator\getSchema
getSchema()
Definition:
SchemaLocator.php:38
Magento\Framework\Mview\Config\SchemaLocator\$_perFileSchema
$_perFileSchema
Definition:
SchemaLocator.php:22
Magento\Framework\Mview\Config
Definition:
Converter.php:6
Magento\Framework\Mview\Config\SchemaLocator
Definition:
SchemaLocator.php:8
Magento\Framework\Mview\Config
Definition:
Config.php:8
Magento
Magento\Framework\Mview\Config\SchemaLocator\__construct
__construct(\Magento\Framework\Config\Dom\UrnResolver $urnResolver)
Definition:
SchemaLocator.php:27
Magento\Framework\Mview\Config\SchemaLocator\$_schema
$_schema
Definition:
SchemaLocator.php:15
Magento\Framework\Mview\Config\SchemaLocator\getPerFileSchema
getPerFileSchema()
Definition:
SchemaLocator.php:48
Magento\Framework\Config\SchemaLocatorInterface
Definition:
SchemaLocatorInterface.php:16