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-widget
Model
Config
SchemaLocator.php
Go to the documentation of this file.
1
<?php
8
namespace
Magento\Widget\Model\Config
;
9
10
use
Magento\Framework\Module\Dir
;
11
12
class
SchemaLocator
implements
\Magento\Framework\Config\SchemaLocatorInterface
13
{
19
protected
$_schema
=
null
;
20
26
protected
$_perFileSchema
=
null
;
27
31
public
function
__construct
(\
Magento
\Framework\Module\
Dir
\
Reader
$moduleReader)
32
{
33
$etcDir = $moduleReader->getModuleDir(\
Magento
\Framework\Module\
Dir::MODULE_ETC_DIR
,
'Magento_Widget'
);
34
$this->_schema = $etcDir .
'/widget.xsd'
;
35
$this->_perFileSchema = $etcDir .
'/widget_file.xsd'
;
36
}
37
43
public
function
getSchema
()
44
{
45
return
$this->_schema
;
46
}
47
53
public
function
getPerFileSchema
()
54
{
55
return
$this->_perFileSchema
;
56
}
57
}
Magento\Framework\Module\Dir
Definition:
Reader.php:8
Magento\Framework\Module\Dir\MODULE_ETC_DIR
const MODULE_ETC_DIR
Definition:
Dir.php:18
Magento\Widget\Model\Config\SchemaLocator\$_perFileSchema
$_perFileSchema
Definition:
SchemaLocator.php:26
Magento\Widget\Model\Config
Definition:
DataTest.php:7
Magento\Widget\Model\Config\SchemaLocator
Definition:
SchemaLocator.php:12
Magento
Magento\Widget\Model\Config\SchemaLocator\$_schema
$_schema
Definition:
SchemaLocator.php:19
Magento\Widget\Model\Config\SchemaLocator\getSchema
getSchema()
Definition:
SchemaLocator.php:43
Magento\Framework\Config\SchemaLocatorInterface
Definition:
SchemaLocatorInterface.php:16
Magento\Framework\Module\Dir
Definition:
Dir.php:13
Magento\Widget\Model\Config\SchemaLocator\__construct
__construct(\Magento\Framework\Module\Dir\Reader $moduleReader)
Definition:
SchemaLocator.php:31
Magento\Widget\Model\Config\SchemaLocator\getPerFileSchema
getPerFileSchema()
Definition:
SchemaLocator.php:53
Magento\Framework\Module\Dir\Reader
Definition:
Reader.php:20