-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathConverter.php
50 lines (45 loc) · 1.65 KB
/
Converter.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/**
* Attributes configuration converter
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Eav\Model\Entity\Attribute\Config;
class Converter implements \Magento\Framework\Config\ConverterInterface
{
/**
* Convert config
*
* @param mixed $source
* @return array
*/
public function convert($source)
{
$output = [];
/** @var \DOMNodeList $entities */
$entities = $source->getElementsByTagName('entity');
/** @var DOMNode $entity */
foreach ($entities as $entity) {
$entityConfig = [];
$attributes = [];
/** @var DOMNode $entityAttribute */
foreach ($entity->getElementsByTagName('attribute') as $entityAttribute) {
$attributeFields = [];
foreach ($entityAttribute->getElementsByTagName('field') as $fieldData) {
$locked = $fieldData->attributes->getNamedItem('locked')->nodeValue == "true" ? true : false;
$attributeFields[$fieldData->attributes->getNamedItem(
'code'
)->nodeValue] = [
'code' => $fieldData->attributes->getNamedItem('code')->nodeValue,
'locked' => $locked,
];
}
$attributes[$entityAttribute->attributes->getNamedItem('code')->nodeValue] = $attributeFields;
}
$entityConfig['attributes'] = $attributes;
$output[$entity->attributes->getNamedItem('type')->nodeValue] = $entityConfig;
}
return $output;
}
}