Refactoring by extracting a method

This commit is contained in:
Yusuf Kandemir 2018-12-16 12:23:09 +03:00
parent 1ce3f5fd17
commit e26f84fd0c
1 changed files with 27 additions and 11 deletions

View File

@ -15,17 +15,7 @@ class MicrodataDOMElement extends \DOMElement
$memory = [$this];
$pending = $this->getChildElementNodes();
if ($this->hasAttribute('itemref')) {
$tokens = $this->tokenizeAttribute('itemref');
foreach ($tokens as $token) {
$references = $this->ownerDocument->xpath->query('//*[@id="'.$token.'"]');
if ($first = $references->item(0)) {
$pending[] = $first;
}
}
}
$pending = array_merge($pending, $this->getReferenceNodes());
while ($pending) {
$current = array_pop($pending);
@ -210,4 +200,30 @@ class MicrodataDOMElement extends \DOMElement
{
return preg_split('/\s+/', trim($attribute));
}
/**
* Finds the nodes that this node references through the document
*
* @see https://www.w3.org/TR/microdata/#dfn-item-properties 4th step
*
* @return array
*/
protected function getReferenceNodes(): array
{
$referenceNodes = [];
if ($this->hasAttribute('itemref')) {
$tokens = $this->tokenizeAttribute('itemref');
foreach ($tokens as $token) {
$references = $this->ownerDocument->xpath->query('//*[@id="' . $token . '"]');
if ($first = $references->item(0)) {
$referenceNodes[] = $first;
}
}
}
return $referenceNodes;
}
}