PortableInfobox/services/Parser/Nodes/NodeHeader.php

14 lines
252 B
PHP
Raw Normal View History

<?php
namespace Wikia\PortableInfobox\Parser\Nodes;
class NodeHeader extends Node {
public function getData() {
if ( !isset( $this->data ) ) {
2015-06-11 12:51:54 +00:00
$this->data = [ 'value' => $this->getInnerValue( $this->xmlNode ) ];
}
return $this->data;
}
}