getAttribute('module'); foreach ($mediaNode->getElementsByTagName(ImageEntryConverter::MEDIA_TYPE_CODE) as $node) { $imageId = $node->getAttribute('id'); $result[$mediaParentTag][$moduleNameImage][Image::MEDIA_TYPE_CONFIG_NODE][$imageId]['type'] = $node->getAttribute('type'); foreach ($node->childNodes as $attribute) { if ($attribute->nodeType != XML_ELEMENT_NODE) { continue; } if ($attribute->tagName == 'background') { $nodeValue = $this->processImageBackground($attribute->nodeValue); } else { $nodeValue = $attribute->nodeValue; } $result[$mediaParentTag][$moduleNameImage][Image::MEDIA_TYPE_CONFIG_NODE][$imageId][$attribute->tagName] = $nodeValue; } } return $result; } /** * Convert rgb background string into array * * @param string $backgroundString * @return int[] */ private function processImageBackground($backgroundString) { $pattern = '#\[(\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\]#'; $backgroundArray = []; if (preg_match($pattern, $backgroundString, $backgroundArray)) { array_shift($backgroundArray); } return $backgroundArray; } }