Manual:Hooks/UndeleteForm::showHistory

From mediawiki.org
UndeleteForm::showHistory
Available from version 1.18.0 (r88235, codereview)
Called in UndeleteForm::showHistory, after a PageArchive object has been created but before any further processing is done.
Define function:
public static function onUndeleteForm_showHistory( &$archive, $title ) { ... }
Attach hook: In extension.json:
{
	"Hooks": {
		"UndeleteForm::showHistory": "MediaWiki\\Extension\\MyExtension\\Hooks::onUndeleteFormshowHistory"
	}
}
Called from: File(s): SpecialUndelete.php
Interface: UndeleteForm__showHistoryHook.php

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


Details[edit]

  • &$archive: PageArchive object.
  • $title: Title object of the page that we're viewing.