terms = $terms; } /** * return string[] */ public function getTermMatches(): array { return $this->terms; } /** * @param array $terms Terms to highlight (this parameter is deprecated) * @return string Highlighted text snippet, null (and not '') if not supported */ function getTextSnippet( $terms = [] ) { global $wgAdvancedSearchHighlighting; $this->initText(); $h = new SearchHighlighter(); if ( count( $this->terms ) > 0 ) { if ( $wgAdvancedSearchHighlighting ) { return $h->highlightText( $this->mText, $this->terms ); } else { return $h->highlightSimple( $this->mText, $this->terms ); } } else { return $h->highlightNone( $this->mText ); } } }