MediaWiki REL1_32
SearchEngine.php
Go to the documentation of this file.
1<?php
29
34abstract class SearchEngine {
35 const DEFAULT_SORT = 'relevance';
36
38 public $prefix = '';
39
41 public $namespaces = [ NS_MAIN ];
42
44 protected $limit = 10;
45
47 protected $offset = 0;
48
50 protected $searchTerms = [];
51
53 protected $showSuggestion = true;
54 private $sort = self::DEFAULT_SORT;
55
57 protected $features = [];
58
60 const COMPLETION_PROFILE_TYPE = 'completionSearchProfile';
61
63 const FT_QUERY_INDEP_PROFILE_TYPE = 'fulltextQueryIndepProfile';
64
66 const CHARS_ALL = 1;
67
69 const CHARS_NO_SYNTAX = 2;
70
81 public function searchText( $term ) {
82 return $this->maybePaginate( function () use ( $term ) {
83 return $this->doSearchText( $term );
84 } );
85 }
86
94 protected function doSearchText( $term ) {
95 return null;
96 }
97
112 public function searchArchiveTitle( $term ) {
113 return $this->doSearchArchiveTitle( $term );
114 }
115
123 protected function doSearchArchiveTitle( $term ) {
124 return Status::newGood( [] );
125 }
126
138 public function searchTitle( $term ) {
139 return $this->maybePaginate( function () use ( $term ) {
140 return $this->doSearchTitle( $term );
141 } );
142 }
143
151 protected function doSearchTitle( $term ) {
152 return null;
153 }
154
163 private function maybePaginate( Closure $fn ) {
164 if ( $this instanceof PaginatingSearchEngine ) {
165 return $fn();
166 }
167 $this->limit++;
168 try {
169 $resultSetOrStatus = $fn();
170 } finally {
171 $this->limit--;
172 }
173
174 $resultSet = null;
175 if ( $resultSetOrStatus instanceof SearchResultSet ) {
176 $resultSet = $resultSetOrStatus;
177 } elseif ( $resultSetOrStatus instanceof Status &&
178 $resultSetOrStatus->getValue() instanceof SearchResultSet
179 ) {
180 $resultSet = $resultSetOrStatus->getValue();
181 }
182 if ( $resultSet ) {
183 $resultSet->shrink( $this->limit );
184 }
185
186 return $resultSetOrStatus;
187 }
188
194 public function supports( $feature ) {
195 switch ( $feature ) {
196 case 'search-update':
197 return true;
198 case 'title-suffix-filter':
199 default:
200 return false;
201 }
202 }
203
210 public function setFeatureData( $feature, $data ) {
211 $this->features[$feature] = $data;
212 }
213
221 public function getFeatureData( $feature ) {
222 if ( isset( $this->features[$feature] ) ) {
223 return $this->features[$feature];
224 }
225 return null;
226 }
227
236 public function normalizeText( $string ) {
237 // Some languages such as Chinese require word segmentation
238 return MediaWikiServices::getInstance()->getContentLanguage()->segmentByWord( $string );
239 }
240
250 public function transformSearchTerm( $term ) {
251 return $term;
252 }
253
259 public function getNearMatcher( Config $config ) {
260 return new SearchNearMatcher( $config,
261 MediaWikiServices::getInstance()->getContentLanguage() );
262 }
263
268 protected static function defaultNearMatcher() {
269 $services = MediaWikiServices::getInstance();
270 $config = $services->getMainConfig();
271 return $services->newSearchEngine()->getNearMatcher( $config );
272 }
273
281 public static function getNearMatch( $searchterm ) {
282 return static::defaultNearMatcher()->getNearMatch( $searchterm );
283 }
284
292 public static function getNearMatchResultSet( $searchterm ) {
293 return static::defaultNearMatcher()->getNearMatchResultSet( $searchterm );
294 }
295
303 public static function legalSearchChars( $type = self::CHARS_ALL ) {
304 return "A-Za-z_'.0-9\\x80-\\xFF\\-";
305 }
306
314 function setLimitOffset( $limit, $offset = 0 ) {
315 $this->limit = intval( $limit );
316 $this->offset = intval( $offset );
317 }
318
326 if ( $namespaces ) {
327 // Filter namespaces to only keep valid ones
328 $validNs = $this->searchableNamespaces();
329 $namespaces = array_filter( $namespaces, function ( $ns ) use( $validNs ) {
330 return $ns < 0 || isset( $validNs[$ns] );
331 } );
332 } else {
333 $namespaces = [];
334 }
335 $this->namespaces = $namespaces;
336 }
337
345 function setShowSuggestion( $showSuggestion ) {
346 $this->showSuggestion = $showSuggestion;
347 }
348
356 public function getValidSorts() {
357 return [ self::DEFAULT_SORT ];
358 }
359
368 public function setSort( $sort ) {
369 if ( !in_array( $sort, $this->getValidSorts() ) ) {
370 throw new InvalidArgumentException( "Invalid sort: $sort. " .
371 "Must be one of: " . implode( ', ', $this->getValidSorts() ) );
372 }
373 $this->sort = $sort;
374 }
375
382 public function getSort() {
383 return $this->sort;
384 }
385
396 return $query;
397 }
398
414 public static function parseNamespacePrefixes(
415 $query,
416 $withAllKeyword = true,
417 $withPrefixSearchExtractNamespaceHook = false
418 ) {
419 $parsed = $query;
420 if ( strpos( $query, ':' ) === false ) { // nothing to do
421 return false;
422 }
423 $extractedNamespace = null;
424
425 $allQuery = false;
426 if ( $withAllKeyword ) {
427 $allkeywords = [];
428
429 $allkeywords[] = wfMessage( 'searchall' )->inContentLanguage()->text() . ":";
430 // force all: so that we have a common syntax for all the wikis
431 if ( !in_array( 'all:', $allkeywords ) ) {
432 $allkeywords[] = 'all:';
433 }
434
435 foreach ( $allkeywords as $kw ) {
436 if ( strncmp( $query, $kw, strlen( $kw ) ) == 0 ) {
437 $extractedNamespace = null;
438 $parsed = substr( $query, strlen( $kw ) );
439 $allQuery = true;
440 break;
441 }
442 }
443 }
444
445 if ( !$allQuery && strpos( $query, ':' ) !== false ) {
446 $prefix = str_replace( ' ', '_', substr( $query, 0, strpos( $query, ':' ) ) );
447 $index = MediaWikiServices::getInstance()->getContentLanguage()->getNsIndex( $prefix );
448 if ( $index !== false ) {
449 $extractedNamespace = [ $index ];
450 $parsed = substr( $query, strlen( $prefix ) + 1 );
451 } elseif ( $withPrefixSearchExtractNamespaceHook ) {
452 $hookNamespaces = [ NS_MAIN ];
453 $hookQuery = $query;
454 Hooks::run( 'PrefixSearchExtractNamespace', [ &$hookNamespaces, &$hookQuery ] );
455 if ( $hookQuery !== $query ) {
456 $parsed = $hookQuery;
457 $extractedNamespace = $hookNamespaces;
458 } else {
459 return false;
460 }
461 } else {
462 return false;
463 }
464 }
465
466 return [ $parsed, $extractedNamespace ];
467 }
468
473 public static function userHighlightPrefs() {
474 $contextlines = 2; // Hardcode this. Old defaults sucked. :)
475 $contextchars = 75; // same as above.... :P
476 return [ $contextlines, $contextchars ];
477 }
478
488 function update( $id, $title, $text ) {
489 // no-op
490 }
491
500 function updateTitle( $id, $title ) {
501 // no-op
502 }
503
512 function delete( $id, $title ) {
513 // no-op
514 }
515
526 public function getTextFromContent( Title $t, Content $c = null ) {
527 return $c ? $c->getTextForSearchIndex() : '';
528 }
529
537 public function textAlreadyUpdatedForIndex() {
538 return false;
539 }
540
547 protected function normalizeNamespaces( $search ) {
548 $queryAndNs = self::parseNamespacePrefixes( $search, false, true );
549 if ( $queryAndNs !== false ) {
550 $this->setNamespaces( $queryAndNs[1] );
551 return $queryAndNs[0];
552 }
553 return $search;
554 }
555
563 protected function completionSearchBackendOverfetch( $search ) {
564 $this->limit++;
565 try {
566 return $this->completionSearchBackend( $search );
567 } finally {
568 $this->limit--;
569 }
570 }
571
579 protected function completionSearchBackend( $search ) {
580 $results = [];
581
582 $search = trim( $search );
583
584 if ( !in_array( NS_SPECIAL, $this->namespaces ) && // We do not run hook on Special: search
585 !Hooks::run( 'PrefixSearchBackend',
586 [ $this->namespaces, $search, $this->limit, &$results, $this->offset ]
587 ) ) {
588 // False means hook worked.
589 // FIXME: Yes, the API is weird. That's why it is going to be deprecated.
590
591 return SearchSuggestionSet::fromStrings( $results );
592 } else {
593 // Hook did not do the job, use default simple search
594 $results = $this->simplePrefixSearch( $search );
595 return SearchSuggestionSet::fromTitles( $results );
596 }
597 }
598
604 public function completionSearch( $search ) {
605 if ( trim( $search ) === '' ) {
606 return SearchSuggestionSet::emptySuggestionSet(); // Return empty result
607 }
608 $search = $this->normalizeNamespaces( $search );
609 $suggestions = $this->completionSearchBackendOverfetch( $search );
610 return $this->processCompletionResults( $search, $suggestions );
611 }
612
618 public function completionSearchWithVariants( $search ) {
619 if ( trim( $search ) === '' ) {
620 return SearchSuggestionSet::emptySuggestionSet(); // Return empty result
621 }
622 $search = $this->normalizeNamespaces( $search );
623
624 $results = $this->completionSearchBackendOverfetch( $search );
625 $fallbackLimit = 1 + $this->limit - $results->getSize();
626 if ( $fallbackLimit > 0 ) {
627 $fallbackSearches = MediaWikiServices::getInstance()->getContentLanguage()->
628 autoConvertToAllVariants( $search );
629 $fallbackSearches = array_diff( array_unique( $fallbackSearches ), [ $search ] );
630
631 foreach ( $fallbackSearches as $fbs ) {
632 $this->setLimitOffset( $fallbackLimit );
633 $fallbackSearchResult = $this->completionSearch( $fbs );
634 $results->appendAll( $fallbackSearchResult );
635 $fallbackLimit -= $fallbackSearchResult->getSize();
636 if ( $fallbackLimit <= 0 ) {
637 break;
638 }
639 }
640 }
641 return $this->processCompletionResults( $search, $results );
642 }
643
649 public function extractTitles( SearchSuggestionSet $completionResults ) {
650 return $completionResults->map( function ( SearchSuggestion $sugg ) {
651 return $sugg->getSuggestedTitle();
652 } );
653 }
654
662 protected function processCompletionResults( $search, SearchSuggestionSet $suggestions ) {
663 // We over-fetched to determine pagination. Shrink back down if we have extra results
664 // and mark if pagination is possible
665 $suggestions->shrink( $this->limit );
666
667 $search = trim( $search );
668 // preload the titles with LinkBatch
669 $lb = new LinkBatch( $suggestions->map( function ( SearchSuggestion $sugg ) {
670 return $sugg->getSuggestedTitle();
671 } ) );
672 $lb->setCaller( __METHOD__ );
673 $lb->execute();
674
675 $diff = $suggestions->filter( function ( SearchSuggestion $sugg ) {
676 return $sugg->getSuggestedTitle()->isKnown();
677 } );
678 if ( $diff > 0 ) {
679 MediaWikiServices::getInstance()->getStatsdDataFactory()
680 ->updateCount( 'search.completion.missing', $diff );
681 }
682
683 $results = $suggestions->map( function ( SearchSuggestion $sugg ) {
684 return $sugg->getSuggestedTitle()->getPrefixedText();
685 } );
686
687 if ( $this->offset === 0 ) {
688 // Rescore results with an exact title match
689 // NOTE: in some cases like cross-namespace redirects
690 // (frequently used as shortcuts e.g. WP:WP on huwiki) some
691 // backends like Cirrus will return no results. We should still
692 // try an exact title match to workaround this limitation
693 $rescorer = new SearchExactMatchRescorer();
694 $rescoredResults = $rescorer->rescore( $search, $this->namespaces, $results, $this->limit );
695 } else {
696 // No need to rescore if offset is not 0
697 // The exact match must have been returned at position 0
698 // if it existed.
699 $rescoredResults = $results;
700 }
701
702 if ( count( $rescoredResults ) > 0 ) {
703 $found = array_search( $rescoredResults[0], $results );
704 if ( $found === false ) {
705 // If the first result is not in the previous array it
706 // means that we found a new exact match
707 $exactMatch = SearchSuggestion::fromTitle( 0, Title::newFromText( $rescoredResults[0] ) );
708 $suggestions->prepend( $exactMatch );
709 $suggestions->shrink( $this->limit );
710 } else {
711 // if the first result is not the same we need to rescore
712 if ( $found > 0 ) {
713 $suggestions->rescore( $found );
714 }
715 }
716 }
717
718 return $suggestions;
719 }
720
726 public function defaultPrefixSearch( $search ) {
727 if ( trim( $search ) === '' ) {
728 return [];
729 }
730
731 $search = $this->normalizeNamespaces( $search );
732 return $this->simplePrefixSearch( $search );
733 }
734
741 protected function simplePrefixSearch( $search ) {
742 // Use default database prefix search
743 $backend = new TitlePrefixSearch;
744 return $backend->defaultSearchBackend( $this->namespaces, $search, $this->limit, $this->offset );
745 }
746
752 public static function searchableNamespaces() {
753 return MediaWikiServices::getInstance()->getSearchEngineConfig()->searchableNamespaces();
754 }
755
763 public static function userNamespaces( $user ) {
764 return MediaWikiServices::getInstance()->getSearchEngineConfig()->userNamespaces( $user );
765 }
766
772 public static function defaultNamespaces() {
773 return MediaWikiServices::getInstance()->getSearchEngineConfig()->defaultNamespaces();
774 }
775
783 public static function namespacesAsText( $namespaces ) {
784 return MediaWikiServices::getInstance()->getSearchEngineConfig()->namespacesAsText( $namespaces );
785 }
786
794 public static function create( $type = null ) {
795 return MediaWikiServices::getInstance()->getSearchEngineFactory()->create( $type );
796 }
797
804 public static function getSearchTypes() {
805 return MediaWikiServices::getInstance()->getSearchEngineConfig()->getSearchTypes();
806 }
807
823 public function getProfiles( $profileType, User $user = null ) {
824 return null;
825 }
826
835 public function makeSearchFieldMapping( $name, $type ) {
836 return new NullIndexField();
837 }
838
844 public function getSearchIndexFields() {
845 $models = ContentHandler::getContentModels();
846 $fields = [];
847 $seenHandlers = new SplObjectStorage();
848 foreach ( $models as $model ) {
849 try {
850 $handler = ContentHandler::getForModelID( $model );
851 }
853 // If we can find no handler, ignore it
854 continue;
855 }
856 // Several models can have the same handler, so avoid processing it repeatedly
857 if ( $seenHandlers->contains( $handler ) ) {
858 // We already did this one
859 continue;
860 }
861 $seenHandlers->attach( $handler );
862 $handlerFields = $handler->getFieldsForSearchIndex( $this );
863 foreach ( $handlerFields as $fieldName => $fieldData ) {
864 if ( empty( $fields[$fieldName] ) ) {
865 $fields[$fieldName] = $fieldData;
866 } else {
867 // TODO: do we allow some clashes with the same type or reject all of them?
868 $mergeDef = $fields[$fieldName]->merge( $fieldData );
869 if ( !$mergeDef ) {
870 throw new InvalidArgumentException( "Duplicate field $fieldName for model $model" );
871 }
872 $fields[$fieldName] = $mergeDef;
873 }
874 }
875 }
876 // Hook to allow extensions to produce search mapping fields
877 Hooks::run( 'SearchIndexFields', [ &$fields, $this ] );
878 return $fields;
879 }
880
886 public function augmentSearchResults( SearchResultSet $resultSet ) {
887 $setAugmentors = [];
888 $rowAugmentors = [];
889 Hooks::run( "SearchResultsAugment", [ &$setAugmentors, &$rowAugmentors ] );
890 if ( !$setAugmentors && !$rowAugmentors ) {
891 // We're done here
892 return;
893 }
894
895 // Convert row augmentors to set augmentor
896 foreach ( $rowAugmentors as $name => $row ) {
897 if ( isset( $setAugmentors[$name] ) ) {
898 throw new InvalidArgumentException( "Both row and set augmentors are defined for $name" );
899 }
900 $setAugmentors[$name] = new PerRowAugmentor( $row );
901 }
902
903 foreach ( $setAugmentors as $name => $augmentor ) {
904 $data = $augmentor->augmentAll( $resultSet );
905 if ( $data ) {
906 $resultSet->setAugmentedData( $name, $data );
907 }
908 }
909 }
910}
911
919 // no-op
920}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
to move a page</td >< td > &*You are moving the page across namespaces
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition LinkBatch.php:34
Exception thrown when an unregistered content model is requested.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Null index field - means search engine does not implement this field.
Perform augmentation of each row and return composite result, indexed by ID.
defaultSearchBackend( $namespaces, $search, $limit, $offset)
Unless overridden by PrefixSearchBackend hook... This is case-sensitive (First character may be autom...
Dummy class to be used when non-supported Database engine is present.
Contain a class for special pages.
completionSearchBackendOverfetch( $search)
Perform an overfetch of completion search results.
static searchableNamespaces()
Make a list of searchable namespaces and their canonical names.
static userNamespaces( $user)
Extract default namespaces to search from the given user's settings, returning a list of index number...
makeSearchFieldMapping( $name, $type)
Create a search field definition.
getNearMatcher(Config $config)
Get service class to finding near matches.
searchTitle( $term)
Perform a title-only search query and return a result set.
supports( $feature)
maybePaginate(Closure $fn)
Performs an overfetch and shrink operation to determine if the next page is available for search engi...
processCompletionResults( $search, SearchSuggestionSet $suggestions)
Process completion search results.
static namespacesAsText( $namespaces)
Get a list of namespace names useful for showing in tooltips and preferences.
getFeatureData( $feature)
Way to retrieve custom data set by setFeatureData or by the engine itself.
update( $id, $title, $text)
Create or update the search index record for the given page.
setNamespaces( $namespaces)
Set which namespaces the search should include.
static parseNamespacePrefixes( $query, $withAllKeyword=true, $withPrefixSearchExtractNamespaceHook=false)
Parse some common prefixes: all (search everything) or namespace names.
augmentSearchResults(SearchResultSet $resultSet)
Augment search results with extra data.
doSearchArchiveTitle( $term)
Perform a title search in the article archive.
array $features
Feature values.
replacePrefixes( $query)
Parse some common prefixes: all (search everything) or namespace names and set the list of namespaces...
static defaultNamespaces()
An array of namespaces indexes to be searched by default.
array string $searchTerms
textAlreadyUpdatedForIndex()
If an implementation of SearchEngine handles all of its own text processing in getTextFromContent() a...
defaultPrefixSearch( $search)
Simple prefix search for subpages.
searchArchiveTitle( $term)
Perform a title search in the article archive.
normalizeText( $string)
When overridden in derived class, performs database-specific conversions on text to be used for searc...
setFeatureData( $feature, $data)
Way to pass custom data for engines.
completionSearchBackend( $search)
Perform a completion search.
getTextFromContent(Title $t, Content $c=null)
Get the raw text for updating the index from a content object Nicer search backends could possibly do...
static create( $type=null)
Load up the appropriate search engine class for the currently active database backend,...
getProfiles( $profileType, User $user=null)
Get a list of supported profiles.
transformSearchTerm( $term)
Transform search term in cases when parts of the query came as different GET params (when supported),...
static getNearMatch( $searchterm)
If an exact title match can be found, or a very slightly close match, return the title.
getSort()
Get the sort direction of the search results.
static defaultNearMatcher()
Get near matcher for default SearchEngine.
getSearchIndexFields()
Get fields for search index.
getValidSorts()
Get the valid sort directions.
static userHighlightPrefs()
Find snippet highlight settings for all users.
updateTitle( $id, $title)
Update a search index record's title only.
completionSearchWithVariants( $search)
Perform a completion search with variants.
doSearchText( $term)
Perform a full text search query and return a result set.
normalizeNamespaces( $search)
Makes search simple string if it was namespaced.
const CHARS_ALL
@const int flag for legalSearchChars: includes all chars allowed in a search query
static getSearchTypes()
Return the search engines we support.
completionSearch( $search)
Perform a completion search.
setLimitOffset( $limit, $offset=0)
Set the maximum number of results to return and how many to skip before returning the first.
const CHARS_NO_SYNTAX
@const int flag for legalSearchChars: includes all chars allowed in a search term
setShowSuggestion( $showSuggestion)
Set whether the searcher should try to build a suggestion.
static getNearMatchResultSet( $searchterm)
Do a near match (see SearchEngine::getNearMatch) and wrap it into a SearchResultSet.
simplePrefixSearch( $search)
Call out to simple search backend.
setSort( $sort)
Set the sort direction of the search results.
const FT_QUERY_INDEP_PROFILE_TYPE
@const string profile type for query independent ranking features
searchText( $term)
Perform a full text search query and return a result set.
extractTitles(SearchSuggestionSet $completionResults)
Extract titles from completion results.
const COMPLETION_PROFILE_TYPE
@const string profile type for completionSearch
static legalSearchChars( $type=self::CHARS_ALL)
Get chars legal for search NOTE: usage as static is deprecated and preserved only as BC measure.
doSearchTitle( $term)
Perform a title-only search query and return a result set.
An utility class to rescore search results by looking for an exact match in the db and add the page f...
Implementation of near match title search.
setAugmentedData( $name, $data)
Sets augmented data for result set.
Search suggestion sets.
filter( $callback)
Filter the suggestions array.
rescore( $key)
Move the suggestion at index $key to the first position.
shrink( $limit)
Remove any extra elements in the suggestions set.
static fromStrings(array $titles, $hasMoreResults=false)
Builds a new set of suggestion based on a string array.
static fromTitles(array $titles, $hasMoreResults=false)
Builds a new set of suggestion based on a title array.
map( $callback)
Call array_map on the suggestions array.
prepend(SearchSuggestion $suggestion)
Add a new suggestion at the top.
Search suggestion.
getSuggestedTitle()
Title object in the case this suggestion is based on a title.
static fromTitle( $score, Title $title)
Create suggestion from Title.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Definition Status.php:40
Performs prefix search, returning Title objects.
Represents a title within MediaWiki.
Definition Title.php:39
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:47
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
const NS_MAIN
Definition Defines.php:64
const NS_SPECIAL
Definition Defines.php:53
namespace and then decline to actually register it & $namespaces
Definition hooks.txt:964
the value to return A Title object or null for latest all implement SearchIndexField must implement ResultSetAugmentor & $rowAugmentors
Definition hooks.txt:2964
For QUnit the mediawiki tests qunit testrunner dependency will be added to any module whereas SearchGetNearMatch runs after $term
Definition hooks.txt:2926
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:994
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array $services
Definition hooks.txt:2335
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:302
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
Definition hooks.txt:933
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:1656
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition hooks.txt:247
returning false will NOT prevent logging $e
Definition hooks.txt:2226
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback function
Definition injection.txt:30
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
Interface for configuration instances.
Definition Config.php:28
Base interface for content objects.
Definition Content.php:34
Marker class for search engines that can handle their own pagination, by reporting in their SearchRes...
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
$sort