magento2如何知道当前页面加载了那些layout xml file?

前端之家收集整理的这篇文章主要介绍了magento2如何知道当前页面加载了那些layout xml file?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

需要修改core代码,位置:vendor/magento/framework/View/Model/Layout/Merge.PHP: _loadFileLayoutUpdatesXml

添加file_put_contents代码

foreach ($updateFiles as $file) {
    // ...
    file_put_contents(BP . '/var/log/layout_files.csv',$tagName.','.$handleName.','.$file->getFilename()."\r\n",FILE_APPEND);
}

清除缓存后访问页面,得到数据 var/log/layout_files.csv

每个页面都有handle,例如catalog_product_view代表product detail page,在layout_files.csv查询catalog_product_view,就能知道该页面加载的所有layout xml的位置。

原文链接:https://www.f2er.com/xml/294475.html

猜你在找的XML相关文章