< Manual:Hooks
HtmlCacheUpdaterAppendUrls | |
---|---|
Available from version 1.35.0 (Gerrit change 589421) This hook is used to declare extra URLs to purge from HTTP caches. | |
Define function: | public static function onHtmlCacheUpdaterAppendUrls( Title $title, int $mode, array &$append ) { ... }
|
Attach hook: | In extension.json:
{
"Hooks": {
"HtmlCacheUpdaterAppendUrls": "MyExtensionHooks::onHtmlCacheUpdaterAppendUrls"
}
}
|
Called from: | File(s): cache/HtmlCacheUpdater.php Function(s): getUrls |
Interface: | HtmlCacheUpdaterAppendUrlsHook.php |
For more information about attaching hooks, see Manual:Hooks
For examples of extensions using this hook, see Category:HtmlCacheUpdaterAppendUrls extensions.
Use $mode
to decide whether to gather all related URLs or only those affected by a re-render of the same content. For example, after a direct revision to the content the history page will need to be purged. However when re-rendering after a cascading change from a template, only URLs that render content need purging.
Parameters
$title
: Title of the page being updated$mode
: Anint
representing the mode. It will eitherHtmlCacheUpdater::PURGE_URLS_LINKSUPDATE_ONLY
or 0.&$append
: Append URLs relating to the title
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.