for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SRF\Outline;
/**
* A tree structure for holding the outline data
*
* @license GNU GPL v2+
* @since 3.1
*/
class OutlineTree {
* @var []
public $tree;
public $items;
* @var integer
public $itemCount = 0;
public $leafCount = 0;
* @param array $items
public function __construct( $items = [] ) {
$this->tree = [];
$this->items = $items;
}
* @param $item
public function addItem( $item ) {
$this->items[] = $item;
$this->itemCount++;
* @param $vals
public function categorizeItem( $vals, $item ) {
foreach ( $vals as $val ) {
if ( array_key_exists( $val, $this->tree ) ) {
$this->tree[$val]->items[] = $item;
$this->tree[$val]->leafCount++;
} else {
$this->tree[$val] = new self( [ $item ] );
* @param $property
public function addProperty( $property ) {
if ( count( $this->items ) > 0 ) {
foreach ( $this->items as $item ) {
$cur_vals = $item->getFieldValues( $property );
$this->categorizeItem( $cur_vals, $item );
$this->items = null;
foreach ( $this->tree as $i => $node ) {
$this->tree[$i]->addProperty( $property );