MediaWiki REL1_31
ApiQuerySearch.php
Go to the documentation of this file.
1<?php
29 use SearchApi;
30
33
34 public function __construct( ApiQuery $query, $moduleName ) {
35 parent::__construct( $query, $moduleName, 'sr' );
36 }
37
38 public function execute() {
39 $this->run();
40 }
41
42 public function executeGenerator( $resultPageSet ) {
43 $this->run( $resultPageSet );
44 }
45
50 private function run( $resultPageSet = null ) {
51 global $wgContLang;
53
54 // Extract parameters
55 $query = $params['search'];
56 $what = $params['what'];
57 $interwiki = $params['interwiki'];
58 $searchInfo = array_flip( $params['info'] );
59 $prop = array_flip( $params['prop'] );
60
61 // Create search engine instance and set options
62 $search = $this->buildSearchEngine( $params );
63 $search->setFeatureData( 'rewrite', (bool)$params['enablerewrites'] );
64 $search->setFeatureData( 'interwiki', (bool)$interwiki );
65
66 $query = $search->transformSearchTerm( $query );
67 $query = $search->replacePrefixes( $query );
68
69 // Perform the actual search
70 if ( $what == 'text' ) {
71 $matches = $search->searchText( $query );
72 } elseif ( $what == 'title' ) {
73 $matches = $search->searchTitle( $query );
74 } elseif ( $what == 'nearmatch' ) {
75 // near matches must receive the user input as provided, otherwise
76 // the near matches within namespaces are lost.
77 $matches = $search->getNearMatcher( $this->getConfig() )
78 ->getNearMatchResultSet( $params['search'] );
79 } else {
80 // We default to title searches; this is a terrible legacy
81 // of the way we initially set up the MySQL fulltext-based
82 // search engine with separate title and text fields.
83 // In the future, the default should be for a combined index.
84 $what = 'title';
85 $matches = $search->searchTitle( $query );
86
87 // Not all search engines support a separate title search,
88 // for instance the Lucene-based engine we use on Wikipedia.
89 // In this case, fall back to full-text search (which will
90 // include titles in it!)
91 if ( is_null( $matches ) ) {
92 $what = 'text';
93 $matches = $search->searchText( $query );
94 }
95 }
96
97 if ( $matches instanceof Status ) {
99 $matches = $status->getValue();
100 } else {
101 $status = null;
102 }
103
104 if ( $status ) {
105 if ( $status->isOK() ) {
106 $this->getMain()->getErrorFormatter()->addMessagesFromStatus(
107 $this->getModuleName(),
108 $status
109 );
110 } else {
111 $this->dieStatus( $status );
112 }
113 } elseif ( is_null( $matches ) ) {
114 $this->dieWithError( [ 'apierror-searchdisabled', $what ], "search-{$what}-disabled" );
115 }
116
117 if ( $resultPageSet === null ) {
118 $apiResult = $this->getResult();
119 // Add search meta data to result
120 if ( isset( $searchInfo['totalhits'] ) ) {
121 $totalhits = $matches->getTotalHits();
122 if ( $totalhits !== null ) {
123 $apiResult->addValue( [ 'query', 'searchinfo' ],
124 'totalhits', $totalhits );
125 }
126 }
127 if ( isset( $searchInfo['suggestion'] ) && $matches->hasSuggestion() ) {
128 $apiResult->addValue( [ 'query', 'searchinfo' ],
129 'suggestion', $matches->getSuggestionQuery() );
130 $apiResult->addValue( [ 'query', 'searchinfo' ],
131 'suggestionsnippet', $matches->getSuggestionSnippet() );
132 }
133 if ( isset( $searchInfo['rewrittenquery'] ) && $matches->hasRewrittenQuery() ) {
134 $apiResult->addValue( [ 'query', 'searchinfo' ],
135 'rewrittenquery', $matches->getQueryAfterRewrite() );
136 $apiResult->addValue( [ 'query', 'searchinfo' ],
137 'rewrittenquerysnippet', $matches->getQueryAfterRewriteSnippet() );
138 }
139 }
140
141 // Add the search results to the result
142 $terms = $wgContLang->convertForSearchResult( $matches->termMatches() );
143 $titles = [];
144 $count = 0;
145 $result = $matches->next();
146 $limit = $params['limit'];
147
148 while ( $result ) {
149 if ( ++$count > $limit ) {
150 // We've reached the one extra which shows that there are
151 // additional items to be had. Stop here...
152 $this->setContinueEnumParameter( 'offset', $params['offset'] + $params['limit'] );
153 break;
154 }
155
156 // Silently skip broken and missing titles
157 if ( $result->isBrokenTitle() || $result->isMissingRevision() ) {
158 $result = $matches->next();
159 continue;
160 }
161
162 if ( $resultPageSet === null ) {
163 $vals = $this->getSearchResultData( $result, $prop, $terms );
164 if ( $vals ) {
165 // Add item to results and see whether it fits
166 $fit = $apiResult->addValue( [ 'query', $this->getModuleName() ], null, $vals );
167 if ( !$fit ) {
168 $this->setContinueEnumParameter( 'offset', $params['offset'] + $count - 1 );
169 break;
170 }
171 }
172 } else {
173 $titles[] = $result->getTitle();
174 }
175
176 $result = $matches->next();
177 }
178
179 // Here we assume interwiki results do not count with
180 // regular search results. We may want to reconsider this
181 // if we ever return a lot of interwiki results or want pagination
182 // for them.
183 // Interwiki results inside main result set
184 $canAddInterwiki = (bool)$params['enablerewrites'] && ( $resultPageSet === null );
185 if ( $canAddInterwiki ) {
186 $this->addInterwikiResults( $matches, $apiResult, $prop, $terms, 'additional',
187 SearchResultSet::INLINE_RESULTS );
188 }
189
190 // Interwiki results outside main result set
191 if ( $interwiki && $resultPageSet === null ) {
192 $this->addInterwikiResults( $matches, $apiResult, $prop, $terms, 'interwiki',
193 SearchResultSet::SECONDARY_RESULTS );
194 }
195
196 if ( $resultPageSet === null ) {
197 $apiResult->addIndexedTagName( [
198 'query', $this->getModuleName()
199 ], 'p' );
200 } else {
201 $resultPageSet->setRedirectMergePolicy( function ( $current, $new ) {
202 if ( !isset( $current['index'] ) || $new['index'] < $current['index'] ) {
203 $current['index'] = $new['index'];
204 }
205 return $current;
206 } );
207 $resultPageSet->populateFromTitles( $titles );
208 $offset = $params['offset'] + 1;
209 foreach ( $titles as $index => $title ) {
210 $resultPageSet->setGeneratorData( $title, [ 'index' => $index + $offset ] );
211 }
212 }
213 }
214
222 private function getSearchResultData( SearchResult $result, $prop, $terms ) {
223 // Silently skip broken and missing titles
224 if ( $result->isBrokenTitle() || $result->isMissingRevision() ) {
225 return null;
226 }
227
228 $vals = [];
229
230 $title = $result->getTitle();
231 ApiQueryBase::addTitleInfo( $vals, $title );
232 $vals['pageid'] = $title->getArticleID();
233
234 if ( isset( $prop['size'] ) ) {
235 $vals['size'] = $result->getByteSize();
236 }
237 if ( isset( $prop['wordcount'] ) ) {
238 $vals['wordcount'] = $result->getWordCount();
239 }
240 if ( isset( $prop['snippet'] ) ) {
241 $vals['snippet'] = $result->getTextSnippet( $terms );
242 }
243 if ( isset( $prop['timestamp'] ) ) {
244 $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $result->getTimestamp() );
245 }
246 if ( isset( $prop['titlesnippet'] ) ) {
247 $vals['titlesnippet'] = $result->getTitleSnippet();
248 }
249 if ( isset( $prop['categorysnippet'] ) ) {
250 $vals['categorysnippet'] = $result->getCategorySnippet();
251 }
252 if ( !is_null( $result->getRedirectTitle() ) ) {
253 if ( isset( $prop['redirecttitle'] ) ) {
254 $vals['redirecttitle'] = $result->getRedirectTitle()->getPrefixedText();
255 }
256 if ( isset( $prop['redirectsnippet'] ) ) {
257 $vals['redirectsnippet'] = $result->getRedirectSnippet();
258 }
259 }
260 if ( !is_null( $result->getSectionTitle() ) ) {
261 if ( isset( $prop['sectiontitle'] ) ) {
262 $vals['sectiontitle'] = $result->getSectionTitle()->getFragment();
263 }
264 if ( isset( $prop['sectionsnippet'] ) ) {
265 $vals['sectionsnippet'] = $result->getSectionSnippet();
266 }
267 }
268 if ( isset( $prop['isfilematch'] ) ) {
269 $vals['isfilematch'] = $result->isFileMatch();
270 }
271
272 if ( isset( $prop['extensiondata'] ) ) {
273 $extra = $result->getExtensionData();
274 // Add augmented data to the result. The data would be organized as a map:
275 // augmentorName => data
276 if ( $extra ) {
277 $vals['extensiondata'] = ApiResult::addMetadataToResultVars( $extra );
278 }
279 }
280
281 return $vals;
282 }
283
294 private function addInterwikiResults(
295 SearchResultSet $matches, ApiResult $apiResult, $prop,
296 $terms, $section, $type
297 ) {
298 $totalhits = null;
299 if ( $matches->hasInterwikiResults( $type ) ) {
300 foreach ( $matches->getInterwikiResults( $type ) as $interwikiMatches ) {
301 // Include number of results if requested
302 $totalhits += $interwikiMatches->getTotalHits();
303
304 $result = $interwikiMatches->next();
305 while ( $result ) {
306 $title = $result->getTitle();
307 $vals = $this->getSearchResultData( $result, $prop, $terms );
308
309 $vals['namespace'] = $result->getInterwikiNamespaceText();
310 $vals['title'] = $title->getText();
311 $vals['url'] = $title->getFullURL();
312
313 // Add item to results and see whether it fits
314 $fit = $apiResult->addValue( [
315 'query',
316 $section . $this->getModuleName(),
317 $result->getInterwikiPrefix()
318 ], null, $vals );
319
320 if ( !$fit ) {
321 // We hit the limit. We can't really provide any meaningful
322 // pagination info so just bail out
323 break;
324 }
325
326 $result = $interwikiMatches->next();
327 }
328 }
329 if ( $totalhits !== null ) {
330 $apiResult->addValue( [ 'query', $section . 'searchinfo' ], 'totalhits', $totalhits );
331 $apiResult->addIndexedTagName( [
332 'query', $section . $this->getModuleName()
333 ], 'p' );
334 }
335 }
336 return $totalhits;
337 }
338
339 public function getCacheMode( $params ) {
340 return 'public';
341 }
342
343 public function getAllowedParams() {
344 if ( $this->allowedParams !== null ) {
346 }
347
348 $this->allowedParams = $this->buildCommonApiParams() + [
349 'what' => [
351 'title',
352 'text',
353 'nearmatch',
354 ]
355 ],
356 'info' => [
357 ApiBase::PARAM_DFLT => 'totalhits|suggestion|rewrittenquery',
359 'totalhits',
360 'suggestion',
361 'rewrittenquery',
362 ],
364 ],
365 'prop' => [
366 ApiBase::PARAM_DFLT => 'size|wordcount|timestamp|snippet',
368 'size',
369 'wordcount',
370 'timestamp',
371 'snippet',
372 'titlesnippet',
373 'redirecttitle',
374 'redirectsnippet',
375 'sectiontitle',
376 'sectionsnippet',
377 'isfilematch',
378 'categorysnippet',
379 'score', // deprecated
380 'hasrelated', // deprecated
381 'extensiondata',
382 ],
386 'score' => true,
387 'hasrelated' => true
388 ],
389 ],
390 'interwiki' => false,
391 'enablerewrites' => false,
392 ];
393
395 }
396
397 public function getSearchProfileParams() {
398 return [
399 'qiprofile' => [
400 'profile-type' => SearchEngine::FT_QUERY_INDEP_PROFILE_TYPE,
401 'help-message' => 'apihelp-query+search-param-qiprofile',
402 ],
403 ];
404 }
405
406 protected function getExamplesMessages() {
407 return [
408 'action=query&list=search&srsearch=meaning'
409 => 'apihelp-query+search-example-simple',
410 'action=query&list=search&srwhat=text&srsearch=meaning'
411 => 'apihelp-query+search-example-text',
412 'action=query&generator=search&gsrsearch=meaning&prop=info'
413 => 'apihelp-query+search-example-generator',
414 ];
415 }
416
417 public function getHelpUrls() {
418 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Search';
419 }
420}
and give any other recipients of the Program a copy of this License along with the Program You may charge a fee for the physical act of transferring a and you may at your option offer warranty protection in exchange for a fee You may modify your copy or copies of the Program or any portion of thus forming a work based on the and copy and distribute such modifications or work under the terms of Section provided that you also meet all of these that in whole or in part contains or is derived from the Program or any part to be licensed as a whole at no charge to all third parties under the terms of this License c If the modified program normally reads commands interactively when run
Definition COPYING.txt:104
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
buildSearchEngine(array $params=null)
Build the search engine to use.
buildCommonApiParams( $isScrollable=true)
The set of api parameters that are shared between api calls that call the SearchEngine.
Definition SearchApi.php:46
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
Definition ApiBase.php:1895
const PARAM_DEPRECATED_VALUES
(array) When PARAM_TYPE is an array, this indicates which of the values are deprecated.
Definition ApiBase.php:202
getMain()
Get the main module.
Definition ApiBase.php:537
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition ApiBase.php:87
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition ApiBase.php:48
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:749
const PARAM_HELP_MSG_PER_VALUE
((string|array|Message)[]) When PARAM_TYPE is an array, this is an array mapping those values to $msg...
Definition ApiBase.php:157
getResult()
Get the result object.
Definition ApiBase.php:641
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:521
dieStatus(StatusValue $status)
Throw an ApiUsageException based on the Status object.
Definition ApiBase.php:1960
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition ApiBase.php:51
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
Query module to perform full text search within wiki titles and content.
run( $resultPageSet=null)
getSearchResultData(SearchResult $result, $prop, $terms)
Assemble search result data.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
getHelpUrls()
Return links to more detailed help pages about the module.
getExamplesMessages()
Returns usage examples for this module.
__construct(ApiQuery $query, $moduleName)
addInterwikiResults(SearchResultSet $matches, ApiResult $apiResult, $prop, $terms, $section, $type)
Add interwiki results as a section in query results.
getCacheMode( $params)
Get the cache mode for the data generated by this module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
executeGenerator( $resultPageSet)
Execute this module as a generator.
array $allowedParams
list of api allowed params
This is the main query class.
Definition ApiQuery.php:36
This class represents the result of the API operations.
Definition ApiResult.php:33
static addMetadataToResultVars( $vars, $forceHash=true)
Add the correct metadata to an array of vars we want to export through the API.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Definition Status.php:40
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition design.txt:57
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action or null $user:User who performed the tagging when the tagging is subsequent to the action or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy: boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition hooks.txt:1051
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition hooks.txt:2006
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition hooks.txt:1620
usually copyright or history_copyright This message must be in HTML not wikitext if the section is included from a template $section
Definition hooks.txt:3022
trait SearchApi
Traits for API components that use a SearchEngine.
Definition SearchApi.php:28
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
Definition linkcache.txt:17
$params