< Manual:Hooks
ArticleRevisionUndeleted
Available from version 1.12.0
Removed in version 1.37.0
Called after an article revision is restored
Define function:
public static function onArticleRevisionUndeleted( $title, $revision, $oldPageID ) { ... }
Attach hook: In extension.json:
{
	"Hooks": {
		"ArticleRevisionUndeleted": "MyExtensionHooks::onArticleRevisionUndeleted"
	}
}
Called from: File(s): page/PageArchive.php
Interface: ArticleRevisionUndeletedHook.php

For more information about attaching hooks, see Manual:Hooks .
For examples of extensions using this hook, see Category:ArticleRevisionUndeleted extensions.

Details

  • $title: the article title
  • $revision: the revision object of the restored article revision
  • $oldPageID: the page ID of the revision when archived (may be null, may be number in string form)
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.