MediaWiki REL1_33
MovePage.php
Go to the documentation of this file.
1<?php
2
25
32class MovePage {
33
37 protected $oldTitle;
38
42 protected $newTitle;
43
45 $this->oldTitle = $oldTitle;
46 $this->newTitle = $newTitle;
47 }
48
49 public function checkPermissions( User $user, $reason ) {
50 $status = new Status();
51
52 $errors = wfMergeErrorArrays(
53 $this->oldTitle->getUserPermissionsErrors( 'move', $user ),
54 $this->oldTitle->getUserPermissionsErrors( 'edit', $user ),
55 $this->newTitle->getUserPermissionsErrors( 'move-target', $user ),
56 $this->newTitle->getUserPermissionsErrors( 'edit', $user )
57 );
58
59 // Convert into a Status object
60 if ( $errors ) {
61 foreach ( $errors as $error ) {
62 $status->fatal( ...$error );
63 }
64 }
65
66 if ( EditPage::matchSummarySpamRegex( $reason ) !== false ) {
67 // This is kind of lame, won't display nice
68 $status->fatal( 'spamprotectiontext' );
69 }
70
71 $tp = $this->newTitle->getTitleProtection();
72 if ( $tp !== false && !$user->isAllowed( $tp['permission'] ) ) {
73 $status->fatal( 'cantmove-titleprotected' );
74 }
75
76 Hooks::run( 'MovePageCheckPermissions',
77 [ $this->oldTitle, $this->newTitle, $user, $reason, $status ]
78 );
79
80 return $status;
81 }
82
90 public function isValidMove() {
92 $status = new Status();
93
94 if ( $this->oldTitle->equals( $this->newTitle ) ) {
95 $status->fatal( 'selfmove' );
96 }
97 if ( !$this->oldTitle->isMovable() ) {
98 $status->fatal( 'immobile-source-namespace', $this->oldTitle->getNsText() );
99 }
100 if ( $this->newTitle->isExternal() ) {
101 $status->fatal( 'immobile-target-namespace-iw' );
102 }
103 if ( !$this->newTitle->isMovable() ) {
104 $status->fatal( 'immobile-target-namespace', $this->newTitle->getNsText() );
105 }
106
107 $oldid = $this->oldTitle->getArticleID();
108
109 if ( $this->newTitle->getDBkey() === '' ) {
110 $status->fatal( 'articleexists' );
111 }
112 if (
113 ( $this->oldTitle->getDBkey() == '' ) ||
114 ( !$oldid ) ||
115 ( $this->newTitle->getDBkey() == '' )
116 ) {
117 $status->fatal( 'badarticleerror' );
118 }
119
120 # The move is allowed only if (1) the target doesn't exist, or
121 # (2) the target is a redirect to the source, and has no history
122 # (so we can undo bad moves right after they're done).
123 if ( $this->newTitle->getArticleID() && !$this->isValidMoveTarget() ) {
124 $status->fatal( 'articleexists' );
125 }
126
127 // Content model checks
129 $this->oldTitle->getContentModel() !== $this->newTitle->getContentModel() ) {
130 // can't move a page if that would change the page's content model
131 $status->fatal(
132 'bad-target-model',
133 ContentHandler::getLocalizedName( $this->oldTitle->getContentModel() ),
134 ContentHandler::getLocalizedName( $this->newTitle->getContentModel() )
135 );
136 } elseif (
137 !ContentHandler::getForTitle( $this->oldTitle )->canBeUsedOn( $this->newTitle )
138 ) {
139 $status->fatal(
140 'content-not-allowed-here',
141 ContentHandler::getLocalizedName( $this->oldTitle->getContentModel() ),
142 $this->newTitle->getPrefixedText(),
143 SlotRecord::MAIN
144 );
145 }
146
147 // Image-specific checks
148 if ( $this->oldTitle->inNamespace( NS_FILE ) ) {
149 $status->merge( $this->isValidFileMove() );
150 }
151
152 if ( $this->newTitle->inNamespace( NS_FILE ) && !$this->oldTitle->inNamespace( NS_FILE ) ) {
153 $status->fatal( 'nonfile-cannot-move-to-file' );
154 }
155
156 // Hook for extensions to say a title can't be moved for technical reasons
157 Hooks::run( 'MovePageIsValidMove', [ $this->oldTitle, $this->newTitle, $status ] );
158
159 return $status;
160 }
161
167 protected function isValidFileMove() {
168 $status = new Status();
169 $file = wfLocalFile( $this->oldTitle );
170 $file->load( File::READ_LATEST );
171 if ( $file->exists() ) {
172 if ( $this->newTitle->getText() != wfStripIllegalFilenameChars( $this->newTitle->getText() ) ) {
173 $status->fatal( 'imageinvalidfilename' );
174 }
175 if ( !File::checkExtensionCompatibility( $file, $this->newTitle->getDBkey() ) ) {
176 $status->fatal( 'imagetypemismatch' );
177 }
178 }
179
180 if ( !$this->newTitle->inNamespace( NS_FILE ) ) {
181 $status->fatal( 'imagenocrossnamespace' );
182 }
183
184 return $status;
185 }
186
194 protected function isValidMoveTarget() {
195 # Is it an existing file?
196 if ( $this->newTitle->inNamespace( NS_FILE ) ) {
197 $file = wfLocalFile( $this->newTitle );
198 $file->load( File::READ_LATEST );
199 if ( $file->exists() ) {
200 wfDebug( __METHOD__ . ": file exists\n" );
201 return false;
202 }
203 }
204 # Is it a redirect with no history?
205 if ( !$this->newTitle->isSingleRevRedirect() ) {
206 wfDebug( __METHOD__ . ": not a one-rev redirect\n" );
207 return false;
208 }
209 # Get the article text
210 $rev = Revision::newFromTitle( $this->newTitle, false, Revision::READ_LATEST );
211 if ( !is_object( $rev ) ) {
212 return false;
213 }
214 $content = $rev->getContent();
215 # Does the redirect point to the source?
216 # Or is it a broken self-redirect, usually caused by namespace collisions?
217 $redirTitle = $content ? $content->getRedirectTarget() : null;
218
219 if ( $redirTitle ) {
220 if ( $redirTitle->getPrefixedDBkey() !== $this->oldTitle->getPrefixedDBkey() &&
221 $redirTitle->getPrefixedDBkey() !== $this->newTitle->getPrefixedDBkey() ) {
222 wfDebug( __METHOD__ . ": redirect points to other page\n" );
223 return false;
224 } else {
225 return true;
226 }
227 } else {
228 # Fail safe (not a redirect after all. strange.)
229 wfDebug( __METHOD__ . ": failsafe: database says " . $this->newTitle->getPrefixedDBkey() .
230 " is a redirect, but it doesn't contain a valid redirect.\n" );
231 return false;
232 }
233 }
234
243 public function move( User $user, $reason, $createRedirect, array $changeTags = [] ) {
245
246 $status = Status::newGood();
247 Hooks::run( 'TitleMove', [ $this->oldTitle, $this->newTitle, $user, $reason, &$status ] );
248 if ( !$status->isOK() ) {
249 // Move was aborted by the hook
250 return $status;
251 }
252
253 $dbw = wfGetDB( DB_MASTER );
254 $dbw->startAtomic( __METHOD__, IDatabase::ATOMIC_CANCELABLE );
255
256 Hooks::run( 'TitleMoveStarting', [ $this->oldTitle, $this->newTitle, $user ] );
257
258 $pageid = $this->oldTitle->getArticleID( Title::GAID_FOR_UPDATE );
259 $protected = $this->oldTitle->isProtected();
260
261 // Do the actual move; if this fails, it will throw an MWException(!)
262 $nullRevision = $this->moveToInternal( $user, $this->newTitle, $reason, $createRedirect,
263 $changeTags );
264
265 // Refresh the sortkey for this row. Be careful to avoid resetting
266 // cl_timestamp, which may disturb time-based lists on some sites.
267 // @todo This block should be killed, it's duplicating code
268 // from LinksUpdate::getCategoryInsertions() and friends.
269 $prefixes = $dbw->select(
270 'categorylinks',
271 [ 'cl_sortkey_prefix', 'cl_to' ],
272 [ 'cl_from' => $pageid ],
273 __METHOD__
274 );
275 $type = MWNamespace::getCategoryLinkType( $this->newTitle->getNamespace() );
276 foreach ( $prefixes as $prefixRow ) {
277 $prefix = $prefixRow->cl_sortkey_prefix;
278 $catTo = $prefixRow->cl_to;
279 $dbw->update( 'categorylinks',
280 [
281 'cl_sortkey' => Collation::singleton()->getSortKey(
282 $this->newTitle->getCategorySortkey( $prefix ) ),
283 'cl_collation' => $wgCategoryCollation,
284 'cl_type' => $type,
285 'cl_timestamp=cl_timestamp' ],
286 [
287 'cl_from' => $pageid,
288 'cl_to' => $catTo ],
289 __METHOD__
290 );
291 }
292
293 $redirid = $this->oldTitle->getArticleID();
294
295 if ( $protected ) {
296 # Protect the redirect title as the title used to be...
297 $res = $dbw->select(
298 'page_restrictions',
299 [ 'pr_type', 'pr_level', 'pr_cascade', 'pr_user', 'pr_expiry' ],
300 [ 'pr_page' => $pageid ],
301 __METHOD__,
302 'FOR UPDATE'
303 );
304 $rowsInsert = [];
305 foreach ( $res as $row ) {
306 $rowsInsert[] = [
307 'pr_page' => $redirid,
308 'pr_type' => $row->pr_type,
309 'pr_level' => $row->pr_level,
310 'pr_cascade' => $row->pr_cascade,
311 'pr_user' => $row->pr_user,
312 'pr_expiry' => $row->pr_expiry
313 ];
314 }
315 $dbw->insert( 'page_restrictions', $rowsInsert, __METHOD__, [ 'IGNORE' ] );
316
317 // Build comment for log
318 $comment = wfMessage(
319 'prot_1movedto2',
320 $this->oldTitle->getPrefixedText(),
321 $this->newTitle->getPrefixedText()
322 )->inContentLanguage()->text();
323 if ( $reason ) {
324 $comment .= wfMessage( 'colon-separator' )->inContentLanguage()->text() . $reason;
325 }
326
327 // reread inserted pr_ids for log relation
328 $insertedPrIds = $dbw->select(
329 'page_restrictions',
330 'pr_id',
331 [ 'pr_page' => $redirid ],
332 __METHOD__
333 );
334 $logRelationsValues = [];
335 foreach ( $insertedPrIds as $prid ) {
336 $logRelationsValues[] = $prid->pr_id;
337 }
338
339 // Update the protection log
340 $logEntry = new ManualLogEntry( 'protect', 'move_prot' );
341 $logEntry->setTarget( $this->newTitle );
342 $logEntry->setComment( $comment );
343 $logEntry->setPerformer( $user );
344 $logEntry->setParameters( [
345 '4::oldtitle' => $this->oldTitle->getPrefixedText(),
346 ] );
347 $logEntry->setRelations( [ 'pr_id' => $logRelationsValues ] );
348 $logEntry->setTags( $changeTags );
349 $logId = $logEntry->insert();
350 $logEntry->publish( $logId );
351 }
352
353 // Update *_from_namespace fields as needed
354 if ( $this->oldTitle->getNamespace() != $this->newTitle->getNamespace() ) {
355 $dbw->update( 'pagelinks',
356 [ 'pl_from_namespace' => $this->newTitle->getNamespace() ],
357 [ 'pl_from' => $pageid ],
358 __METHOD__
359 );
360 $dbw->update( 'templatelinks',
361 [ 'tl_from_namespace' => $this->newTitle->getNamespace() ],
362 [ 'tl_from' => $pageid ],
363 __METHOD__
364 );
365 $dbw->update( 'imagelinks',
366 [ 'il_from_namespace' => $this->newTitle->getNamespace() ],
367 [ 'il_from' => $pageid ],
368 __METHOD__
369 );
370 }
371
372 # Update watchlists
373 $oldtitle = $this->oldTitle->getDBkey();
374 $newtitle = $this->newTitle->getDBkey();
375 $oldsnamespace = MWNamespace::getSubject( $this->oldTitle->getNamespace() );
376 $newsnamespace = MWNamespace::getSubject( $this->newTitle->getNamespace() );
377 if ( $oldsnamespace != $newsnamespace || $oldtitle != $newtitle ) {
378 $store = MediaWikiServices::getInstance()->getWatchedItemStore();
379 $store->duplicateAllAssociatedEntries( $this->oldTitle, $this->newTitle );
380 }
381
382 // If it is a file then move it last.
383 // This is done after all database changes so that file system errors cancel the transaction.
384 if ( $this->oldTitle->getNamespace() == NS_FILE ) {
385 $status = $this->moveFile( $this->oldTitle, $this->newTitle );
386 if ( !$status->isOK() ) {
387 $dbw->cancelAtomic( __METHOD__ );
388 return $status;
389 }
390 }
391
392 Hooks::run(
393 'TitleMoveCompleting',
394 [ $this->oldTitle, $this->newTitle,
395 $user, $pageid, $redirid, $reason, $nullRevision ]
396 );
397
398 $dbw->endAtomic( __METHOD__ );
399
400 $params = [
403 &$user,
404 $pageid,
405 $redirid,
406 $reason,
408 ];
409 // Keep each single hook handler atomic
410 DeferredUpdates::addUpdate(
412 $dbw,
413 __METHOD__,
414 // Hold onto $user to avoid HHVM bug where it no longer
415 // becomes a reference (T118683)
416 function () use ( $params, &$user ) {
417 Hooks::run( 'TitleMoveComplete', $params );
418 }
419 )
420 );
421
422 return Status::newGood();
423 }
424
434 private function moveFile( $oldTitle, $newTitle ) {
435 $status = Status::newFatal(
436 'cannotdelete',
438 );
439
440 $file = wfLocalFile( $oldTitle );
441 $file->load( File::READ_LATEST );
442 if ( $file->exists() ) {
443 $status = $file->move( $newTitle );
444 }
445
446 // Clear RepoGroup process cache
447 RepoGroup::singleton()->clearCache( $oldTitle );
448 RepoGroup::singleton()->clearCache( $newTitle ); # clear false negative cache
449 return $status;
450 }
451
467 private function moveToInternal( User $user, &$nt, $reason = '', $createRedirect = true,
468 array $changeTags = []
469 ) {
470 if ( $nt->exists() ) {
471 $moveOverRedirect = true;
472 $logType = 'move_redir';
473 } else {
474 $moveOverRedirect = false;
475 $logType = 'move';
476 }
477
478 if ( $moveOverRedirect ) {
479 $overwriteMessage = wfMessage(
480 'delete_and_move_reason',
481 $this->oldTitle->getPrefixedText()
482 )->inContentLanguage()->text();
483 $newpage = WikiPage::factory( $nt );
484 $errs = [];
485 $status = $newpage->doDeleteArticleReal(
486 $overwriteMessage,
487 /* $suppress */ false,
488 $nt->getArticleID(),
489 /* $commit */ false,
490 $errs,
491 $user,
492 $changeTags,
493 'delete_redir'
494 );
495
496 if ( !$status->isGood() ) {
497 throw new MWException( 'Failed to delete page-move revision: '
498 . $status->getWikiText( false, false, 'en' ) );
499 }
500
501 $nt->resetArticleID( false );
502 }
503
504 if ( $createRedirect ) {
505 if ( $this->oldTitle->getNamespace() == NS_CATEGORY
506 && !wfMessage( 'category-move-redirect-override' )->inContentLanguage()->isDisabled()
507 ) {
508 $redirectContent = new WikitextContent(
509 wfMessage( 'category-move-redirect-override' )
510 ->params( $nt->getPrefixedText() )->inContentLanguage()->plain() );
511 } else {
512 $contentHandler = ContentHandler::getForTitle( $this->oldTitle );
513 $redirectContent = $contentHandler->makeRedirectContent( $nt,
514 wfMessage( 'move-redirect-text' )->inContentLanguage()->plain() );
515 }
516
517 // NOTE: If this page's content model does not support redirects, $redirectContent will be null.
518 } else {
519 $redirectContent = null;
520 }
521
522 // Figure out whether the content model is no longer the default
523 $oldDefault = ContentHandler::getDefaultModelFor( $this->oldTitle );
524 $contentModel = $this->oldTitle->getContentModel();
525 $newDefault = ContentHandler::getDefaultModelFor( $nt );
526 $defaultContentModelChanging = ( $oldDefault !== $newDefault
527 && $oldDefault === $contentModel );
528
529 // T59084: log_page should be the ID of the *moved* page
530 $oldid = $this->oldTitle->getArticleID();
531 $logTitle = clone $this->oldTitle;
532
533 $logEntry = new ManualLogEntry( 'move', $logType );
534 $logEntry->setPerformer( $user );
535 $logEntry->setTarget( $logTitle );
536 $logEntry->setComment( $reason );
537 $logEntry->setParameters( [
538 '4::target' => $nt->getPrefixedText(),
539 '5::noredir' => $redirectContent ? '0' : '1',
540 ] );
541
542 $formatter = LogFormatter::newFromEntry( $logEntry );
543 $formatter->setContext( RequestContext::newExtraneousContext( $this->oldTitle ) );
544 $comment = $formatter->getPlainActionText();
545 if ( $reason ) {
546 $comment .= wfMessage( 'colon-separator' )->inContentLanguage()->text() . $reason;
547 }
548
549 $dbw = wfGetDB( DB_MASTER );
550
551 $oldpage = WikiPage::factory( $this->oldTitle );
552 $oldcountable = $oldpage->isCountable();
553
554 $newpage = WikiPage::factory( $nt );
555
556 # Change the name of the target page:
557 $dbw->update( 'page',
558 /* SET */ [
559 'page_namespace' => $nt->getNamespace(),
560 'page_title' => $nt->getDBkey(),
561 ],
562 /* WHERE */ [ 'page_id' => $oldid ],
563 __METHOD__
564 );
565
566 # Save a null revision in the page's history notifying of the move
567 $nullRevision = Revision::newNullRevision( $dbw, $oldid, $comment, true, $user );
568 if ( !is_object( $nullRevision ) ) {
569 throw new MWException( 'Failed to create null revision while moving page ID '
570 . $oldid . ' to ' . $nt->getPrefixedDBkey() );
571 }
572
573 $nullRevId = $nullRevision->insertOn( $dbw );
574 $logEntry->setAssociatedRevId( $nullRevId );
575
581 $user->incEditCount();
582
583 if ( !$redirectContent ) {
584 // Clean up the old title *before* reset article id - T47348
585 WikiPage::onArticleDelete( $this->oldTitle );
586 }
587
588 $this->oldTitle->resetArticleID( 0 ); // 0 == non existing
589 $nt->resetArticleID( $oldid );
590 $newpage->loadPageData( WikiPage::READ_LOCKING ); // T48397
591
592 $newpage->updateRevisionOn( $dbw, $nullRevision );
593
594 Hooks::run( 'NewRevisionFromEditComplete',
595 [ $newpage, $nullRevision, $nullRevision->getParentId(), $user ] );
596
597 $newpage->doEditUpdates( $nullRevision, $user,
598 [ 'changed' => false, 'moved' => true, 'oldcountable' => $oldcountable ] );
599
600 // If the default content model changes, we need to populate rev_content_model
601 if ( $defaultContentModelChanging ) {
602 $dbw->update(
603 'revision',
604 [ 'rev_content_model' => $contentModel ],
605 [ 'rev_page' => $nt->getArticleID(), 'rev_content_model IS NULL' ],
606 __METHOD__
607 );
608 }
609
610 WikiPage::onArticleCreate( $nt );
611
612 # Recreate the redirect, this time in the other direction.
613 if ( $redirectContent ) {
614 $redirectArticle = WikiPage::factory( $this->oldTitle );
615 $redirectArticle->loadFromRow( false, WikiPage::READ_LOCKING ); // T48397
616 $newid = $redirectArticle->insertOn( $dbw );
617 if ( $newid ) { // sanity
618 $this->oldTitle->resetArticleID( $newid );
619 $redirectRevision = new Revision( [
620 'title' => $this->oldTitle, // for determining the default content model
621 'page' => $newid,
622 'user_text' => $user->getName(),
623 'user' => $user->getId(),
624 'comment' => $comment,
625 'content' => $redirectContent ] );
626 $redirectRevId = $redirectRevision->insertOn( $dbw );
627 $redirectArticle->updateRevisionOn( $dbw, $redirectRevision, 0 );
628
629 Hooks::run( 'NewRevisionFromEditComplete',
630 [ $redirectArticle, $redirectRevision, false, $user ] );
631
632 $redirectArticle->doEditUpdates( $redirectRevision, $user, [ 'created' => true ] );
633
634 // make a copy because of log entry below
635 $redirectTags = $changeTags;
636 if ( in_array( 'mw-new-redirect', ChangeTags::getSoftwareTags() ) ) {
637 $redirectTags[] = 'mw-new-redirect';
638 }
639 ChangeTags::addTags( $redirectTags, null, $redirectRevId, null );
640 }
641 }
642
643 # Log the move
644 $logid = $logEntry->insert();
645
646 $logEntry->setTags( $changeTags );
647 $logEntry->publish( $logid );
648
649 return $nullRevision;
650 }
651}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
$wgCategoryCollation
Specify how category names should be sorted, when listed on a category page.
$wgContentHandlerUseDB
Set to false to disable use of the database fields introduced by the ContentHandler facility.
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.
wfLocalFile( $title)
Get an object referring to a locally registered file.
wfMergeErrorArrays(... $args)
Merge arrays in the style of getUserPermissionsErrors, with duplicate removal e.g.
wfStripIllegalFilenameChars( $name)
Replace all invalid characters with '-'.
Deferrable Update for closure/callback updates via IDatabase::doAtomicSection()
static getSoftwareTags( $all=false)
Loads defined core tags, checks for invalid types (if not array), and filters for supported and enabl...
static addTags( $tags, $rc_id=null, $rev_id=null, $log_id=null, $params=null, RecentChange $rc=null)
Add tags to a change given its rc_id, rev_id and/or log_id.
static singleton()
Definition Collation.php:36
static matchSummarySpamRegex( $text)
Check given input text against $wgSummarySpamRegex, and return the text of the first match.
static checkExtensionCompatibility(File $old, $new)
Checks if file extensions are compatible.
Definition File.php:250
static newFromEntry(LogEntry $entry)
Constructs a new formatter suitable for given entry.
MediaWiki exception.
Class for creating new log entries and inserting them into the database.
Definition LogEntry.php:441
MediaWikiServices is the service locator for the application scope of MediaWiki.
Value object representing a content slot associated with a page revision.
Handles the backend logic of moving a page from one title to another.
Definition MovePage.php:32
checkPermissions(User $user, $reason)
Definition MovePage.php:49
isValidFileMove()
Sanity checks for when a file is being moved.
Definition MovePage.php:167
Title $oldTitle
Definition MovePage.php:37
moveToInternal(User $user, &$nt, $reason='', $createRedirect=true, array $changeTags=[])
Move page to a title which is either a redirect to the source page or nonexistent.
Definition MovePage.php:467
isValidMove()
Does various sanity checks that the move is valid.
Definition MovePage.php:90
isValidMoveTarget()
Checks if $this can be moved to a given Title.
Definition MovePage.php:194
move(User $user, $reason, $createRedirect, array $changeTags=[])
Definition MovePage.php:243
moveFile( $oldTitle, $newTitle)
Move a file associated with a page to a new location.
Definition MovePage.php:434
Title $newTitle
Definition MovePage.php:42
__construct(Title $oldTitle, Title $newTitle)
Definition MovePage.php:44
static singleton()
Get a RepoGroup instance.
Definition RepoGroup.php:61
static newNullRevision( $dbw, $pageId, $summary, $minor, $user=null)
Create a new null-revision for insertion into a page's history.
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target.
Definition Revision.php:137
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Definition Status.php:40
Represents a title within MediaWiki.
Definition Title.php:40
getPrefixedText()
Get the prefixed title with spaces.
Definition Title.php:1660
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:48
Content object for wiki text pages.
$res
Definition database.txt:21
either a plain
Definition hooks.txt:2054
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
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. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header '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:1032
return true to allow those checks to and false if checking is done & $user
Definition hooks.txt:1510
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:1779
const NS_FILE
Definition Defines.php:79
const NS_CATEGORY
Definition Defines.php:87
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:38
you have access to all of the normal MediaWiki so you can get a DB use the cache
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))
$content
const DB_MASTER
Definition defines.php:26
$params