MediaWiki
1.34.0
|
Highlight bits of wikitext. More...
Public Member Functions | |
__construct ( $cleanupWikitext=true) | |
caseCallback ( $matches) | |
Do manual case conversion for non-ascii chars. More... | |
extract ( $text, $start, $end, &$posStart=null, &$posEnd=null) | |
Extract part of the text from start to end, but by not chopping up words. More... | |
highlightNone ( $text, $contextlines=self::DEFAULT_CONTEXT_LINES, $contextchars=self::DEFAULT_CONTEXT_CHARS) | |
Returns the first few lines of the text. More... | |
highlightSimple ( $text, $terms, $contextlines=self::DEFAULT_CONTEXT_LINES, $contextchars=self::DEFAULT_CONTEXT_CHARS) | |
Simple & fast snippet extraction, but gives completely unrelevant snippets. More... | |
highlightText ( $text, $terms, $contextlines=self::DEFAULT_CONTEXT_LINES, $contextchars=self::DEFAULT_CONTEXT_CHARS) | |
Wikitext highlighting when $wgAdvancedSearchHighlighting = true. More... | |
linkReplace ( $matches) | |
callback to replace [[target|caption]] kind of links, if the target is category or image, leave it More... | |
position ( $text, $point, $offset=0) | |
Find a nonletter near a point (index) in the text. More... | |
process ( $pattern, $extracts, &$linesleft, &$contextchars, &$out, &$offsets) | |
Search extracts for a pattern, and return snippets. More... | |
removeWiki ( $text) | |
Basic wikitext removal. More... | |
splitAndAdd (&$extracts, &$count, $text) | |
Split text into lines and add it to extracts array. More... | |
Public Attributes | |
const | DEFAULT_CONTEXT_CHARS = 75 |
const | DEFAULT_CONTEXT_LINES = 2 |
Protected Attributes | |
$mCleanWikitext = true | |
Highlight bits of wikitext.
Definition at line 31 of file SearchHighlighter.php.
SearchHighlighter::__construct | ( | $cleanupWikitext = true | ) |
bool | $cleanupWikitext |
Definition at line 42 of file SearchHighlighter.php.
SearchHighlighter::caseCallback | ( | $matches | ) |
Do manual case conversion for non-ascii chars.
array | $matches |
Definition at line 328 of file SearchHighlighter.php.
References $matches.
SearchHighlighter::extract | ( | $text, | |
$start, | |||
$end, | |||
& | $posStart = null , |
||
& | $posEnd = null |
||
) |
Extract part of the text from start to end, but by not chopping up words.
string | $text | |
int | $start | |
int | $end | |
int | null | &$posStart | (out) actual start position |
int | null | &$posEnd | (out) actual end position |
Definition at line 348 of file SearchHighlighter.php.
References position().
Referenced by highlightText(), and process().
SearchHighlighter::highlightNone | ( | $text, | |
$contextlines = self::DEFAULT_CONTEXT_LINES , |
|||
$contextchars = self::DEFAULT_CONTEXT_CHARS |
|||
) |
Returns the first few lines of the text.
string | $text | |
int | $contextlines | Max number of returned lines |
int | $contextchars | Average number of characters per line |
Definition at line 573 of file SearchHighlighter.php.
SearchHighlighter::highlightSimple | ( | $text, | |
$terms, | |||
$contextlines = self::DEFAULT_CONTEXT_LINES , |
|||
$contextchars = self::DEFAULT_CONTEXT_CHARS |
|||
) |
Simple & fast snippet extraction, but gives completely unrelevant snippets.
Used when $wgAdvancedSearchHighlighting is false.
string | $text | |
string[] | $terms | Escaped for regex by SearchDatabase::regexTerm() |
int | $contextlines | |
int | $contextchars |
Definition at line 518 of file SearchHighlighter.php.
SearchHighlighter::highlightText | ( | $text, | |
$terms, | |||
$contextlines = self::DEFAULT_CONTEXT_LINES , |
|||
$contextchars = self::DEFAULT_CONTEXT_CHARS |
|||
) |
Wikitext highlighting when $wgAdvancedSearchHighlighting = true.
string | $text | |
string[] | $terms | Terms to highlight (not html escaped but regex escaped via SearchDatabase::regexTerm()) |
int | $contextlines | |
int | $contextchars |
Definition at line 56 of file SearchHighlighter.php.
References $last, $line, $matches, $wgSearchHighlightBoundaries, extract(), ExtensionRegistry\getInstance(), NS_FILE, process(), and splitAndAdd().
SearchHighlighter::linkReplace | ( | $matches | ) |
callback to replace [[target|caption]] kind of links, if the target is category or image, leave it
array | $matches |
Definition at line 492 of file SearchHighlighter.php.
References $matches, NS_CATEGORY, and NS_FILE.
SearchHighlighter::position | ( | $text, | |
$point, | |||
$offset = 0 |
|||
) |
Find a nonletter near a point (index) in the text.
string | $text | |
int | $point | |
int | $offset | Offset to found index |
Definition at line 380 of file SearchHighlighter.php.
References $s.
Referenced by extract().
SearchHighlighter::process | ( | $pattern, | |
$extracts, | |||
& | $linesleft, | ||
& | $contextchars, | ||
& | $out, | ||
& | $offsets | ||
) |
Search extracts for a pattern, and return snippets.
string | $pattern | Regexp for matching lines |
array | $extracts | Extracts to search |
int | &$linesleft | Number of extracts to make |
int | &$contextchars | Length of snippet |
array | &$out | Map for highlighted snippets |
array | &$offsets | Map of starting points of snippets |
Definition at line 421 of file SearchHighlighter.php.
References $line, and extract().
Referenced by highlightText().
SearchHighlighter::removeWiki | ( | $text | ) |
Basic wikitext removal.
string | $text |
Definition at line 464 of file SearchHighlighter.php.
Referenced by splitAndAdd().
SearchHighlighter::splitAndAdd | ( | & | $extracts, |
& | $count, | ||
$text | |||
) |
Split text into lines and add it to extracts array.
array | &$extracts | Index -> $line |
int | &$count | |
string | $text |
Definition at line 312 of file SearchHighlighter.php.
References $line, and removeWiki().
Referenced by highlightText().
|
protected |
Definition at line 35 of file SearchHighlighter.php.
const SearchHighlighter::DEFAULT_CONTEXT_CHARS = 75 |
Definition at line 33 of file SearchHighlighter.php.
Referenced by SearchEngine\userHighlightPrefs().
const SearchHighlighter::DEFAULT_CONTEXT_LINES = 2 |
Definition at line 32 of file SearchHighlighter.php.
Referenced by SearchEngine\userHighlightPrefs().