Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Dom.php
Go to the documentation of this file.
1 <?php
7 
14 {
23  protected function _getMatchedNode($nodePath)
24  {
25  if (!preg_match('/^\/config(\/menu)?$/i', $nodePath)) {
26  return null;
27  }
28  return parent::_getMatchedNode($nodePath);
29  }
30 }