mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
BUGFIX Moved SiteTree->ParentID property to Hierarchy extension (fixes #5638)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@105668 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
93f05f8acb
commit
003d43f3ac
@ -24,6 +24,15 @@ class Hierarchy extends DataObjectDecorator {
|
||||
|
||||
function augmentWrite(&$manipulation) {
|
||||
}
|
||||
|
||||
function extraStatics($class = null) {
|
||||
return array(
|
||||
'has_one' => array(
|
||||
// TODO this method is called *both* statically and on an instance
|
||||
"Parent" => ($class) ? $class : $this->owner->class
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the children of this DataObject as an XHTML UL. This will be called recursively on each child,
|
||||
|
@ -122,10 +122,6 @@ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvid
|
||||
"CanEditType" => "Inherit"
|
||||
);
|
||||
|
||||
static $has_one = array(
|
||||
"Parent" => "SiteTree"
|
||||
);
|
||||
|
||||
static $versioning = array(
|
||||
"Stage", "Live"
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user