MediaWiki REL1_27
ContribsPager.php
Go to the documentation of this file.
1<?php
27
29 public $messages;
30 public $target;
31 public $namespace = '';
32 public $mDb;
33 public $preventClickjacking = false;
34
37
41 protected $mParentLens;
42
44 parent::__construct( $context );
45
46 $msgs = [
47 'diff',
48 'hist',
49 'pipe-separator',
50 'uctop'
51 ];
52
53 foreach ( $msgs as $msg ) {
54 $this->messages[$msg] = $this->msg( $msg )->escaped();
55 }
56
57 $this->target = isset( $options['target'] ) ? $options['target'] : '';
58 $this->contribs = isset( $options['contribs'] ) ? $options['contribs'] : 'users';
59 $this->namespace = isset( $options['namespace'] ) ? $options['namespace'] : '';
60 $this->tagFilter = isset( $options['tagfilter'] ) ? $options['tagfilter'] : false;
61 $this->nsInvert = isset( $options['nsInvert'] ) ? $options['nsInvert'] : false;
62 $this->associated = isset( $options['associated'] ) ? $options['associated'] : false;
63
64 $this->deletedOnly = !empty( $options['deletedOnly'] );
65 $this->topOnly = !empty( $options['topOnly'] );
66 $this->newOnly = !empty( $options['newOnly'] );
67
68 $year = isset( $options['year'] ) ? $options['year'] : false;
69 $month = isset( $options['month'] ) ? $options['month'] : false;
70 $this->getDateCond( $year, $month );
71
72 // Most of this code will use the 'contributions' group DB, which can map to slaves
73 // with extra user based indexes or partioning by user. The additional metadata
74 // queries should use a regular slave since the lookup pattern is not all by user.
75 $this->mDbSecondary = wfGetDB( DB_SLAVE ); // any random slave
76 $this->mDb = wfGetDB( DB_SLAVE, 'contributions' );
77 }
78
80 $query = parent::getDefaultQuery();
81 $query['target'] = $this->target;
82
83 return $query;
84 }
85
95 function reallyDoQuery( $offset, $limit, $descending ) {
96 list( $tables, $fields, $conds, $fname, $options, $join_conds ) = $this->buildQueryInfo(
97 $offset,
98 $limit,
99 $descending
100 );
101
102 /*
103 * This hook will allow extensions to add in additional queries, so they can get their data
104 * in My Contributions as well. Extensions should append their results to the $data array.
105 *
106 * Extension queries have to implement the navbar requirement as well. They should
107 * - have a column aliased as $pager->getIndexField()
108 * - have LIMIT set
109 * - have a WHERE-clause that compares the $pager->getIndexField()-equivalent column to the offset
110 * - have the ORDER BY specified based upon the details provided by the navbar
111 *
112 * See includes/Pager.php buildQueryInfo() method on how to build LIMIT, WHERE & ORDER BY
113 *
114 * &$data: an array of results of all contribs queries
115 * $pager: the ContribsPager object hooked into
116 * $offset: see phpdoc above
117 * $limit: see phpdoc above
118 * $descending: see phpdoc above
119 */
120 $data = [ $this->mDb->select(
121 $tables, $fields, $conds, $fname, $options, $join_conds
122 ) ];
123 Hooks::run(
124 'ContribsPager::reallyDoQuery',
125 [ &$data, $this, $offset, $limit, $descending ]
126 );
127
128 $result = [];
129
130 // loop all results and collect them in an array
131 foreach ( $data as $query ) {
132 foreach ( $query as $i => $row ) {
133 // use index column as key, allowing us to easily sort in PHP
134 $result[$row->{$this->getIndexField()} . "-$i"] = $row;
135 }
136 }
137
138 // sort results
139 if ( $descending ) {
140 ksort( $result );
141 } else {
142 krsort( $result );
143 }
144
145 // enforce limit
146 $result = array_slice( $result, 0, $limit );
147
148 // get rid of array keys
149 $result = array_values( $result );
150
151 return new FakeResultWrapper( $result );
152 }
153
154 function getQueryInfo() {
155 list( $tables, $index, $userCond, $join_cond ) = $this->getUserCond();
156
157 $user = $this->getUser();
158 $conds = array_merge( $userCond, $this->getNamespaceCond() );
159
160 // Paranoia: avoid brute force searches (bug 17342)
161 if ( !$user->isAllowed( 'deletedhistory' ) ) {
162 $conds[] = $this->mDb->bitAnd( 'rev_deleted', Revision::DELETED_USER ) . ' = 0';
163 } elseif ( !$user->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
164 $conds[] = $this->mDb->bitAnd( 'rev_deleted', Revision::SUPPRESSED_USER ) .
166 }
167
168 # Don't include orphaned revisions
169 $join_cond['page'] = Revision::pageJoinCond();
170 # Get the current user name for accounts
171 $join_cond['user'] = Revision::userJoinCond();
172
173 $options = [];
174 if ( $index ) {
175 $options['USE INDEX'] = [ 'revision' => $index ];
176 }
177
178 $queryInfo = [
179 'tables' => $tables,
180 'fields' => array_merge(
183 [ 'page_namespace', 'page_title', 'page_is_new',
184 'page_latest', 'page_is_redirect', 'page_len' ]
185 ),
186 'conds' => $conds,
187 'options' => $options,
188 'join_conds' => $join_cond
189 ];
190
192 $queryInfo['tables'],
193 $queryInfo['fields'],
194 $queryInfo['conds'],
195 $queryInfo['join_conds'],
196 $queryInfo['options'],
197 $this->tagFilter
198 );
199
200 // Avoid PHP 7.1 warning from passing $this by reference
201 $pager = $this;
202 Hooks::run( 'ContribsPager::getQueryInfo', [ &$pager, &$queryInfo ] );
203
204 return $queryInfo;
205 }
206
207 function getUserCond() {
208 $condition = [];
209 $join_conds = [];
210 $tables = [ 'revision', 'page', 'user' ];
211 $index = false;
212 if ( $this->contribs == 'newbie' ) {
213 $max = $this->mDb->selectField( 'user', 'max(user_id)', false, __METHOD__ );
214 $condition[] = 'rev_user >' . (int)( $max - $max / 100 );
215 # ignore local groups with the bot right
216 # @todo FIXME: Global groups may have 'bot' rights
217 $groupsWithBotPermission = User::getGroupsWithPermission( 'bot' );
218 if ( count( $groupsWithBotPermission ) ) {
219 $tables[] = 'user_groups';
220 $condition[] = 'ug_group IS NULL';
221 $join_conds['user_groups'] = [
222 'LEFT JOIN', [
223 'ug_user = rev_user',
224 'ug_group' => $groupsWithBotPermission
225 ]
226 ];
227 }
228 } else {
229 $uid = User::idFromName( $this->target );
230 if ( $uid ) {
231 $condition['rev_user'] = $uid;
232 $index = 'user_timestamp';
233 } else {
234 $condition['rev_user_text'] = $this->target;
235 $index = 'usertext_timestamp';
236 }
237 }
238
239 if ( $this->deletedOnly ) {
240 $condition[] = 'rev_deleted != 0';
241 }
242
243 if ( $this->topOnly ) {
244 $condition[] = 'rev_id = page_latest';
245 }
246
247 if ( $this->newOnly ) {
248 $condition[] = 'rev_parent_id = 0';
249 }
250
251 return [ $tables, $index, $condition, $join_conds ];
252 }
253
254 function getNamespaceCond() {
255 if ( $this->namespace !== '' ) {
256 $selectedNS = $this->mDb->addQuotes( $this->namespace );
257 $eq_op = $this->nsInvert ? '!=' : '=';
258 $bool_op = $this->nsInvert ? 'AND' : 'OR';
259
260 if ( !$this->associated ) {
261 return [ "page_namespace $eq_op $selectedNS" ];
262 }
263
264 $associatedNS = $this->mDb->addQuotes(
265 MWNamespace::getAssociated( $this->namespace )
266 );
267
268 return [
269 "page_namespace $eq_op $selectedNS " .
270 $bool_op .
271 " page_namespace $eq_op $associatedNS"
272 ];
273 }
274
275 return [];
276 }
277
278 function getIndexField() {
279 return 'rev_timestamp';
280 }
281
282 function doBatchLookups() {
283 # Do a link batch query
284 $this->mResult->seek( 0 );
285 $parentRevIds = [];
286 $this->mParentLens = [];
287 $batch = new LinkBatch();
288 # Give some pointers to make (last) links
289 foreach ( $this->mResult as $row ) {
290 if ( isset( $row->rev_parent_id ) && $row->rev_parent_id ) {
291 $parentRevIds[] = $row->rev_parent_id;
292 }
293 if ( isset( $row->rev_id ) ) {
294 $this->mParentLens[$row->rev_id] = $row->rev_len;
295 if ( $this->contribs === 'newbie' ) { // multiple users
296 $batch->add( NS_USER, $row->user_name );
297 $batch->add( NS_USER_TALK, $row->user_name );
298 }
299 $batch->add( $row->page_namespace, $row->page_title );
300 }
301 }
302 # Fetch rev_len for revisions not already scanned above
303 $this->mParentLens += Revision::getParentLengths(
304 $this->mDbSecondary,
305 array_diff( $parentRevIds, array_keys( $this->mParentLens ) )
306 );
307 $batch->execute();
308 $this->mResult->seek( 0 );
309 }
310
314 function getStartBody() {
315 return "<ul class=\"mw-contributions-list\">\n";
316 }
317
321 function getEndBody() {
322 return "</ul>\n";
323 }
324
337 function formatRow( $row ) {
338
339 $ret = '';
340 $classes = [];
341
342 /*
343 * There may be more than just revision rows. To make sure that we'll only be processing
344 * revisions here, let's _try_ to build a revision out of our row (without displaying
345 * notices though) and then trying to grab data from the built object. If we succeed,
346 * we're definitely dealing with revision data and we may proceed, if not, we'll leave it
347 * to extensions to subscribe to the hook to parse the row.
348 */
349 MediaWiki\suppressWarnings();
350 try {
351 $rev = new Revision( $row );
352 $validRevision = (bool)$rev->getId();
353 } catch ( Exception $e ) {
354 $validRevision = false;
355 }
356 MediaWiki\restoreWarnings();
357
358 if ( $validRevision ) {
359 $classes = [];
360
361 $page = Title::newFromRow( $row );
363 $page,
364 htmlspecialchars( $page->getPrefixedText() ),
365 [ 'class' => 'mw-contributions-title' ],
366 $page->isRedirect() ? [ 'redirect' => 'no' ] : []
367 );
368 # Mark current revisions
369 $topmarktext = '';
370 $user = $this->getUser();
371 if ( $row->rev_id == $row->page_latest ) {
372 $topmarktext .= '<span class="mw-uctop">' . $this->messages['uctop'] . '</span>';
373 # Add rollback link
374 if ( !$row->page_is_new && $page->quickUserCan( 'rollback', $user )
375 && $page->quickUserCan( 'edit', $user )
376 ) {
377 $this->preventClickjacking();
378 $topmarktext .= ' ' . Linker::generateRollback( $rev, $this->getContext() );
379 }
380 }
381 # Is there a visible previous revision?
382 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) && $rev->getParentId() !== 0 ) {
383 $difftext = Linker::linkKnown(
384 $page,
385 $this->messages['diff'],
386 [],
387 [
388 'diff' => 'prev',
389 'oldid' => $row->rev_id
390 ]
391 );
392 } else {
393 $difftext = $this->messages['diff'];
394 }
395 $histlink = Linker::linkKnown(
396 $page,
397 $this->messages['hist'],
398 [],
399 [ 'action' => 'history' ]
400 );
401
402 if ( $row->rev_parent_id === null ) {
403 // For some reason rev_parent_id isn't populated for this row.
404 // Its rumoured this is true on wikipedia for some revisions (bug 34922).
405 // Next best thing is to have the total number of bytes.
406 $chardiff = ' <span class="mw-changeslist-separator">. .</span> ';
407 $chardiff .= Linker::formatRevisionSize( $row->rev_len );
408 $chardiff .= ' <span class="mw-changeslist-separator">. .</span> ';
409 } else {
410 $parentLen = 0;
411 if ( isset( $this->mParentLens[$row->rev_parent_id] ) ) {
412 $parentLen = $this->mParentLens[$row->rev_parent_id];
413 }
414
415 $chardiff = ' <span class="mw-changeslist-separator">. .</span> ';
417 $parentLen,
418 $row->rev_len,
419 $this->getContext()
420 );
421 $chardiff .= ' <span class="mw-changeslist-separator">. .</span> ';
422 }
423
424 $lang = $this->getLanguage();
425 $comment = $lang->getDirMark() . Linker::revComment( $rev, false, true );
426 $date = $lang->userTimeAndDate( $row->rev_timestamp, $user );
427 if ( $rev->userCan( Revision::DELETED_TEXT, $user ) ) {
429 $page,
430 htmlspecialchars( $date ),
431 [ 'class' => 'mw-changeslist-date' ],
432 [ 'oldid' => intval( $row->rev_id ) ]
433 );
434 } else {
435 $d = htmlspecialchars( $date );
436 }
437 if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
438 $d = '<span class="history-deleted">' . $d . '</span>';
439 }
440
441 # Show user names for /newbies as there may be different users.
442 # Note that we already excluded rows with hidden user names.
443 if ( $this->contribs == 'newbie' ) {
444 $userlink = ' . . ' . $lang->getDirMark()
445 . Linker::userLink( $rev->getUser(), $rev->getUserText() );
446 $userlink .= ' ' . $this->msg( 'parentheses' )->rawParams(
447 Linker::userTalkLink( $rev->getUser(), $rev->getUserText() ) )->escaped() . ' ';
448 } else {
449 $userlink = '';
450 }
451
452 if ( $rev->getParentId() === 0 ) {
453 $nflag = ChangesList::flag( 'newpage' );
454 } else {
455 $nflag = '';
456 }
457
458 if ( $rev->isMinor() ) {
459 $mflag = ChangesList::flag( 'minor' );
460 } else {
461 $mflag = '';
462 }
463
465 if ( $del !== '' ) {
466 $del .= ' ';
467 }
468
469 $diffHistLinks = $this->msg( 'parentheses' )
470 ->rawParams( $difftext . $this->messages['pipe-separator'] . $histlink )
471 ->escaped();
472 $ret = "{$del}{$d} {$diffHistLinks}{$chardiff}{$nflag}{$mflag} ";
473 $ret .= "{$link}{$userlink} {$comment} {$topmarktext}";
474
475 # Denote if username is redacted for this edit
476 if ( $rev->isDeleted( Revision::DELETED_USER ) ) {
477 $ret .= " <strong>" .
478 $this->msg( 'rev-deleted-user-contribs' )->escaped() .
479 "</strong>";
480 }
481
482 # Tags, if any.
483 list( $tagSummary, $newClasses ) = ChangeTags::formatSummaryRow(
484 $row->ts_tags,
485 'contributions',
486 $this->getContext()
487 );
488 $classes = array_merge( $classes, $newClasses );
489 $ret .= " $tagSummary";
490 }
491
492 // Let extensions add data
493 Hooks::run( 'ContributionsLineEnding', [ $this, &$ret, $row, &$classes ] );
494
495 if ( $classes === [] && $ret === '' ) {
496 wfDebug( "Dropping Special:Contribution row that could not be formatted\n" );
497 $ret = "<!-- Could not format Special:Contribution row. -->\n";
498 } else {
499 $ret = Html::rawElement( 'li', [ 'class' => $classes ], $ret ) . "\n";
500 }
501
502 return $ret;
503 }
504
509 function getSqlComment() {
510 if ( $this->namespace || $this->deletedOnly ) {
511 // potentially slow, see CR r58153
512 return 'contributions page filtered for namespace or RevisionDeleted edits';
513 } else {
514 return 'contributions page unfiltered';
515 }
516 }
517
518 protected function preventClickjacking() {
519 $this->preventClickjacking = true;
520 }
521
525 public function getPreventClickjacking() {
527 }
528}
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
$i
Definition Parser.php:1694
if(!defined( 'MEDIAWIKI')) $fname
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined.
Definition Setup.php:35
static formatSummaryRow( $tags, $page, IContextSource $context=null)
Creates HTML for the given tags.
static modifyDisplayQuery(&$tables, &$fields, &$conds, &$join_conds, &$options, $filter_tag=false)
Applies all tags-related changes to a query.
static showCharacterDifference( $old, $new, IContextSource $context=null)
Show formatted char difference.
static flag( $flag, IContextSource $context=null)
Make an "<abbr>" element for a given change flag.
getUser()
Get the User object.
msg()
Get a Message object with context set Parameters are the same as wfMessage()
IContextSource $context
getLanguage()
Get the Language object.
getContext()
Get the base IContextSource object.
Pager for Special:Contributions.
IDatabase $mDbSecondary
__construct(IContextSource $context, array $options)
getIndexField()
This function should be overridden to return the name of the index fi- eld.
getDefaultQuery()
Get an array of query parameters that should be put into self-links.
doBatchLookups()
Called from getBody(), before getStartBody() is called and after doQuery() was called.
getSqlComment()
Overwrite Pager function and return a helpful comment.
formatRow( $row)
Generates each row in the contributions list.
getQueryInfo()
This function should be overridden to provide all parameters needed for the main paged query.
reallyDoQuery( $offset, $limit, $descending)
This method basically executes the exact same code as the parent class, though with a hook added,...
Overloads the relevant methods of the real ResultsWrapper so it doesn't go anywhere near an actual da...
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
Definition Html.php:210
buildQueryInfo( $offset, $limit, $descending)
Build variables to use by the database wrapper.
const DIR_DESCENDING
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition LinkBatch.php:31
static generateRollback( $rev, IContextSource $context=null, $options=[ 'verify'])
Generate a rollback link for a given revision.
Definition Linker.php:1859
static link( $target, $html=null, $customAttribs=[], $query=[], $options=[])
This function returns an HTML link to the given target.
Definition Linker.php:195
static userLink( $userId, $userName, $altUserName=false)
Make user link (or user contributions for unregistered users)
Definition Linker.php:1102
static revComment(Revision $rev, $local=false, $isPublic=false)
Wrap and format the given revision's comment block, if the current user is allowed to view it.
Definition Linker.php:1656
static formatRevisionSize( $size)
Definition Linker.php:1678
static userTalkLink( $userId, $userText)
Definition Linker.php:1197
static linkKnown( $target, $html=null, $customAttribs=[], $query=[], $options=[ 'known', 'noclasses'])
Identical to link(), except $options defaults to 'known'.
Definition Linker.php:264
static getRevDeleteLink(User $user, Revision $rev, Title $title)
Get a revision-deletion link, or disabled link, or nothing, depending on user permissions & the setti...
Definition Linker.php:2258
static getAssociated( $index)
Get the associated namespace.
IndexPager with a formatted navigation bar.
static userJoinCond()
Return the value of a select() JOIN conds array for the user table.
Definition Revision.php:410
static selectFields()
Return the list of revision fields that should be selected to create a new revision.
Definition Revision.php:429
static selectUserFields()
Return the list of user fields that should be selected from user table.
Definition Revision.php:517
static pageJoinCond()
Return the value of a select() page conds array for the page table.
Definition Revision.php:420
const DELETED_USER
Definition Revision.php:78
const DELETED_TEXT
Definition Revision.php:76
static getParentLengths( $db, array $revIds)
Do a batched query to get the parent revision lengths.
Definition Revision.php:527
const SUPPRESSED_USER
Definition Revision.php:80
static newFromRow( $row)
Make a Title object from a DB row.
Definition Title.php:465
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition deferred.txt:11
when a variable name is used in a function
Definition design.txt:94
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_USER
Definition Defines.php:72
const NS_USER_TALK
Definition Defines.php:73
the array() calling protocol came about after MediaWiki 1.4rc1.
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:249
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition hooks.txt:2379
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist & $tables
Definition hooks.txt:986
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Associative array mapping language codes to prefixed links of the form "language:title". & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition hooks.txt:1799
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition hooks.txt:1042
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 & $ret
Definition hooks.txt:1810
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired 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 inclusive false for true for descending in case the handler function wants to provide a converted Content object Note that $result getContentModel() must return $toModel. 'CustomEditor' you ll need to handle error messages
Definition hooks.txt:1102
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired 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 inclusive $limit
Definition hooks.txt:1081
the value to return A Title object or null for latest to be modified or replaced by the hook handler or if authentication is not possible after cache objects are set for highlighting & $link
Definition hooks.txt:2692
processing should stop and the error should be shown to the user * false
Definition hooks.txt:189
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:1458
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Definition hooks.txt:1597
returning false will NOT prevent logging $e
Definition hooks.txt:1940
$comment
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 objects which can provide a MediaWiki context on request.
Basic database interface for live and lazy-loaded DB handles.
Definition IDatabase.php:35
$batch
Definition linkcache.txt:23
if(!isset( $args[0])) $lang