mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
Optimization for SiteTree::allowedChildren()
Adds an `Object::extend('updateAllowedChildren')` whilst also caching the default response Using `get_class($this)` as cache key as this is what is used in `Configurable::stat($name)` to retrieve the candidates
This commit is contained in:
parent
bd86251043
commit
0570df95a8
@ -2467,40 +2467,43 @@ class SiteTree extends DataObject implements PermissionProvider, i18nEntityProvi
|
|||||||
public function allowedChildren()
|
public function allowedChildren()
|
||||||
{
|
{
|
||||||
if (isset(static::$_allowedChildren[$this->ClassName])) {
|
if (isset(static::$_allowedChildren[$this->ClassName])) {
|
||||||
return static::$_allowedChildren[$this->ClassName];
|
$allowedChildren = static::$_allowedChildren[$this->ClassName];
|
||||||
}
|
} else {
|
||||||
// Get config based on old FIRST_SET rules
|
// Get config based on old FIRST_SET rules
|
||||||
$candidates = null;
|
$candidates = null;
|
||||||
$class = get_class($this);
|
$class = get_class($this);
|
||||||
while ($class) {
|
while ($class) {
|
||||||
if (Config::inst()->exists($class, 'allowed_children', Config::UNINHERITED)) {
|
if (Config::inst()->exists($class, 'allowed_children', Config::UNINHERITED)) {
|
||||||
$candidates = Config::inst()->get($class, 'allowed_children', Config::UNINHERITED);
|
$candidates = Config::inst()->get($class, 'allowed_children', Config::UNINHERITED);
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
$class = get_parent_class($class);
|
|
||||||
}
|
|
||||||
if (!$candidates || $candidates === 'none' || $candidates === 'SiteTree_root') {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
|
|
||||||
// Parse candidate list
|
|
||||||
$allowedChildren = [];
|
|
||||||
foreach ($candidates as $candidate) {
|
|
||||||
// If a classname is prefixed by "*", such as "*Page", then only that class is allowed - no subclasses.
|
|
||||||
// Otherwise, the class and all its subclasses are allowed.
|
|
||||||
if (substr($candidate, 0, 1) == '*') {
|
|
||||||
$allowedChildren[] = substr($candidate, 1);
|
|
||||||
} elseif ($subclasses = ClassInfo::subclassesFor($candidate)) {
|
|
||||||
foreach ($subclasses as $subclass) {
|
|
||||||
if ($subclass == 'SiteTree_root' || singleton($subclass) instanceof HiddenClass) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
$allowedChildren[] = $subclass;
|
|
||||||
}
|
}
|
||||||
|
$class = get_parent_class($class);
|
||||||
|
}
|
||||||
|
if (!$candidates || $candidates === 'none' || $candidates === 'SiteTree_root') {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse candidate list
|
||||||
|
$allowedChildren = [];
|
||||||
|
foreach ($candidates as $candidate) {
|
||||||
|
// If a classname is prefixed by "*", such as "*Page", then only that class is allowed - no subclasses.
|
||||||
|
// Otherwise, the class and all its subclasses are allowed.
|
||||||
|
if (substr($candidate, 0, 1) == '*') {
|
||||||
|
$allowedChildren[] = substr($candidate, 1);
|
||||||
|
} elseif ($subclasses = ClassInfo::subclassesFor($candidate)) {
|
||||||
|
foreach ($subclasses as $subclass) {
|
||||||
|
if ($subclass == 'SiteTree_root' || singleton($subclass) instanceof HiddenClass) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
$allowedChildren[] = $subclass;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
static::$_allowedChildren[get_class($this)] = $allowedChildren;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
$this->extend('updateAllowedChildren', $allowedChildren);
|
||||||
|
|
||||||
return static::$_allowedChildren[$this->ClassName] = $allowedChildren;
|
return $allowedChildren;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user