Manual:Hooks/ArticleRollbackComplete
Appearance
This feature was removed from MediaWiki core in version 1.37.0 (after being deprecated in 1.35.0). Please see PageSaveComplete for an alternative way to use this feature. |
ArticleRollbackComplete | |
---|---|
Available from version 1.12.0 Removed in version 1.37.0 (Gerrit change 678414) Executes after an article rollback is complete | |
Define function: | public static function onArticleRollbackComplete( &$article, $user, $revision, $current ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"ArticleRollbackComplete": "MediaWiki\\Extension\\MyExtension\\Hooks::onArticleRollbackComplete"
}
}
|
Called from: | File(s): page/WikiPage.php |
Interface: | ArticleRollbackCompleteHook.php |
For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:ArticleRollbackComplete extensions/en.
Details
- $article - the article that was edited. (WikiPage object) 1.18+
- $user - the user who did the rollback
- $revision - the revision the page was reverted back to
- $current - the Revision object of the top edit that was reverted.