PortableInfobox/includes/services/Parser/Nodes/NodeTitle.php
2022-03-11 13:35:51 -07:00

19 lines
403 B
PHP

<?php
namespace PortableInfobox\Parser\Nodes;
class NodeTitle extends Node {
public function getData() {
if ( !isset( $this->data ) ) {
$title = $this->getValueWithDefault( $this->xmlNode );
$this->data = [
'value' => $title,
'source' => $this->getXmlAttribute( $this->xmlNode, self::DATA_SRC_ATTR_NAME ),
'item-name' => $this->getItemName()
];
}
return $this->data;
}
}