Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
SchemaLocator.php
Go to the documentation of this file.
1 <?php
7 
9 
14 {
20  private $schema;
21 
25  public function __construct(\Magento\Framework\Module\Dir\Reader $moduleReader)
26  {
27  $this->schema = $moduleReader->getModuleDir(Dir::MODULE_ETC_DIR, 'Magento_Ui') . '/' . 'ui_template.xsd';
28  }
29 
33  public function getSchema()
34  {
35  return $this->schema;
36  }
37 
41  public function getPerFileSchema()
42  {
43  return null;
44  }
45 }
__construct(\Magento\Framework\Module\Dir\Reader $moduleReader)