31
2
mirror of https://github.com/joomla-extensions/jedchecker.git synced 2024-09-28 21:19:07 +00:00

add support of any attribute (by using '*' as value)

This commit is contained in:
Denis Ryabov 2021-02-24 00:32:28 +03:00
parent 62a887092c
commit f7353bf312

View File

@ -171,12 +171,17 @@ class JedcheckerRulesXMLManifest extends JEDcheckerRule
{
// Check attributes
$DTDattributes = isset($this->DTDAttrRules[$name]) ? $this->DTDAttrRules[$name] : array();
foreach ($node->attributes() as $attr)
if (isset($DTDattributes[0]) && $DTDattributes[0] !== '*')
{
$attr_name = (string)$attr->getName();
if (!in_array($attr_name, $DTDattributes, true))
foreach ($node->attributes() as $attr)
{
$this->warnings[] = JText::sprintf('COM_JEDCHECKER_MANIFEST_UNKNOWN_ATTRIBUTE', $name, $attr_name);
$attr_name = (string)$attr->getName();
if (!in_array($attr_name, $DTDattributes, true))
{
$this->warnings[] = JText::sprintf('COM_JEDCHECKER_MANIFEST_UNKNOWN_ATTRIBUTE', $name, $attr_name);
}
}
}