Extension:CirrusSearch/Hooks/CirrusSearchBuildDocumentLinks

From Linux Web Expert

The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
CirrusSearchBuildDocumentLinks
Available from version 1.23.0
Allows extensions to process incoming and outgoing links for the document
Define function:
public static function onCirrusSearchBuildDocumentLinks( \Elastica\Document $doc, Title $title, \CirrusSearch\Connection ) { ... }
Attach hook:
$wgHooks['CirrusSearchBuildDocumentLinks'][] = 'MyExtensionHooks::onCirrusSearchBuildDocumentLinks';
Called from:File(s): CirrusSearch / Updater.php

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

Details

  • $doc - \Elastica\Document object representing the page. Extensions can add links to it.
  • $title - Title object for the page being parsed.
  • $connection - \CirrusSearch\Connection object representing connection to ElasticSearch server.