jareddreyer
9/10/2018 - 9:07 PM

Sitetree by page type

Allows a call back on sitetree::class to only allow certain page types in the list

<?php

$tree->setDisableFunction(function($item) {
    return ( ! $item instanceof ProductPage);
});