mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #1730 from wilr/open5489
API: add onBeforeRollback() and onAfterRollback() hooks.
This commit is contained in:
commit
ff2977eee3
@ -1077,8 +1077,12 @@ class Versioned extends DataExtension {
|
|||||||
* @param $version Either the string 'Live' or a version number
|
* @param $version Either the string 'Live' or a version number
|
||||||
*/
|
*/
|
||||||
public function doRollbackTo($version) {
|
public function doRollbackTo($version) {
|
||||||
|
$this->extend('onBeforeRollback', $version);
|
||||||
$this->publish($version, "Stage", true);
|
$this->publish($version, "Stage", true);
|
||||||
|
|
||||||
$this->owner->writeWithoutVersion();
|
$this->owner->writeWithoutVersion();
|
||||||
|
|
||||||
|
$this->extend('onAfterRollback', $version);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user