mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 06:05:56 +00:00
Merge pull request #1326 from chillu/pulls/3/sitetree-extension-points
Extension hooks for "restore to stage" and "archive"
This commit is contained in:
commit
b8e2b231ae
@ -2534,6 +2534,8 @@ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvid
|
|||||||
* @return self
|
* @return self
|
||||||
*/
|
*/
|
||||||
public function doRestoreToStage() {
|
public function doRestoreToStage() {
|
||||||
|
$this->invokeWithExtensions('onBeforeRestoreToStage', $this);
|
||||||
|
|
||||||
// Ensure that the parent page is restored, otherwise restore to root
|
// Ensure that the parent page is restored, otherwise restore to root
|
||||||
if($this->isParentArchived()) {
|
if($this->isParentArchived()) {
|
||||||
$this->ParentID = 0;
|
$this->ParentID = 0;
|
||||||
@ -2563,6 +2565,8 @@ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvid
|
|||||||
|
|
||||||
Versioned::reading_stage($oldStage);
|
Versioned::reading_stage($oldStage);
|
||||||
|
|
||||||
|
$this->invokeWithExtensions('onAfterRestoreToStage', $this);
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2572,10 +2576,15 @@ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvid
|
|||||||
* @return bool Success
|
* @return bool Success
|
||||||
*/
|
*/
|
||||||
public function doArchive() {
|
public function doArchive() {
|
||||||
|
$this->invokeWithExtensions('onBeforeArchive', $this);
|
||||||
|
|
||||||
if($this->doUnpublish()) {
|
if($this->doUnpublish()) {
|
||||||
$this->delete();
|
$this->delete();
|
||||||
|
$this->invokeWithExtensions('onAfterArchive', $this);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user