mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-16 20:57:19 +00:00
12 lines
287 B
PHP
12 lines
287 B
PHP
<?php
|
|
namespace Wikia\PortableInfobox\Parser\Nodes;
|
|
|
|
class NodeHeader extends Node {
|
|
|
|
public function getData() {
|
|
return [ 'value' => $this->getExternalParser()->parseRecursive(
|
|
\Wikia\PortableInfobox\Helpers\SimpleXmlUtil::getInstance()->getInnerXML( $this->xmlNode )
|
|
) ];
|
|
}
|
|
}
|