4
Validación xml de Magento 2
Durante un tiempo, Magento 2 tuvo una forma de validar (y autocompletar) cualquier xml mediante el uso de un archivo XSD. Por ejemplo se module.xmlveía así: <?xml version="1.0"> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/Module/etc/module.xsd"> .... </config> pero ahora se module.xmlve así: <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> .... </config> entonces el xsi:noNamespaceSchemaLocationatributo contiene urn:magento:framework:. …