Manual:Hooks/ArticleSaveComplete
From MediaWiki.org
< Manual:Hooks(Redirected from Manual:MediaWiki hooks/ArticleSaveComplete)
| ArticleSaveComplete | |
|---|---|
| Available from version 1.4.0 Occurs after the save article request has been processed |
|
*Define function: |
function fnMyHook(&$article, &$user, &$text, &$summary, |
*Attach hook: |
$wgHooks['ArticleSaveComplete'][] = 'fnMyHook'; |
| Called from: | Article.php |
*For more information about attaching hooks, see Manual:Hooks.
*For examples of extensions using this hook, see Category:ArticleSaveComplete extensions.
[edit] Details
- $article: the article (object) saved
- $user: the user (object) who saved the article
- $text: the new article text
- $summary: the article summary (comment)
- $isminor: minor flag
- $iswatch: not used as of 1.8
- $section: not used as of 1.8
- $flags: bitfield, see source code for details
- $revision: the new revision (object) saved (only v1.11.0 and newer)
[edit] Notes
This did not apply to newly uploaded images until v1.4.5.
- Version 1.4.x - 1.5.x: included in EditPage.php and Image.php.
- Version 1.6.x - 1.10.x:included in Article::updateArticle() and Article::insertArticle().
- Version 1.11+: included in Article::doEdit().

