Manual:Hooks/ArticleAfterFetchContent
Appearance
This feature was removed from MediaWiki core in version 1.29.0 (after being deprecated in 1.21.0).
Please see ArticleRevisionViewCustom for an alternative way to use this feature. |
| ArticleAfterFetchContent | |
|---|---|
| Available from version 1.6.0 Removed in version 1.29.0 Used to process raw wiki code after most of the other parser processing is complete. | |
| Define function: | public static function onArticleAfterFetchContent( &$article, &$content ) { ... }
|
| Attach hook: | In extension.json:
{
"Hooks": {
"ArticleAfterFetchContent": "MediaWiki\\Extension\\MyExtension\\Hooks::onArticleAfterFetchContent"
}
}
|
| Called from: | File(s): page/Article.php |
| Interface: | ArticleAfterFetchContentHook.php |
For more information about attaching hooks, see Manual:Hooks.
For examples of extensions using this hook, see Category:ArticleAfterFetchContent extensions.
Details
[edit]- &$article: the article object being loaded from the database
- &$content: the content (text) of the article
Notes
[edit]- Not called when loading page from cache, use ?action=purge to force page render.
- Also called when fetching article source for action=edit.