MediaWiki  master
PageSaveCompleteHook.php
Go to the documentation of this file.
1 <?php
2 
3 namespace MediaWiki\Storage\Hook;
4 
8 use WikiPage;
9 
34  public function onPageSaveComplete(
35  $wikiPage,
36  $user,
37  $summary,
38  $flags,
39  $revisionRecord,
40  $editResult
41  );
42 }
Page revision base class.
Object for storing information about the effects of an edit.
Definition: EditResult.php:35
Base representation for an editable wiki page.
Definition: WikiPage.php:77
This is a hook handler interface, see docs/Hooks.md.
onPageSaveComplete( $wikiPage, $user, $summary, $flags, $revisionRecord, $editResult)
This hook is called after an article has been updated.
Interface for objects representing user identity.