Manual:Kancalar/ShowSearchHit
Appearance
ShowSearchHit | |
---|---|
sürüm 1.21.0 (Gerrit change 32040) sürümünden mevcuttur Customize display of search hit. | |
İşlevi tanımlayın: | public static function onShowSearchHit( $searchPage, $result, $terms, &$link,
&$redirect, &$section, &$extract, &$score, &$size, &$date, &$related, &$html ) { ... }
|
Ek kancası | extension.json sürümünde:
{
"Hooks": {
"ShowSearchHit": "MediaWiki\\Extension\\MyExtension\\Hooks::onShowSearchHit"
}
}
|
Çağrıdan: | Dosya(lar): search/searchwidgets/FullSearchResultWidget.php |
Arayüz: | ShowSearchHitHook.php |
Kancaların takılmasıyla ilgili daha fazla bilgi için Manual:Hooks sayfasına bakın.
Bu kancayı kullanan uzantı örnekleri için Category:ShowSearchHit extensions/tr sayfasına bakın.
Ayrıntılar
- $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.