PortableInfobox/services/Parser/Nodes/NodeGroup.php

36 lines
673 B
PHP

<?php
namespace Wikia\PortableInfobox\Parser\Nodes;
class NodeGroup extends Node {
public function getData() {
if ( !isset( $this->data ) ) {
$this->data = [ 'value' => $this->getDataForChildren() ];
}
return $this->data;
}
public function getRenderData() {
return [
'type' => $this->getType(),
'data' => [ 'value' => $this->getRenderDataForChildren() ],
];
}
public function isEmpty() {
/** @var Node $item */
foreach ( $this->getChildNodes() as $item ) {
if ( !$item->isType( 'header' ) && !$item->isEmpty() ) {
return false;
}
}
return true;
}
public function getSource() {
return $this->getSourceForChildren();
}
}