2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
2016-06-15 06:03:16 +02:00
|
|
|
|
|
|
|
namespace SilverStripe\ORM\Hierarchy;
|
|
|
|
|
2016-08-19 00:51:35 +02:00
|
|
|
use SilverStripe\Admin\LeftAndMain;
|
|
|
|
use SilverStripe\Control\Controller;
|
2021-08-30 09:02:03 +02:00
|
|
|
use SilverStripe\Core\ClassInfo;
|
|
|
|
use SilverStripe\Core\Extensible;
|
2016-08-11 01:40:23 +02:00
|
|
|
use SilverStripe\ORM\DataList;
|
2017-03-29 06:23:49 +02:00
|
|
|
use SilverStripe\ORM\SS_List;
|
2016-06-15 06:03:16 +02:00
|
|
|
use SilverStripe\ORM\ValidationResult;
|
|
|
|
use SilverStripe\ORM\ArrayList;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
use SilverStripe\ORM\DataExtension;
|
2018-09-25 02:25:23 +02:00
|
|
|
use SilverStripe\ORM\DB;
|
2017-03-21 04:22:23 +01:00
|
|
|
use SilverStripe\Versioned\Versioned;
|
2018-09-25 02:25:23 +02:00
|
|
|
use SilverStripe\Core\Config\Config;
|
|
|
|
use SilverStripe\Core\Convert;
|
2016-08-19 00:51:35 +02:00
|
|
|
use Exception;
|
2016-06-15 06:03:16 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2014-12-01 13:20:09 +01:00
|
|
|
* DataObjects that use the Hierarchy extension can be be organised as a hierarchy, with children and parents. The most
|
|
|
|
* obvious example of this is SiteTree.
|
|
|
|
*
|
2016-08-19 00:51:35 +02:00
|
|
|
* @property int $ParentID
|
2017-03-29 06:23:49 +02:00
|
|
|
* @property DataObject|Hierarchy $owner
|
2016-08-19 00:51:35 +02:00
|
|
|
* @method DataObject Parent()
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2017-03-29 06:23:49 +02:00
|
|
|
class Hierarchy extends DataExtension
|
2016-11-29 00:31:16 +01:00
|
|
|
{
|
2016-11-23 06:09:10 +01:00
|
|
|
/**
|
|
|
|
* The lower bounds for the amount of nodes to mark. If set, the logic will expand nodes until it reaches at least
|
|
|
|
* this number, and then stops. Root nodes will always show regardless of this settting. Further nodes can be
|
|
|
|
* lazy-loaded via ajax. This isn't a hard limit. Example: On a value of 10, with 20 root nodes, each having 30
|
|
|
|
* children, the actual node count will be 50 (all root nodes plus first expanded child).
|
|
|
|
*
|
|
|
|
* @config
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
private static $node_threshold_total = 50;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Limit on the maximum children a specific node can display. Serves as a hard limit to avoid exceeding available
|
|
|
|
* server resources in generating the tree, and browser resources in rendering it. Nodes with children exceeding
|
|
|
|
* this value typically won't display any children, although this is configurable through the $nodeCountCallback
|
|
|
|
* parameter in {@link getChildrenAsUL()}. "Root" nodes will always show all children, regardless of this setting.
|
|
|
|
*
|
|
|
|
* @config
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
private static $node_threshold_leaf = 250;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A list of classnames to exclude from display in both the CMS and front end
|
|
|
|
* displays. ->Children() and ->AllChildren affected.
|
|
|
|
* Especially useful for big sets of pages like listings
|
|
|
|
* If you use this, and still need the classes to be editable
|
|
|
|
* then add a model admin for the class
|
|
|
|
* Note: Does not filter subclasses (non-inheriting)
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @config
|
|
|
|
*/
|
2020-04-20 19:58:09 +02:00
|
|
|
private static $hide_from_hierarchy = [];
|
2016-11-23 06:09:10 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A list of classnames to exclude from display in the page tree views of the CMS,
|
|
|
|
* unlike $hide_from_hierarchy above which effects both CMS and front end.
|
|
|
|
* Especially useful for big sets of pages like listings
|
|
|
|
* If you use this, and still need the classes to be editable
|
|
|
|
* then add a model admin for the class
|
|
|
|
* Note: Does not filter subclasses (non-inheriting)
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @config
|
|
|
|
*/
|
2020-04-20 19:58:09 +02:00
|
|
|
private static $hide_from_cms_tree = [];
|
2016-11-29 00:31:16 +01:00
|
|
|
|
2018-09-25 02:25:23 +02:00
|
|
|
/**
|
|
|
|
* Used to enable or disable the prepopulation of the numchildren cache.
|
|
|
|
* Defaults to true.
|
|
|
|
*
|
|
|
|
* @config
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
private static $prepopulate_numchildren_cache = true;
|
|
|
|
|
2017-10-05 06:23:02 +02:00
|
|
|
/**
|
|
|
|
* Prevent virtual page virtualising these fields
|
|
|
|
*
|
|
|
|
* @config
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private static $non_virtual_fields = [
|
|
|
|
'_cache_children',
|
|
|
|
];
|
|
|
|
|
2018-09-25 02:25:23 +02:00
|
|
|
/**
|
|
|
|
* A cache used by numChildren().
|
|
|
|
* Clear through {@link flushCache()}.
|
|
|
|
* version (int)0 means not on this stage.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected static $cache_numChildren = [];
|
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
public static function get_extra_config($class, $extension, $args)
|
|
|
|
{
|
2020-04-20 19:58:09 +02:00
|
|
|
return [
|
|
|
|
'has_one' => ['Parent' => $class]
|
|
|
|
];
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
2016-11-29 00:31:16 +01:00
|
|
|
|
2016-11-23 06:09:10 +01:00
|
|
|
/**
|
|
|
|
* Validate the owner object - check for existence of infinite loops.
|
|
|
|
*
|
|
|
|
* @param ValidationResult $validationResult
|
|
|
|
*/
|
2016-11-29 00:31:16 +01:00
|
|
|
public function validate(ValidationResult $validationResult)
|
|
|
|
{
|
2016-11-23 06:09:10 +01:00
|
|
|
// The object is new, won't be looping.
|
2017-03-29 06:23:49 +02:00
|
|
|
/** @var DataObject|Hierarchy $owner */
|
|
|
|
$owner = $this->owner;
|
|
|
|
if (!$owner->ID) {
|
2016-11-29 00:31:16 +01:00
|
|
|
return;
|
|
|
|
}
|
2016-11-23 06:09:10 +01:00
|
|
|
// The object has no parent, won't be looping.
|
2017-03-29 06:23:49 +02:00
|
|
|
if (!$owner->ParentID) {
|
2016-11-29 00:31:16 +01:00
|
|
|
return;
|
|
|
|
}
|
2016-11-23 06:09:10 +01:00
|
|
|
// The parent has not changed, skip the check for performance reasons.
|
2017-03-29 06:23:49 +02:00
|
|
|
if (!$owner->isChanged('ParentID')) {
|
2016-11-29 00:31:16 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-11-23 06:09:10 +01:00
|
|
|
// Walk the hierarchy upwards until we reach the top, or until we reach the originating node again.
|
2017-03-29 06:23:49 +02:00
|
|
|
$node = $owner;
|
|
|
|
while ($node && $node->ParentID) {
|
|
|
|
if ((int)$node->ParentID === (int)$owner->ID) {
|
2016-11-23 06:09:10 +01:00
|
|
|
// Hierarchy is looping.
|
|
|
|
$validationResult->addError(
|
|
|
|
_t(
|
2017-05-17 07:40:13 +02:00
|
|
|
__CLASS__ . '.InfiniteLoopNotAllowed',
|
2016-11-23 06:09:10 +01:00
|
|
|
'Infinite loop found within the "{type}" hierarchy. Please change the parent to resolve this',
|
|
|
|
'First argument is the class that makes up the hierarchy.',
|
2020-04-20 19:58:09 +02:00
|
|
|
['type' => get_class($owner)]
|
2016-11-23 06:09:10 +01:00
|
|
|
),
|
|
|
|
'bad',
|
|
|
|
'INFINITE_LOOP'
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
2017-03-29 06:23:49 +02:00
|
|
|
$node = $node->Parent();
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
|
2016-11-23 06:09:10 +01:00
|
|
|
/**
|
|
|
|
* Get a list of this DataObject's and all it's descendants IDs.
|
|
|
|
*
|
|
|
|
* @return int[]
|
|
|
|
*/
|
2016-11-29 00:31:16 +01:00
|
|
|
public function getDescendantIDList()
|
|
|
|
{
|
2020-04-20 19:58:09 +02:00
|
|
|
$idList = [];
|
2016-11-23 06:09:10 +01:00
|
|
|
$this->loadDescendantIDListInto($idList);
|
|
|
|
return $idList;
|
|
|
|
}
|
2016-11-29 00:31:16 +01:00
|
|
|
|
2016-11-23 06:09:10 +01:00
|
|
|
/**
|
|
|
|
* Get a list of this DataObject's and all it's descendants ID, and put them in $idList.
|
|
|
|
*
|
|
|
|
* @param array $idList Array to put results in.
|
2017-03-29 06:23:49 +02:00
|
|
|
* @param DataObject|Hierarchy $node
|
2016-11-23 06:09:10 +01:00
|
|
|
*/
|
2017-03-29 06:23:49 +02:00
|
|
|
protected function loadDescendantIDListInto(&$idList, $node = null)
|
2016-11-29 00:31:16 +01:00
|
|
|
{
|
2017-03-29 06:23:49 +02:00
|
|
|
if (!$node) {
|
|
|
|
$node = $this->owner;
|
|
|
|
}
|
|
|
|
$children = $node->AllChildren();
|
|
|
|
foreach ($children as $child) {
|
|
|
|
if (!in_array($child->ID, $idList)) {
|
2016-11-23 06:09:10 +01:00
|
|
|
$idList[] = $child->ID;
|
2017-03-29 06:23:49 +02:00
|
|
|
$this->loadDescendantIDListInto($idList, $child);
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-29 06:23:49 +02:00
|
|
|
* Get the children for this DataObject filtered by canView()
|
2016-11-23 06:09:10 +01:00
|
|
|
*
|
2017-03-29 06:23:49 +02:00
|
|
|
* @return SS_List
|
2016-11-23 06:09:10 +01:00
|
|
|
*/
|
2016-11-29 00:31:16 +01:00
|
|
|
public function Children()
|
|
|
|
{
|
2017-10-05 06:23:02 +02:00
|
|
|
$children = $this->owner->_cache_children;
|
|
|
|
if ($children) {
|
|
|
|
return $children;
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
2017-03-29 06:23:49 +02:00
|
|
|
|
2017-10-05 06:23:02 +02:00
|
|
|
$children = $this
|
2017-03-29 06:23:49 +02:00
|
|
|
->owner
|
|
|
|
->stageChildren(false)
|
|
|
|
->filterByCallback(function (DataObject $record) {
|
|
|
|
return $record->canView();
|
|
|
|
});
|
2017-10-05 06:23:02 +02:00
|
|
|
$this->owner->_cache_children = $children;
|
|
|
|
return $children;
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return all children, including those 'not in menus'.
|
|
|
|
*
|
|
|
|
* @return DataList
|
|
|
|
*/
|
2016-11-29 00:31:16 +01:00
|
|
|
public function AllChildren()
|
|
|
|
{
|
2016-11-23 06:09:10 +01:00
|
|
|
return $this->owner->stageChildren(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return all children, including those that have been deleted but are still in live.
|
|
|
|
* - Deleted children will be marked as "DeletedFromStage"
|
|
|
|
* - Added children will be marked as "AddedToStage"
|
|
|
|
* - Modified children will be marked as "ModifiedOnStage"
|
|
|
|
* - Everything else has "SameOnStage" set, as an indicator that this information has been looked up.
|
|
|
|
*
|
|
|
|
* @return ArrayList
|
|
|
|
*/
|
2017-03-29 06:23:49 +02:00
|
|
|
public function AllChildrenIncludingDeleted()
|
2016-11-29 00:31:16 +01:00
|
|
|
{
|
2018-02-19 23:37:27 +01:00
|
|
|
/** @var DataObject|Hierarchy|Versioned $owner */
|
|
|
|
$owner = $this->owner;
|
|
|
|
$stageChildren = $owner->stageChildren(true);
|
2016-11-29 00:31:16 +01:00
|
|
|
|
2017-03-29 06:23:49 +02:00
|
|
|
// Add live site content that doesn't exist on the stage site, if required.
|
2018-02-19 23:37:27 +01:00
|
|
|
if ($owner->hasExtension(Versioned::class) && $owner->hasStages()) {
|
2017-03-29 06:23:49 +02:00
|
|
|
// Next, go through the live children. Only some of these will be listed
|
2018-02-19 23:37:27 +01:00
|
|
|
$liveChildren = $owner->liveChildren(true, true);
|
2017-03-29 06:23:49 +02:00
|
|
|
if ($liveChildren) {
|
|
|
|
$merged = new ArrayList();
|
|
|
|
$merged->merge($stageChildren);
|
|
|
|
$merged->merge($liveChildren);
|
|
|
|
$stageChildren = $merged;
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
|
|
|
}
|
2018-02-19 23:37:27 +01:00
|
|
|
$owner->extend("augmentAllChildrenIncludingDeleted", $stageChildren);
|
2016-11-23 06:09:10 +01:00
|
|
|
return $stageChildren;
|
|
|
|
}
|
2016-11-29 00:31:16 +01:00
|
|
|
|
2016-11-23 06:09:10 +01:00
|
|
|
/**
|
|
|
|
* Return all the children that this page had, including pages that were deleted from both stage & live.
|
|
|
|
*
|
|
|
|
* @return DataList
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
2016-11-29 00:31:16 +01:00
|
|
|
public function AllHistoricalChildren()
|
|
|
|
{
|
2018-02-19 23:37:27 +01:00
|
|
|
/** @var DataObject|Versioned|Hierarchy $owner */
|
|
|
|
$owner = $this->owner;
|
|
|
|
if (!$owner->hasExtension(Versioned::class) || !$owner->hasStages()) {
|
|
|
|
throw new Exception(
|
|
|
|
'Hierarchy->AllHistoricalChildren() only works with Versioned extension applied with staging'
|
|
|
|
);
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
|
|
|
|
2018-02-19 23:37:27 +01:00
|
|
|
$baseTable = $owner->baseTable();
|
|
|
|
$parentIDColumn = $owner->getSchema()->sqlColumnForField($owner, 'ParentID');
|
2016-11-23 06:09:10 +01:00
|
|
|
return Versioned::get_including_deleted(
|
2018-02-19 23:37:27 +01:00
|
|
|
$owner->baseClass(),
|
|
|
|
[ $parentIDColumn => $owner->ID ],
|
2016-11-23 06:09:10 +01:00
|
|
|
"\"{$baseTable}\".\"ID\" ASC"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the number of children that this page ever had, including pages that were deleted.
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
2016-11-29 00:31:16 +01:00
|
|
|
public function numHistoricalChildren()
|
|
|
|
{
|
2016-11-23 06:09:10 +01:00
|
|
|
return $this->AllHistoricalChildren()->count();
|
|
|
|
}
|
2016-11-29 00:31:16 +01:00
|
|
|
|
2016-11-23 06:09:10 +01:00
|
|
|
/**
|
|
|
|
* Return the number of direct children. By default, values are cached after the first invocation. Can be
|
|
|
|
* augumented by {@link augmentNumChildrenCountQuery()}.
|
|
|
|
*
|
|
|
|
* @param bool $cache Whether to retrieve values from cache
|
|
|
|
* @return int
|
|
|
|
*/
|
2016-11-29 00:31:16 +01:00
|
|
|
public function numChildren($cache = true)
|
|
|
|
{
|
2018-09-25 02:25:23 +02:00
|
|
|
|
|
|
|
$baseClass = $this->owner->baseClass();
|
|
|
|
$cacheType = 'numChildren';
|
|
|
|
$id = $this->owner->ID;
|
|
|
|
|
|
|
|
// cached call
|
2017-10-05 06:23:02 +02:00
|
|
|
if ($cache) {
|
2018-09-25 02:25:23 +02:00
|
|
|
if (isset(self::$cache_numChildren[$baseClass][$cacheType][$id])) {
|
|
|
|
return self::$cache_numChildren[$baseClass][$cacheType][$id];
|
|
|
|
} elseif (isset(self::$cache_numChildren[$baseClass][$cacheType]['_complete'])) {
|
|
|
|
// If the cache is complete and we didn't find our ID in the cache, it means this object is childless.
|
|
|
|
return 0;
|
2017-10-05 06:23:02 +02:00
|
|
|
}
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
|
|
|
|
2017-03-29 06:23:49 +02:00
|
|
|
// We call stageChildren(), because Children() has canView() filtering
|
2017-10-05 06:23:02 +02:00
|
|
|
$numChildren = (int)$this->owner->stageChildren(true)->Count();
|
2017-03-29 06:23:49 +02:00
|
|
|
|
|
|
|
// Save if caching
|
|
|
|
if ($cache) {
|
2018-09-25 02:25:23 +02:00
|
|
|
self::$cache_numChildren[$baseClass][$cacheType][$id] = $numChildren;
|
2017-03-29 06:23:49 +02:00
|
|
|
}
|
2018-09-25 02:25:23 +02:00
|
|
|
|
2017-10-05 06:23:02 +02:00
|
|
|
return $numChildren;
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
|
|
|
|
2018-09-25 02:25:23 +02:00
|
|
|
/**
|
|
|
|
* Pre-populate any appropriate caches prior to rendering a tree.
|
|
|
|
* This is used to allow for the efficient rendering of tree views, notably in the CMS.
|
|
|
|
* In the cace of Hierarchy, it caches numChildren values. Other extensions can provide an
|
|
|
|
* onPrepopulateTreeDataCache(DataList $recordList = null, array $options) methods to hook
|
|
|
|
* into this event as well.
|
|
|
|
*
|
|
|
|
* @param DataList|array $recordList The list of records to prepopulate caches for. Null for all records.
|
|
|
|
* @param array $options A map of hints about what should be cached. "numChildrenMethod" and
|
|
|
|
* "childrenMethod" are allowed keys.
|
|
|
|
*/
|
|
|
|
public function prepopulateTreeDataCache($recordList = null, array $options = [])
|
|
|
|
{
|
|
|
|
if (empty($options['numChildrenMethod']) || $options['numChildrenMethod'] === 'numChildren') {
|
|
|
|
$idList = is_array($recordList) ? $recordList :
|
|
|
|
($recordList instanceof DataList ? $recordList->column('ID') : null);
|
2021-08-30 09:02:03 +02:00
|
|
|
self::prepopulate_numchildren_cache($this->getHierarchyBaseClass(), $idList);
|
2018-09-25 02:25:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->owner->extend('onPrepopulateTreeDataCache', $recordList, $options);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pre-populate the cache for Versioned::get_versionnumber_by_stage() for
|
|
|
|
* a list of record IDs, for more efficient database querying. If $idList
|
|
|
|
* is null, then every record will be pre-cached.
|
|
|
|
*
|
2020-12-21 22:23:23 +01:00
|
|
|
* @param string $baseClass
|
2018-09-25 02:25:23 +02:00
|
|
|
* @param array $idList
|
|
|
|
*/
|
|
|
|
public static function prepopulate_numchildren_cache($baseClass, $idList = null)
|
|
|
|
{
|
|
|
|
if (!Config::inst()->get(static::class, 'prepopulate_numchildren_cache')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @var Versioned|DataObject $singleton */
|
|
|
|
$dummyObject = DataObject::singleton($baseClass);
|
|
|
|
$baseTable = $dummyObject->baseTable();
|
|
|
|
|
|
|
|
$idColumn = Convert::symbol2sql("{$baseTable}.ID");
|
|
|
|
|
|
|
|
// Get the stageChildren() result of a dummy object and break down into a generic query
|
|
|
|
$query = $dummyObject->stageChildren(true, true)->dataQuery()->query();
|
|
|
|
|
|
|
|
// optional ID-list filter
|
|
|
|
if ($idList) {
|
|
|
|
// Validate the ID list
|
|
|
|
foreach ($idList as $id) {
|
|
|
|
if (!is_numeric($id)) {
|
2020-09-25 02:09:37 +02:00
|
|
|
throw new \InvalidArgumentException(
|
|
|
|
"Bad ID passed to Versioned::prepopulate_numchildren_cache() in \$idList: " . $id
|
2018-09-25 02:25:23 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$query->addWhere(['"ParentID" IN (' . DB::placeholders($idList) . ')' => $idList]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$query->setOrderBy(null);
|
|
|
|
|
|
|
|
$query->setSelect([
|
|
|
|
'"ParentID"',
|
|
|
|
"COUNT(DISTINCT $idColumn) AS \"NumChildren\"",
|
|
|
|
]);
|
|
|
|
$query->setGroupBy([Convert::symbol2sql("ParentID")]);
|
|
|
|
|
|
|
|
$numChildren = $query->execute()->map();
|
|
|
|
self::$cache_numChildren[$baseClass]['numChildren'] = $numChildren;
|
|
|
|
if (!$idList) {
|
|
|
|
// If all objects are being cached, mark this cache as complete
|
|
|
|
// to avoid counting children of childless object.
|
|
|
|
self::$cache_numChildren[$baseClass]['numChildren']['_complete'] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-23 06:09:10 +01:00
|
|
|
/**
|
|
|
|
* Checks if we're on a controller where we should filter. ie. Are we loading the SiteTree?
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2016-11-29 00:31:16 +01:00
|
|
|
public function showingCMSTree()
|
|
|
|
{
|
2017-03-10 04:43:10 +01:00
|
|
|
if (!Controller::has_curr() || !class_exists(LeftAndMain::class)) {
|
2016-11-29 00:31:16 +01:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-23 06:09:10 +01:00
|
|
|
$controller = Controller::curr();
|
|
|
|
return $controller instanceof LeftAndMain
|
2020-04-20 19:58:09 +02:00
|
|
|
&& in_array($controller->getAction(), ["treeview", "listview", "getsubtree"]);
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
|
|
|
|
2021-08-30 09:02:03 +02:00
|
|
|
/**
|
|
|
|
* Find the first class in the inheritance chain that has Hierarchy extension applied
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private function getHierarchyBaseClass(): string
|
|
|
|
{
|
|
|
|
$ancestry = ClassInfo::ancestry($this->owner);
|
|
|
|
$ancestorClass = array_shift($ancestry);
|
|
|
|
while ($ancestorClass && !Extensible::has_extension($ancestorClass, self::class)) {
|
|
|
|
$ancestorClass = array_shift($ancestry);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $ancestorClass;
|
|
|
|
}
|
|
|
|
|
2016-11-23 06:09:10 +01:00
|
|
|
/**
|
|
|
|
* Return children in the stage site.
|
|
|
|
*
|
|
|
|
* @param bool $showAll Include all of the elements, even those not shown in the menus. Only applicable when
|
|
|
|
* extension is applied to {@link SiteTree}.
|
2021-08-30 09:02:03 +02:00
|
|
|
* @param bool $skipParentIDFilter Set to true to suppress the ParentID and ID where statements.
|
2016-11-23 06:09:10 +01:00
|
|
|
* @return DataList
|
|
|
|
*/
|
2018-09-25 02:25:23 +02:00
|
|
|
public function stageChildren($showAll = false, $skipParentIDFilter = false)
|
2016-11-29 00:31:16 +01:00
|
|
|
{
|
2021-08-30 09:02:03 +02:00
|
|
|
/** @var DataObject|Hierarchy $owner */
|
|
|
|
$owner = $this->owner;
|
|
|
|
$hideFromHierarchy = $owner->config()->hide_from_hierarchy;
|
|
|
|
$hideFromCMSTree = $owner->config()->hide_from_cms_tree;
|
|
|
|
$class = $this->getHierarchyBaseClass();
|
|
|
|
|
|
|
|
$schema = DataObject::getSchema();
|
|
|
|
$tableForParentID = $schema->tableForField($class, 'ParentID');
|
|
|
|
$tableForID = $schema->tableForField($class, 'ID');
|
|
|
|
|
|
|
|
$staged = DataObject::get($class)->where(sprintf(
|
2018-09-25 02:25:23 +02:00
|
|
|
'%s.%s <> %s.%s',
|
2021-08-30 09:02:03 +02:00
|
|
|
Convert::symbol2sql($tableForParentID),
|
2018-09-25 02:25:23 +02:00
|
|
|
Convert::symbol2sql("ParentID"),
|
2021-08-30 09:02:03 +02:00
|
|
|
Convert::symbol2sql($tableForID),
|
2018-09-25 02:25:23 +02:00
|
|
|
Convert::symbol2sql("ID")
|
|
|
|
));
|
|
|
|
|
|
|
|
if (!$skipParentIDFilter) {
|
|
|
|
// There's no filtering by ID if we don't have an ID.
|
|
|
|
$staged = $staged->filter('ParentID', (int)$this->owner->ID);
|
|
|
|
}
|
|
|
|
|
2017-03-29 06:23:49 +02:00
|
|
|
if ($hideFromHierarchy) {
|
|
|
|
$staged = $staged->exclude('ClassName', $hideFromHierarchy);
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
2017-03-29 06:23:49 +02:00
|
|
|
if ($hideFromCMSTree && $this->showingCMSTree()) {
|
|
|
|
$staged = $staged->exclude('ClassName', $hideFromCMSTree);
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
|
|
|
if (!$showAll && DataObject::getSchema()->fieldSpec($this->owner, 'ShowInMenus')) {
|
|
|
|
$staged = $staged->filter('ShowInMenus', 1);
|
|
|
|
}
|
|
|
|
$this->owner->extend("augmentStageChildren", $staged, $showAll);
|
|
|
|
return $staged;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return children in the live site, if it exists.
|
|
|
|
*
|
|
|
|
* @param bool $showAll Include all of the elements, even those not shown in the menus. Only
|
|
|
|
* applicable when extension is applied to {@link SiteTree}.
|
|
|
|
* @param bool $onlyDeletedFromStage Only return items that have been deleted from stage
|
|
|
|
* @return DataList
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
2016-11-29 00:31:16 +01:00
|
|
|
public function liveChildren($showAll = false, $onlyDeletedFromStage = false)
|
|
|
|
{
|
2018-02-19 23:37:27 +01:00
|
|
|
/** @var Versioned|DataObject|Hierarchy $owner */
|
|
|
|
$owner = $this->owner;
|
|
|
|
if (!$owner->hasExtension(Versioned::class) || !$owner->hasStages()) {
|
|
|
|
throw new Exception('Hierarchy->liveChildren() only works with Versioned extension applied with staging');
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
|
|
|
|
2018-02-19 23:37:27 +01:00
|
|
|
$hideFromHierarchy = $owner->config()->hide_from_hierarchy;
|
|
|
|
$hideFromCMSTree = $owner->config()->hide_from_cms_tree;
|
2021-08-30 09:02:03 +02:00
|
|
|
$children = DataObject::get($this->getHierarchyBaseClass())
|
2018-02-19 23:37:27 +01:00
|
|
|
->filter('ParentID', (int)$owner->ID)
|
|
|
|
->exclude('ID', (int)$owner->ID)
|
2020-04-20 19:58:09 +02:00
|
|
|
->setDataQueryParam([
|
2016-11-23 06:09:10 +01:00
|
|
|
'Versioned.mode' => $onlyDeletedFromStage ? 'stage_unique' : 'stage',
|
|
|
|
'Versioned.stage' => 'Live'
|
2020-04-20 19:58:09 +02:00
|
|
|
]);
|
2017-03-29 06:23:49 +02:00
|
|
|
if ($hideFromHierarchy) {
|
|
|
|
$children = $children->exclude('ClassName', $hideFromHierarchy);
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
2017-03-29 06:23:49 +02:00
|
|
|
if ($hideFromCMSTree && $this->showingCMSTree()) {
|
|
|
|
$children = $children->exclude('ClassName', $hideFromCMSTree);
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
2018-02-19 23:37:27 +01:00
|
|
|
if (!$showAll && DataObject::getSchema()->fieldSpec($owner, 'ShowInMenus')) {
|
2016-11-23 06:09:10 +01:00
|
|
|
$children = $children->filter('ShowInMenus', 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $children;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get this object's parent, optionally filtered by an SQL clause. If the clause doesn't match the parent, nothing
|
|
|
|
* is returned.
|
|
|
|
*
|
|
|
|
* @param string $filter
|
|
|
|
* @return DataObject
|
|
|
|
*/
|
2016-11-29 00:31:16 +01:00
|
|
|
public function getParent($filter = null)
|
|
|
|
{
|
2016-11-23 06:09:10 +01:00
|
|
|
$parentID = $this->owner->ParentID;
|
|
|
|
if (empty($parentID)) {
|
|
|
|
return null;
|
|
|
|
}
|
2017-10-05 06:23:02 +02:00
|
|
|
$baseClass = $this->owner->baseClass();
|
|
|
|
$idSQL = $this->owner->getSchema()->sqlColumnForField($baseClass, 'ID');
|
|
|
|
return DataObject::get_one($baseClass, [
|
|
|
|
[$idSQL => $parentID],
|
2016-11-23 06:09:10 +01:00
|
|
|
$filter
|
2017-10-05 06:23:02 +02:00
|
|
|
]);
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-29 06:23:49 +02:00
|
|
|
* Return all the parents of this class in a set ordered from the closest to furtherest parent.
|
2016-11-23 06:09:10 +01:00
|
|
|
*
|
2017-03-29 06:23:49 +02:00
|
|
|
* @param bool $includeSelf
|
2016-11-23 06:09:10 +01:00
|
|
|
* @return ArrayList
|
|
|
|
*/
|
2017-03-29 06:23:49 +02:00
|
|
|
public function getAncestors($includeSelf = false)
|
2016-11-29 00:31:16 +01:00
|
|
|
{
|
2016-11-23 06:09:10 +01:00
|
|
|
$ancestors = new ArrayList();
|
2017-03-29 06:23:49 +02:00
|
|
|
$object = $this->owner;
|
2016-11-29 00:31:16 +01:00
|
|
|
|
2017-03-29 06:23:49 +02:00
|
|
|
if ($includeSelf) {
|
|
|
|
$ancestors->push($object);
|
|
|
|
}
|
2016-11-23 06:09:10 +01:00
|
|
|
while ($object = $object->getParent()) {
|
|
|
|
$ancestors->push($object);
|
|
|
|
}
|
2016-11-29 00:31:16 +01:00
|
|
|
|
2016-11-23 06:09:10 +01:00
|
|
|
return $ancestors;
|
|
|
|
}
|
2016-11-29 00:31:16 +01:00
|
|
|
|
2016-11-23 06:09:10 +01:00
|
|
|
/**
|
|
|
|
* Returns a human-readable, flattened representation of the path to the object, using its {@link Title} attribute.
|
|
|
|
*
|
|
|
|
* @param string $separator
|
|
|
|
* @return string
|
|
|
|
*/
|
2016-11-29 00:31:16 +01:00
|
|
|
public function getBreadcrumbs($separator = ' » ')
|
|
|
|
{
|
2020-04-20 19:58:09 +02:00
|
|
|
$crumbs = [];
|
2016-11-23 06:09:10 +01:00
|
|
|
$ancestors = array_reverse($this->owner->getAncestors()->toArray());
|
2017-03-29 06:23:49 +02:00
|
|
|
/** @var DataObject $ancestor */
|
2016-11-29 00:31:16 +01:00
|
|
|
foreach ($ancestors as $ancestor) {
|
2017-03-29 06:23:49 +02:00
|
|
|
$crumbs[] = $ancestor->getTitle();
|
2016-11-29 00:31:16 +01:00
|
|
|
}
|
2017-03-29 06:23:49 +02:00
|
|
|
$crumbs[] = $this->owner->getTitle();
|
2016-11-23 06:09:10 +01:00
|
|
|
return implode($separator, $crumbs);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Flush all Hierarchy caches:
|
|
|
|
* - Children (instance)
|
|
|
|
* - NumChildren (instance)
|
|
|
|
*/
|
2016-11-29 00:31:16 +01:00
|
|
|
public function flushCache()
|
|
|
|
{
|
2017-10-05 06:23:02 +02:00
|
|
|
$this->owner->_cache_children = null;
|
2018-09-25 02:25:23 +02:00
|
|
|
self::$cache_numChildren = [];
|
2016-11-23 06:09:10 +01:00
|
|
|
}
|
2012-03-27 06:04:11 +02:00
|
|
|
}
|