Manual:Hooks/ShowSearchHit/ja

From Linux Web Expert

ShowSearchHit
<translate> Available from <tvar name=1><translate> version <tvar (Gerrit change 32040)</tvar></translate>
Customize display of search hit.
<translate> Define function:</translate>
public static function onShowSearchHit( $searchPage, $result, $terms, &$link, 
&$redirect, &$section, &$extract, &$score, &$size, &$date, &$related, &$html ) { ... }
<translate> Attach hook:</translate> <translate> In <tvar name=1>extension.json</tvar>:</translate>
{
	"Hooks": {
		"ShowSearchHit": "MediaWiki\\Extension\\MyExtension\\Hooks::onShowSearchHit"
	}
}
<translate> Called from:</translate> <translate> File(s):</translate> search/searchwidgets/FullSearchResultWidget.php
<translate> Interface:</translate> ShowSearchHitHook.php

<translate> For more information about attaching hooks, see <tvar name=1>Manual:フック </tvar>.</translate>
<translate> For examples of extensions using this hook, see <tvar name=cat>Category:ShowSearchHit extensions/ja</tvar>.</translate>

詳細

  • $searchPage - SpecialSearch インスタンス。
  • $result - 表示する SearchResult
  • $terms - 検索語句、強調表示用
  • &$link - HTML of link to the matching page. 変更される場合があります。
  • &$redirect - リダイレクト情報の HTML。 変更される場合があります。
  • &$section - HTML of matching section. 変更される場合があります。
  • &$extract - HTML of content extract. 変更される場合があります。
  • &$score - スコアの HTML。 変更される場合があります。
  • &$size - ページ サイズの HTML。 変更される場合があります。
  • &$date - HTML of page modification date. 変更される場合があります。
  • &$related - HTML of additional info for the matching page. 変更される場合があります。
  • &$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.