Manual:Hooks/ArticleInsertComplete

From MediaWiki.org

Jump to: navigation, search
ArticleInsertComplete
Available from version 1.6.0
Occurs after a new article has been created

*Define function:
function fnMyHook( &$article, &$user, $text, $summary, $minoredit, 
$watchthis, $sectionanchor, &$flags, $revision
) { ... }

*Attach hook:
$wgHooks['ArticleInsertComplete'][] = 'fnMyHook';
Called from: Article.php

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


[edit] Details

  • $article: the article (object) saved
  • $user: the user (object) who saved the article
  • $text: the new article content
  • $summary: the article summary (comment)
  • $minoredit: minor edit flag
  • $watchthis: not used as of 1.8 (automatically set to "null")
  • $sectionanchor: not used as of 1.8 (automatically set to "null")
  • $flags: bitfield, see source code for details; passed to Article::doedit()
  • $revision: The newly inserted revision object (as of 1.11.0)

[edit] See also