Manual:Hooks/ShowSearchHit/pl
ShowSearchHit | |
---|---|
Dostępne od wersji version 1.21.0 (Gerrit change 32040) Customize display of search hit. | |
Zdefiniuj funkcję: | public static function onShowSearchHit( $searchPage, $result, $terms, &$link,
&$redirect, &$section, &$extract, &$score, &$size, &$date, &$related, &$html ) { ... }
|
Dołącz hak: | W extension.json:
{
"Hooks": {
"ShowSearchHit": "MediaWiki\\Extension\\MyExtension\\Hooks::onShowSearchHit"
}
}
|
Called from: | Plik(i): search/searchwidgets/FullSearchResultWidget.php |
Interface: | ShowSearchHitHook.php |
For more information about attaching hooks, see Podręcznik:Haki .
For examples of extensions using this hook, see Category:ShowSearchHit extensions/pl.
Szczegóły
- $searchPage - The SpecialSearch instance.
- $result - The SearchResult to show
- $terms - Search terms, for highlighting
- &$link - HTML of link to the matching page. May be modified.
- &$redirect - HTML of redirect info. May be modified.
- &$section - HTML of matching section. May be modified.
- &$extract - HTML of content extract. May be modified.
- &$score - HTML of score. May be modified.
- &$size - HTML of page size. May be modified.
- &$date - HTML of page modification date. May be modified.
- &$related - HTML of additional info for the matching page. May be modified.
- &$html - May be set to the full HTML that should be used to represent the search hit. Must include the
<li>...</li>
tags. Will only be used if the hook function returned false.