Sulu\Component\Content\Metadata\Loader\XmlLegacyLoader::loadValues PHP Метод

loadValues() приватный Метод

load values defined by key from given node.
private loadValues ( DOMXPath $xpath, DOMNode $node, $keys, $prefix = '@' )
$xpath DOMXPath
$node DOMNode
    private function loadValues(\DOMXPath $xpath, \DOMNode $node, $keys, $prefix = '@')
    {
        $result = [];
        foreach ($keys as $key) {
            $result[$key] = $this->getValueFromXPath($prefix . $key, $xpath, $node);
        }
        return $result;
    }