Go to the documentation of this file.
180 return MediaWikiServices::getInstance()->getTitleFormatter();
192 return MediaWikiServices::getInstance()->getInterwikiLookup();
211 $t->mDbkeyform = $key;
214 $t->secureAndSplit();
240 if ( $linkTarget instanceof
Title ) {
270 if ( $text !==
null && !is_string( $text ) && !is_int( $text ) ) {
271 throw new InvalidArgumentException(
'$text must be a string.' );
273 if ( $text ===
null ) {
302 if ( is_object( $text ) ) {
303 throw new MWException(
'$text must be a string, given an object' );
312 if ( $defaultNamespace ==
NS_MAIN ) {
320 $filteredText = Sanitizer::decodeCharReferencesAndNormalize( $text );
323 $t->mDbkeyform = strtr( $filteredText,
' ',
'_' );
324 $t->mDefaultNamespace = intval( $defaultNamespace );
326 $t->secureAndSplit();
327 if ( $defaultNamespace ==
NS_MAIN ) {
351 # For compatibility with old buggy URLs. "+" is usually not valid in titles,
352 # but some URLs used it as a space replacement and they still come
353 # from some external search tools.
354 if ( strpos( self::legalChars(),
'+' ) ===
false ) {
355 $url = strtr( $url,
'+',
' ' );
358 $t->mDbkeyform = strtr( $url,
' ',
'_' );
361 $t->secureAndSplit();
372 if ( self::$titleCache ==
null ) {
373 self::$titleCache =
new HashBagOStuff( [
'maxKeys' => self::CACHE_MAX ] );
389 'page_namespace',
'page_title',
'page_id',
390 'page_len',
'page_is_redirect',
'page_latest',
394 $fields[] =
'page_content_model';
398 $fields[] =
'page_lang';
413 $row = $db->selectRow(
415 self::getSelectFields(),
416 [
'page_id' => $id ],
419 if ( $row !==
false ) {
434 if ( !
count( $ids ) ) {
441 self::getSelectFields(),
442 [
'page_id' => $ids ],
447 foreach (
$res as $row ) {
461 $t->loadFromRow( $row );
473 if ( isset( $row->page_id ) ) {
474 $this->mArticleID = (int)$row->page_id;
476 if ( isset( $row->page_len ) ) {
477 $this->mLength = (int)$row->page_len;
479 if ( isset( $row->page_is_redirect ) ) {
480 $this->mRedirect = (bool)$row->page_is_redirect;
482 if ( isset( $row->page_latest ) ) {
483 $this->mLatestID = (int)$row->page_latest;
485 if ( !$this->mForcedContentModel && isset( $row->page_content_model ) ) {
486 $this->mContentModel = strval( $row->page_content_model );
487 } elseif ( !$this->mForcedContentModel ) {
490 if ( isset( $row->page_lang ) ) {
491 $this->mDbPageLanguage = (
string)$row->page_lang;
493 if ( isset( $row->page_restrictions ) ) {
494 $this->mOldRestrictions = $row->page_restrictions;
497 $this->mArticleID = 0;
499 $this->mRedirect =
false;
500 $this->mLatestID = 0;
501 if ( !$this->mForcedContentModel ) {
531 $t->mInterwiki = $interwiki;
532 $t->mFragment = $fragment;
533 $t->mNamespace = $ns = intval( $ns );
534 $t->mDbkeyform = strtr(
$title,
' ',
'_' );
535 $t->mArticleID = ( $ns >= 0 ) ? -1 : 0;
537 $t->mTextform = strtr(
$title,
'_',
' ' );
569 $t->secureAndSplit();
601 [
'page_namespace',
'page_title' ],
602 [
'page_id' => $id ],
605 if (
$s ===
false ) {
647 $length = strlen( $byteClass );
649 $x0 = $x1 = $x2 =
'';
651 $d0 = $d1 = $d2 =
'';
653 $ord0 = $ord1 = $ord2 = 0;
655 $r0 = $r1 = $r2 =
'';
659 $allowUnicode =
false;
660 for ( $pos = 0; $pos < $length; $pos++ ) {
671 $inChar = $byteClass[$pos];
672 if ( $inChar ==
'\\' ) {
673 if ( preg_match(
'/x([0-9a-fA-F]{2})/A', $byteClass, $m, 0, $pos + 1 ) ) {
674 $x0 = $inChar . $m[0];
675 $d0 = chr( hexdec( $m[1] ) );
676 $pos += strlen( $m[0] );
677 } elseif ( preg_match(
'/[0-7]{3}/A', $byteClass, $m, 0, $pos + 1 ) ) {
678 $x0 = $inChar . $m[0];
679 $d0 = chr( octdec( $m[0] ) );
680 $pos += strlen( $m[0] );
681 } elseif ( $pos + 1 >= $length ) {
684 $d0 = $byteClass[$pos + 1];
693 if ( $ord0 < 32 || $ord0 == 0x7f ) {
694 $r0 = sprintf(
'\x%02x', $ord0 );
695 } elseif ( $ord0 >= 0x80 ) {
697 $r0 = sprintf(
'\x%02x', $ord0 );
698 $allowUnicode =
true;
699 } elseif ( strpos(
'-\\[]^', $d0 ) !==
false ) {
705 if ( $x0 !==
'' && $x1 ===
'-' && $x2 !==
'' ) {
707 if ( $ord2 > $ord0 ) {
709 } elseif ( $ord0 >= 0x80 ) {
711 $allowUnicode =
true;
712 if ( $ord2 < 0x80 ) {
721 $x0 = $x1 = $d0 = $d1 = $r0 = $r1 =
'';
722 } elseif ( $ord2 < 0x80 ) {
727 if ( $ord1 < 0x80 ) {
730 if ( $ord0 < 0x80 ) {
733 if ( $allowUnicode ) {
734 $out .=
'\u0080-\uFFFF';
751 $canonicalNamespace =
false
755 if ( $canonicalNamespace ) {
760 $name = $namespace ==
'' ?
$title :
"$namespace:$title";
761 if ( strval( $interwiki ) !=
'' ) {
762 $name =
"$interwiki:$name";
764 if ( strval( $fragment ) !=
'' ) {
765 $name .=
'#' . $fragment;
779 # Note that we don't urlencode the fragment. urlencoded Unicode
780 # fragments appear not to work in IE (at least up to 7) or in at least
781 # one version of Opera 9.x. The W3C validator, for one, doesn't seem
782 # to care if they aren't encoded.
783 return Sanitizer::escapeId( $fragment,
'noninitial' );
824 $parser = MediaWikiServices::getInstance()->getTitleParser();
843 return $iw->isLocal();
855 return $this->mInterwiki !==
'';
915 if ( $this->mTitleValue ===
null ) {
923 }
catch ( InvalidArgumentException $ex ) {
924 wfDebug( __METHOD__ .
': Can\'t create a TitleValue for [[' .
965 if ( !is_null( $this->mUserCaseDBKey ) ) {
989 if ( !$this->mForcedContentModel
990 && ( !$this->mContentModel ||
$flags === self::GAID_FOR_UPDATE )
994 $linkCache->addLinkObj( $this ); #
in case we already had an
article ID
995 $this->mContentModel = $linkCache->getGoodLinkFieldObj( $this,
'model' );
998 if ( !$this->mContentModel ) {
1027 $this->mContentModel = $model;
1028 $this->mForcedContentModel =
true;
1049 return $formatter->getNamespaceName( $this->mNamespace, $this->mDbkeyform );
1050 }
catch ( InvalidArgumentException $ex ) {
1051 wfDebug( __METHOD__ .
': ' . $ex->getMessage() .
"\n" );
1105 return $this->mNamespace >=
NS_MAIN;
1135 if (
$name == $thisName ) {
1151 if ( $canonicalName ) {
1153 if ( $localName != $this->mDbkeyform ) {
1253 return $this->
equals( self::newMainPage() );
1276 strpos( $this->
getText(),
'Conversiontable/' ) === 0;
1307 return $isCssOrJsPage;
1327 $subpage = explode(
'/', $this->mTextform );
1328 $subpage = $subpage[
count( $subpage ) - 1];
1329 $lastdot = strrpos( $subpage,
'.' );
1330 if ( $lastdot ===
false ) {
1331 return $subpage; # Never happens: only called
for names ending
in '.css' or '.js'
1333 return substr( $subpage, 0, $lastdot );
1416 throw new MWException(
'Special pages cannot have other pages' );
1422 throw new MWException(
"{$this->getPrefixedText()} does not have an other page" );
1455 return $this->mFragment !==
'';
1467 return '#' . Sanitizer::escapeIdForExternalInterwiki( $this->
getFragment() );
1469 return '#' . Sanitizer::escapeIdForLink( $this->
getFragment() );
1485 $this->mFragment = strtr( substr( $fragment, 1 ),
'_',
' ' );
1516 $p = $this->mInterwiki .
':';
1519 if ( 0 != $this->mNamespace ) {
1522 if ( $nsText ===
false ) {
1527 $p .= $nsText .
':';
1539 $s = $this->
prefix( $this->mDbkeyform );
1540 $s = strtr(
$s,
' ',
'_' );
1551 if ( $this->mPrefixedText ===
null ) {
1552 $s = $this->
prefix( $this->mTextform );
1553 $s = strtr(
$s,
'_',
' ' );
1554 $this->mPrefixedText =
$s;
1599 return strtok( $this->
getText(),
'/' );
1634 $parts = explode(
'/', $this->
getText() );
1635 # Don't discard the real title if there's no subpage involved
1636 if (
count( $parts ) > 1 ) {
1637 unset( $parts[
count( $parts ) - 1] );
1639 return implode(
'/', $parts );
1673 $parts = explode(
'/', $this->mTextform );
1674 return $parts[
count( $parts ) - 1];
1711 $s = $this->
prefix( $this->mDbkeyform );
1730 if ( $query2 !==
false ) {
1731 wfDeprecated(
"Title::get{Canonical,Full,Link,Local,Internal}URL " .
1732 "method called with a second parameter is deprecated. Add your " .
1733 "parameter to an array passed as the first parameter.",
"1.19" );
1735 if ( is_array(
$query ) ) {
1739 if ( is_string( $query2 ) ) {
1770 # Hand off all the decisions on urls to getLocalURL
1773 # Expand the url to make it a full url. Note that getLocalURL has the
1774 # potential to output full urls for a variety of reasons, so we use
1775 # wfExpandUrl instead of simply prepending $wgServer
1778 # Finally, add the fragment.
1807 $this->getPrefixedDBKey()
1810 return $target->getFullUrl(
$query,
false, $proto );
1844 if ( $namespace !=
'' ) {
1845 # Can this actually happen? Interwikis shouldn't be parsed.
1846 # Yes! It can in interwiki transclusion. But... it probably shouldn't.
1849 $url = $interwiki->getURL( $namespace . $this->
getDBkey() );
1857 Hooks::run(
'GetLocalURL::Article', [ &$titleRef, &$url ] );
1864 && preg_match(
'/^(.*&|)action=([^&]*)(&(.*)|)$/',
$query,
$matches )
1866 $action = urldecode(
$matches[2] );
1885 $variant = urldecode(
$matches[1] );
1890 $url = str_replace(
'$1', $dbkey, $url );
1894 if ( $url ===
false ) {
1898 $url =
"{$wgScript}?title={$dbkey}&{$query}";
1907 if (
$wgRequest->getVal(
'action' ) ==
'render' ) {
1935 if ( $this->
isExternal() || $proto !==
false ) {
2058 $action,
$user, $rigor =
'secure', $ignoreErrors = []
2063 foreach ( $errors
as $index => $error ) {
2064 $errKey = is_array( $error ) ? $error[0] : $error;
2066 if ( in_array( $errKey, $ignoreErrors ) ) {
2067 unset( $errors[$index] );
2069 if ( $errKey instanceof
MessageSpecifier && in_array( $errKey->getKey(), $ignoreErrors ) ) {
2070 unset( $errors[$index] );
2090 [ $this,
$user, $action, &$errors, ( $rigor !==
'quick' ), $short ] )
2095 if ( $action ==
'create' ) {
2100 $errors[] =
$user->isAnon() ? [
'nocreatetext' ] : [
'nocreate-loggedin' ];
2102 } elseif ( $action ==
'move' ) {
2103 if ( !
$user->isAllowed(
'move-rootuserpages' )
2106 $errors[] = [
'cant-move-user-page' ];
2110 if ( $this->mNamespace ==
NS_FILE && !
$user->isAllowed(
'movefile' ) ) {
2111 $errors[] = [
'movenotallowedfile' ];
2115 if ( $this->mNamespace ==
NS_CATEGORY && !
$user->isAllowed(
'move-categorypages' ) ) {
2116 $errors[] = [
'cant-move-category-page' ];
2119 if ( !
$user->isAllowed(
'move' ) ) {
2123 if (
$user->isAnon() && ( $userCanMove || $autoconfirmedCanMove ) ) {
2125 $errors[] = [
'movenologintext' ];
2127 $errors[] = [
'movenotallowed' ];
2130 } elseif ( $action ==
'move-target' ) {
2131 if ( !
$user->isAllowed(
'move' ) ) {
2133 $errors[] = [
'movenotallowed' ];
2134 } elseif ( !
$user->isAllowed(
'move-rootuserpages' )
2137 $errors[] = [
'cant-move-to-user-page' ];
2138 } elseif ( !
$user->isAllowed(
'move-categorypages' )
2141 $errors[] = [
'cant-move-to-category-page' ];
2143 } elseif ( !
$user->isAllowed( $action ) ) {
2164 $errors = array_merge( $errors,
$result );
2171 } elseif (
$result ===
false ) {
2173 $errors[] = [
'badaccess-group0' ];
2195 return $result ? [] : [ [
'badaccess-group0' ] ];
2206 && !( $short &&
count( $errors ) > 0 )
2227 # Only 'createaccount' can be performed on special pages,
2228 # which don't actually exist in the DB.
2229 if ( $this->
isSpecialPage() && $action !==
'createaccount' ) {
2230 $errors[] = [
'ns-specialprotected' ];
2233 # Check $wgNamespaceProtection for restricted namespaces
2235 $ns = $this->mNamespace ==
NS_MAIN ?
2238 [
'protectedinterface', $action ] : [
'namespaceprotected', $ns, $action ];
2256 # Protect css/js subpages of user pages
2257 # XXX: this might be better using restrictions
2258 if ( $action !=
'patrol' ) {
2259 if ( preg_match(
'/^' . preg_quote(
$user->getName(),
'/' ) .
'\//', $this->mTextform ) ) {
2260 if ( $this->
isCssSubpage() && !
$user->isAllowedAny(
'editmyusercss',
'editusercss' ) ) {
2261 $errors[] = [
'mycustomcssprotected', $action ];
2262 } elseif ( $this->
isJsSubpage() && !
$user->isAllowedAny(
'editmyuserjs',
'edituserjs' ) ) {
2263 $errors[] = [
'mycustomjsprotected', $action ];
2267 $errors[] = [
'customcssprotected', $action ];
2269 $errors[] = [
'customjsprotected', $action ];
2293 if ( $right ==
'sysop' ) {
2294 $right =
'editprotected';
2297 if ( $right ==
'autoconfirmed' ) {
2298 $right =
'editsemiprotected';
2300 if ( $right ==
'' ) {
2303 if ( !
$user->isAllowed( $right ) ) {
2304 $errors[] = [
'protectedpagetext', $right, $action ];
2305 } elseif ( $this->mCascadeRestriction && !
$user->isAllowed(
'protect' ) ) {
2306 $errors[] = [
'protectedpagetext',
'protect', $action ];
2326 # We /could/ use the protection level on the source page, but it's
2327 # fairly ugly as we have to establish a precedence hierarchy for pages
2328 # included by multiple cascade-protected pages. So just restrict
2329 # it to people with 'protect' permission, as they could remove the
2330 # protection anyway.
2332 # Cascading protection depends on more than this page...
2333 # Several cascading protected pages may include this page...
2334 # Check each cascading level
2335 # This is only for protection restrictions, not for all actions
2336 if ( isset( $restrictions[$action] ) ) {
2337 foreach ( $restrictions[$action]
as $right ) {
2339 if ( $right ==
'sysop' ) {
2340 $right =
'editprotected';
2343 if ( $right ==
'autoconfirmed' ) {
2344 $right =
'editsemiprotected';
2346 if ( $right !=
'' && !
$user->isAllowedAll(
'protect', $right ) ) {
2348 foreach ( $cascadingSources
as $page ) {
2349 $pages .=
'* [[:' . $page->getPrefixedText() .
"]]\n";
2351 $errors[] = [
'cascadeprotected',
count( $cascadingSources ), $pages, $action ];
2374 if ( $action ==
'protect' ) {
2377 $errors[] = [
'protect-cantedit' ];
2379 } elseif ( $action ==
'create' ) {
2381 if ( $title_protection ) {
2382 if ( $title_protection[
'permission'] ==
''
2383 || !
$user->isAllowed( $title_protection[
'permission'] )
2388 $title_protection[
'reason']
2392 } elseif ( $action ==
'move' ) {
2396 $errors[] = [
'immobile-source-namespace', $this->
getNsText() ];
2399 $errors[] = [
'immobile-source-page' ];
2401 } elseif ( $action ==
'move-target' ) {
2403 $errors[] = [
'immobile-target-namespace', $this->
getNsText() ];
2405 $errors[] = [
'immobile-target-page' ];
2407 } elseif ( $action ==
'delete' ) {
2409 if ( !$tempErrors ) {
2411 $user, $tempErrors, $rigor,
true );
2413 if ( $tempErrors ) {
2415 $errors[] = [
'deleteprotected' ];
2422 } elseif ( $action ===
'undelete' ) {
2425 $errors[] = [
'undelete-cantedit' ];
2431 $errors[] = [
'undelete-cantcreate' ];
2452 if ( $rigor ===
'quick' || in_array( $action, [
'createaccount',
'unblock' ] ) ) {
2462 $errors[] = [
'confirmedittext' ];
2465 $useSlave = ( $rigor !==
'secure' );
2466 if ( ( $action ==
'edit' || $action ==
'create' )
2467 && !
$user->isBlockedFrom( $this, $useSlave )
2471 } elseif (
$user->isBlocked() &&
$user->getBlock()->prevents( $action ) !==
false ) {
2493 $whitelisted =
false;
2495 # Shortcut for public wikis, allows skipping quite a bit of code
2496 $whitelisted =
true;
2497 } elseif (
$user->isAllowed(
'read' ) ) {
2498 # If the user is allowed to read pages, he is allowed to read all pages
2499 $whitelisted =
true;
2500 } elseif ( $this->
isSpecial(
'Userlogin' )
2504 # Always grant access to the login page.
2505 # Even anons need to be able to log in.
2506 $whitelisted =
true;
2508 # Time to check the whitelist
2509 # Only do these checks is there's something to check against
2515 $whitelisted =
true;
2517 # Old settings might have the title prefixed with
2518 # a colon for main-namespace pages
2520 $whitelisted =
true;
2523 # If it's a special page, ditch the subpage bit and check again
2529 $whitelisted =
true;
2538 foreach ( $wgWhitelistReadRegexp
as $listItem ) {
2539 if ( preg_match( $listItem,
$name ) ) {
2540 $whitelisted =
true;
2546 if ( !$whitelisted ) {
2547 # If the title is not whitelisted, give extensions a chance to do so...
2549 if ( !$whitelisted ) {
2568 return [
'badaccess-group0' ];
2589 $action,
$user, $rigor =
'secure', $short =
false
2591 if ( $rigor ===
true ) {
2593 } elseif ( $rigor ===
false ) {
2595 } elseif ( !in_array( $rigor, [
'quick',
'full',
'secure' ] ) ) {
2596 throw new Exception(
"Invalid rigor parameter '$rigor'." );
2599 # Read has special handling
2600 if ( $action ==
'read' ) {
2602 'checkPermissionHooks',
2603 'checkReadPermissions',
2606 # Don't call checkSpecialsAndNSPermissions or checkCSSandJSPermissions
2607 # here as it will lead to duplicate error messages. This is okay to do
2608 # since anywhere that checks for create will also check for edit, and
2609 # those checks are called for edit.
2610 } elseif ( $action ==
'create' ) {
2612 'checkQuickPermissions',
2613 'checkPermissionHooks',
2614 'checkPageRestrictions',
2615 'checkCascadingSourcesRestrictions',
2616 'checkActionPermissions',
2621 'checkQuickPermissions',
2622 'checkPermissionHooks',
2623 'checkSpecialsAndNSPermissions',
2624 'checkCSSandJSPermissions',
2625 'checkPageRestrictions',
2626 'checkCascadingSourcesRestrictions',
2627 'checkActionPermissions',
2633 while (
count( $checks ) > 0 &&
2634 !( $short &&
count( $errors ) > 0 ) ) {
2635 $method = array_shift( $checks );
2636 $errors = $this->$method( $action,
$user, $errors, $rigor, $short );
2653 # Remove the create restriction for existing titles
2654 $types = array_diff( $types, [
'create' ] );
2656 # Only the create and upload restrictions apply to non-existing titles
2657 $types = array_intersect( $types, [
'create',
'upload' ] );
2675 # Remove the upload restriction for non-file titles
2676 $types = array_diff( $types, [
'upload' ] );
2679 Hooks::run(
'TitleGetRestrictionTypes', [ $this, &$types ] );
2681 wfDebug( __METHOD__ .
': applicable restrictions to [[' .
2682 $this->
getPrefixedText() .
']] are {' . implode(
',', $types ) .
"}\n" );
2696 if ( $protection ) {
2697 if ( $protection[
'permission'] ==
'sysop' ) {
2698 $protection[
'permission'] =
'editprotected';
2700 if ( $protection[
'permission'] ==
'autoconfirmed' ) {
2701 $protection[
'permission'] =
'editsemiprotected';
2728 if ( $this->mTitleProtection ===
null ) {
2731 $commentQuery = $commentStore->getJoin();
2733 [
'protected_titles' ] + $commentQuery[
'tables'],
2735 'user' =>
'pt_user',
2736 'expiry' =>
'pt_expiry',
2737 'permission' =>
'pt_create_perm'
2738 ] + $commentQuery[
'fields'],
2742 $commentQuery[
'joins']
2748 $this->mTitleProtection = [
2749 'user' => $row[
'user'],
2750 'expiry' =>
$dbr->decodeExpiry( $row[
'expiry'] ),
2751 'permission' => $row[
'permission'],
2752 'reason' => $commentStore->getComment( $row )->text,
2755 $this->mTitleProtection =
false;
2772 $this->mTitleProtection =
false;
2787 if ( !$restrictions || !$semi ) {
2793 foreach ( array_keys( $semi,
'autoconfirmed' )
as $key ) {
2794 $semi[$key] =
'editsemiprotected';
2796 foreach ( array_keys( $restrictions,
'autoconfirmed' )
as $key ) {
2797 $restrictions[$key] =
'editsemiprotected';
2800 return !array_diff( $restrictions, $semi );
2815 # Special pages have inherent protection
2820 # Check regular protection levels
2821 foreach ( $restrictionTypes
as $type ) {
2822 if ( $action ==
$type || $action ==
'' ) {
2825 if ( in_array( $level, $r ) && $level !=
'' ) {
2847 if ( $right !=
'' && !
$user->isAllowed( $right ) ) {
2862 return ( $sources > 0 );
2875 return $getPages ? $this->mCascadeSources !== null : $this->mHasCascadingRestrictions !==
null;
2892 $pagerestrictions = [];
2894 if ( $this->mCascadeSources !==
null && $getPages ) {
2896 } elseif ( $this->mHasCascadingRestrictions !==
null && !$getPages ) {
2903 $tables = [
'imagelinks',
'page_restrictions' ];
2910 $tables = [
'templatelinks',
'page_restrictions' ];
2920 $cols = [
'pr_page',
'page_namespace',
'page_title',
2921 'pr_expiry',
'pr_type',
'pr_level' ];
2922 $where_clauses[] =
'page_id=pr_page';
2925 $cols = [
'pr_expiry' ];
2930 $sources = $getPages ? [] :
false;
2933 foreach (
$res as $row ) {
2934 $expiry =
$dbr->decodeExpiry( $row->pr_expiry );
2935 if ( $expiry > $now ) {
2937 $page_id = $row->pr_page;
2938 $page_ns = $row->page_namespace;
2939 $page_title = $row->page_title;
2941 # Add groups needed for each restriction type if its not already there
2942 # Make sure this restriction type still exists
2944 if ( !isset( $pagerestrictions[$row->pr_type] ) ) {
2945 $pagerestrictions[$row->pr_type] = [];
2949 isset( $pagerestrictions[$row->pr_type] )
2950 && !in_array( $row->pr_level, $pagerestrictions[$row->pr_type] )
2952 $pagerestrictions[$row->pr_type][] = $row->pr_level;
2961 $this->mCascadeSources = $sources;
2962 $this->mCascadingRestrictions = $pagerestrictions;
2964 $this->mHasCascadingRestrictions = $sources;
2967 return [ $sources, $pagerestrictions ];
2991 if ( !$this->mRestrictionsLoaded ) {
2994 return isset( $this->mRestrictions[$action] )
2995 ? $this->mRestrictions[$action]
3007 if ( !$this->mRestrictionsLoaded ) {
3021 if ( !$this->mRestrictionsLoaded ) {
3024 return isset( $this->mRestrictionsExpiry[$action] ) ? $this->mRestrictionsExpiry[$action] :
false;
3033 if ( !$this->mRestrictionsLoaded ) {
3054 foreach ( $restrictionTypes
as $type ) {
3055 $this->mRestrictions[
$type] = [];
3056 $this->mRestrictionsExpiry[
$type] =
'infinity';
3059 $this->mCascadeRestriction =
false;
3061 # Backwards-compatibility: also load the restrictions from the page record (old format).
3062 if ( $oldFashionedRestrictions !==
null ) {
3063 $this->mOldRestrictions = $oldFashionedRestrictions;
3066 if ( $this->mOldRestrictions ===
false ) {
3067 $this->mOldRestrictions =
$dbr->selectField(
'page',
'page_restrictions',
3071 if ( $this->mOldRestrictions !=
'' ) {
3072 foreach ( explode(
':', trim( $this->mOldRestrictions ) )
as $restrict ) {
3073 $temp = explode(
'=', trim( $restrict ) );
3074 if (
count( $temp ) == 1 ) {
3076 $this->mRestrictions[
'edit'] = explode(
',', trim( $temp[0] ) );
3077 $this->mRestrictions[
'move'] = explode(
',', trim( $temp[0] ) );
3079 $restriction = trim( $temp[1] );
3080 if ( $restriction !=
'' ) {
3081 $this->mRestrictions[$temp[0]] = explode(
',', $restriction );
3088 # Current system - load second to make them override.
3091 # Cycle through all the restrictions.
3094 if ( !in_array( $row->pr_type, $restrictionTypes ) ) {
3098 $expiry =
$dbr->decodeExpiry( $row->pr_expiry );
3101 if ( !$expiry || $expiry > $now ) {
3102 $this->mRestrictionsExpiry[$row->pr_type] = $expiry;
3103 $this->mRestrictions[$row->pr_type] = explode(
',', trim( $row->pr_level ) );
3105 $this->mCascadeRestriction |= $row->pr_cascade;
3110 $this->mRestrictionsLoaded =
true;
3120 if ( $this->mRestrictionsLoaded ) {
3129 $cache->makeKey(
'page-restrictions', $id, $this->getLatestRevID() ),
3131 function ( $curValue, &$ttl,
array &$setOpts ) {
3134 $setOpts += Database::getCacheSetOptions(
$dbr );
3136 return iterator_to_array(
3138 'page_restrictions',
3139 [
'pr_type',
'pr_expiry',
'pr_level',
'pr_cascade' ],
3140 [
'pr_page' => $this->getArticleID() ],
3151 if ( $title_protection ) {
3155 if ( !$expiry || $expiry > $now ) {
3157 $this->mRestrictionsExpiry[
'create'] = $expiry;
3158 $this->mRestrictions[
'create'] =
3159 explode(
',', trim( $title_protection[
'permission'] ) );
3161 $this->mTitleProtection =
false;
3164 $this->mRestrictionsExpiry[
'create'] =
'infinity';
3166 $this->mRestrictionsLoaded =
true;
3175 $this->mRestrictionsLoaded =
false;
3176 $this->mTitleProtection =
null;
3193 $config = MediaWikiServices::getInstance()->getMainConfig();
3195 'page_restrictions',
3199 [
'LIMIT' => $config->get(
'UpdateRowsPerQuery' ) ]
3202 $dbw->
delete(
'page_restrictions', [
'pr_id' => $ids ],
$fname );
3231 # We dynamically add a member variable for the purpose of this method
3232 # alone to cache the result. There's no point in having it hanging
3233 # around uninitialized in every Title object; therefore we only add it
3234 # if needed and don't declare it statically.
3235 if ( $this->mHasSubpages ===
null ) {
3236 $this->mHasSubpages =
false;
3239 $this->mHasSubpages = (bool)$subpages->count();
3260 $conds[] =
'page_title ' .
$dbr->buildLike( $this->
getDBkey() .
'/',
$dbr->anyString() );
3262 if ( $limit > -1 ) {
3266 $dbr->select(
'page',
3267 [
'page_id',
'page_namespace',
'page_title',
'page_is_redirect' ],
3286 $n =
$dbr->selectField(
'archive',
'COUNT(*)',
3291 $n +=
$dbr->selectField(
'filearchive',
'COUNT(*)',
3292 [
'fa_name' => $this->
getDBkey() ],
3310 $deleted = (bool)
$dbr->selectField(
'archive',
'1',
3311 [
'ar_namespace' => $this->getNamespace(),
'ar_title' => $this->
getDBkey() ],
3315 $deleted = (bool)
$dbr->selectField(
'filearchive',
'1',
3316 [
'fa_name' => $this->getDBkey() ],
3333 $this->mArticleID = 0;
3337 if (
$flags & self::GAID_FOR_UPDATE ) {
3338 $oldUpdate = $linkCache->forUpdate(
true );
3339 $linkCache->clearLink( $this );
3340 $this->mArticleID = $linkCache->addLinkObj( $this );
3341 $linkCache->forUpdate( $oldUpdate );
3343 if ( -1 == $this->mArticleID ) {
3344 $this->mArticleID = $linkCache->addLinkObj( $this );
3358 if ( !is_null( $this->mRedirect ) ) {
3362 $this->mRedirect =
false;
3367 $linkCache->addLinkObj( $this ); #
in case we already had an
article ID
3368 $cached = $linkCache->getGoodLinkFieldObj( $this,
'redirect' );
3369 if ( $cached ===
null ) {
3370 # Trust LinkCache's state over our own
3371 # LinkCache is telling us that the page doesn't exist, despite there being cached
3372 # data relating to an existing page in $this->mArticleID. Updaters should clear
3373 # LinkCache as appropriate, or use $flags = Title::GAID_FOR_UPDATE. If that flag is
3374 # set, then LinkCache will definitely be up to date here, since getArticleID() forces
3375 # LinkCache to refresh its data from the master.
3376 $this->mRedirect =
false;
3380 $this->mRedirect = (bool)$cached;
3393 if ( $this->mLength != -1 ) {
3401 $linkCache->addLinkObj( $this ); #
in case we already had an
article ID
3402 $cached = $linkCache->getGoodLinkFieldObj( $this,
'length' );
3403 if ( $cached ===
null ) {
3404 # Trust LinkCache's state over our own, as for isRedirect()
3409 $this->mLength = intval( $cached );
3421 if ( !(
$flags & self::GAID_FOR_UPDATE ) && $this->mLatestID !==
false ) {
3422 return intval( $this->mLatestID );
3425 $this->mLatestID = 0;
3429 $linkCache->addLinkObj( $this ); #
in case we already had an
article ID
3430 $cached = $linkCache->getGoodLinkFieldObj( $this,
'revision' );
3431 if ( $cached ===
null ) {
3432 # Trust LinkCache's state over our own, as for isRedirect()
3433 $this->mLatestID = 0;
3437 $this->mLatestID = intval( $cached );
3454 $linkCache->clearLink( $this );
3456 if ( $newid ===
false ) {
3457 $this->mArticleID = -1;
3459 $this->mArticleID = intval( $newid );
3461 $this->mRestrictionsLoaded =
false;
3462 $this->mRestrictions = [];
3463 $this->mOldRestrictions =
false;
3464 $this->mRedirect =
null;
3465 $this->mLength = -1;
3466 $this->mLatestID =
false;
3467 $this->mContentModel =
false;
3468 $this->mEstimateRevisions =
null;
3469 $this->mPageLanguage =
false;
3470 $this->mDbPageLanguage =
false;
3471 $this->mIsBigDeletion =
null;
3476 $linkCache->clear();
3513 $this->mInterwiki =
'';
3514 $this->mFragment =
'';
3524 $titleCodec = MediaWikiServices::getInstance()->getTitleParser();
3530 $this->mInterwiki = $parts[
'interwiki'];
3531 $this->mLocalInterwiki = $parts[
'local_interwiki'];
3532 $this->mNamespace = $parts[
'namespace'];
3533 $this->mUserCaseDBKey = $parts[
'user_case_dbkey'];
3535 $this->mDbkeyform = $parts[
'dbkey'];
3536 $this->mUrlform =
wfUrlencode( $this->mDbkeyform );
3537 $this->mTextform = strtr( $this->mDbkeyform,
'_',
' ' );
3539 # We already know that some pages won't be in the database!
3541 $this->mArticleID = 0;
3568 self::getSelectFields(),
3570 "{$prefix}_from=page_id",
3572 "{$prefix}_title" => $this->
getDBkey() ],
3578 if (
$res->numRows() ) {
3580 foreach (
$res as $row ) {
3581 $titleObj =
self::makeTitle( $row->page_namespace, $row->page_title );
3583 $linkCache->addGoodLinkObjFromRow( $titleObj, $row );
3584 $retVal[] = $titleObj;
3620 # If the page doesn't exist; there can't be any link from this page
3627 $blNamespace =
"{$prefix}_namespace";
3628 $blTitle =
"{$prefix}_title";
3633 [ $blNamespace, $blTitle ],
3636 [
"{$prefix}_from" => $id ],
3641 [
"page_namespace=$blNamespace",
"page_title=$blTitle" ]
3647 foreach (
$res as $row ) {
3648 if ( $row->page_id ) {
3652 $linkCache->addBadLinkObj( $titleObj );
3654 $retVal[] = $titleObj;
3684 # All links from article ID 0 are false positives
3690 [
'page',
'pagelinks' ],
3691 [
'pl_namespace',
'pl_title' ],
3694 'page_namespace IS NULL'
3700 [
'pl_namespace=page_namespace',
'pl_title=page_title' ]
3706 foreach (
$res as $row ) {
3725 if ( $pageLang->hasVariants() ) {
3726 $variants = $pageLang->getVariants();
3727 foreach ( $variants
as $vCode ) {
3734 $urls[] = $this->
getInternalURL(
'action=raw&ctype=text/javascript' );
3739 Hooks::run(
'TitleSquidURLs', [ $this, &$urls ] );
3773 if ( !( $nt instanceof
Title ) ) {
3776 return [ [
'badtitletext' ] ];
3780 $errors = $mp->isValidMove()->getErrorsArray();
3784 $mp->checkPermissions(
$wgUser, $reason )->getErrorsArray()
3788 return $errors ?:
true;
3803 $destFile->load( File::READ_LATEST );
3804 if ( !
$wgUser->isAllowed(
'reupload-shared' )
3807 $errors[] = [
'file-exists-sharedrepo' ];
3826 public function moveTo( &$nt, $auth =
true, $reason =
'', $createRedirect =
true,
3827 array $changeTags = []
3831 if ( is_array( $err ) ) {
3833 $wgUser->spreadAnyEditBlock();
3837 if ( $auth && !
$wgUser->isAllowed(
'suppressredirect' ) ) {
3838 $createRedirect =
true;
3842 $status = $mp->move(
$wgUser, $reason, $createRedirect, $changeTags );
3846 return $status->getErrorsArray();
3864 public function moveSubpages( $nt, $auth =
true, $reason =
'', $createRedirect =
true,
3865 array $changeTags = []
3869 if ( !$this->
userCan(
'move-subpages' ) ) {
3871 [
'cant-move-subpages' ],
3886 $subpages = $this->
getSubpages( $wgMaximumMovedPages + 1 );
3889 foreach ( $subpages
as $oldSubpage ) {
3892 $retval[$oldSubpage->getPrefixedText()] = [
3901 if ( $oldSubpage->getArticleID() == $this->
getArticleID()
3902 || $oldSubpage->getArticleID() == $nt->getArticleID()
3908 $newPageName = preg_replace(
3909 '#^' . preg_quote( $this->
getDBkey(),
'#' ) .
'#',
3911 $oldSubpage->getDBkey() );
3912 if ( $oldSubpage->isTalkPage() ) {
3913 $newNs = $nt->getTalkPage()->getNamespace();
3915 $newNs = $nt->getSubjectPage()->getNamespace();
3917 # T16385: we need makeTitleSafe because the new page names may
3918 # be longer than 255 characters.
3921 $success = $oldSubpage->moveTo( $newSubpage, $auth, $reason, $createRedirect, $changeTags );
3923 $retval[$oldSubpage->getPrefixedText()] = $newSubpage->getPrefixedText();
3943 $fields = [
'page_is_redirect',
'page_latest',
'page_id' ];
3945 $fields[] =
'page_content_model';
3948 $row = $dbw->selectRow(
'page',
3954 # Cache some fields we may want
3955 $this->mArticleID = $row ? intval( $row->page_id ) : 0;
3956 $this->mRedirect = $row ? (bool)$row->page_is_redirect :
false;
3957 $this->mLatestID = $row ? intval( $row->page_latest ) :
false;
3958 $this->mContentModel = $row && isset( $row->page_content_model )
3959 ? strval( $row->page_content_model )
3962 if ( !$this->mRedirect ) {
3965 # Does the article have a history?
3966 $row = $dbw->selectField( [
'page',
'revision' ],
3971 'page_latest != rev_id'
3976 # Return true if there was no history
3977 return ( $row ===
false );
3989 # Is it an existing file?
3990 if ( $nt->getNamespace() ==
NS_FILE ) {
3992 $file->load( File::READ_LATEST );
3993 if ( $file->exists() ) {
3994 wfDebug( __METHOD__ .
": file exists\n" );
3998 # Is it a redirect with no history?
3999 if ( !$nt->isSingleRevRedirect() ) {
4000 wfDebug( __METHOD__ .
": not a one-rev redirect\n" );
4003 # Get the article text
4005 if ( !is_object(
$rev ) ) {
4008 $content =
$rev->getContent();
4009 # Does the redirect point to the source?
4010 # Or is it a broken self-redirect, usually caused by namespace collisions?
4011 $redirTitle = $content ? $content->getRedirectTarget() :
null;
4013 if ( $redirTitle ) {
4015 $redirTitle->getPrefixedDBkey() != $nt->getPrefixedDBkey() ) {
4016 wfDebug( __METHOD__ .
": redirect points to other page\n" );
4022 # Fail safe (not a redirect after all. strange.)
4023 wfDebug( __METHOD__ .
": failsafe: database sais " . $nt->getPrefixedDBkey() .
4024 " is a redirect, but it doesn't contain a valid redirect.\n" );
4043 if ( $titleKey === 0 ) {
4052 [
'cl_from' => $titleKey ],
4056 if (
$res->numRows() > 0 ) {
4057 foreach (
$res as $row ) {
4076 foreach ( $parents
as $parent => $current ) {
4077 if ( array_key_exists( $parent, $children ) ) {
4078 # Circular reference
4079 $stack[$parent] = [];
4083 $stack[$parent] = $nt->getParentCategoryTree( $children + [ $parent => 1 ] );
4099 if ( $this->mArticleID > 0 ) {
4115 $revId = (int)$revId;
4116 if (
$dir ===
'next' ) {
4119 } elseif (
$dir ===
'prev' ) {
4123 throw new InvalidArgumentException(
'$dir must be "next" or "prev"' );
4126 if (
$flags & self::GAID_FOR_UPDATE ) {
4134 $ts = $db->selectField(
'revision',
'rev_timestamp', [
'rev_id' => $revId ], __METHOD__ );
4135 if ( $ts ===
false ) {
4136 $ts = $db->selectField(
'archive',
'ar_timestamp', [
'ar_rev_id' => $revId ], __METHOD__ );
4137 if ( $ts ===
false ) {
4142 $ts = $db->addQuotes( $ts );
4144 $revId = $db->selectField(
'revision',
'rev_id',
4147 "rev_timestamp $op $ts OR (rev_timestamp = $ts AND rev_id $op $revId)"
4151 'ORDER BY' =>
"rev_timestamp $sort, rev_id $sort",
4152 'IGNORE INDEX' =>
'rev_timestamp',
4156 if ( $revId ===
false ) {
4159 return intval( $revId );
4196 [
'rev_page' => $pageId ],
4199 'ORDER BY' =>
'rev_timestamp ASC, rev_id ASC',
4200 'IGNORE INDEX' =>
'rev_timestamp',
4218 return $rev ?
$rev->getTimestamp() :
null;
4228 return (
bool)
$dbr->selectField(
'page',
'page_is_new', $this->
pageCond(), __METHOD__ );
4243 if ( $this->mIsBigDeletion ===
null ) {
4246 $revCount =
$dbr->selectRowCount(
4266 if ( !$this->
exists() ) {
4270 if ( $this->mEstimateRevisions ===
null ) {
4272 $this->mEstimateRevisions =
$dbr->estimateRowCount(
'revision',
'*',
4289 if ( !( $old instanceof
Revision ) ) {
4292 if ( !( $new instanceof
Revision ) ) {
4295 if ( !$old || !$new ) {
4301 'rev_timestamp > ' .
$dbr->addQuotes(
$dbr->timestamp( $old->getTimestamp() ) ),
4302 'rev_timestamp < ' .
$dbr->addQuotes(
$dbr->timestamp( $new->getTimestamp() ) )
4304 if ( $max !==
null ) {
4305 return $dbr->selectRowCount(
'revision',
'1',
4308 [
'LIMIT' => $max + 1 ]
4311 return (
int)
$dbr->selectField(
'revision',
'count(*)', $conds, __METHOD__ );
4332 if ( !( $old instanceof
Revision ) ) {
4335 if ( !( $new instanceof
Revision ) ) {
4341 if ( !$old || !$new ) {
4348 if ( in_array(
'include_old',
$options ) ) {
4351 if ( in_array(
'include_new',
$options ) ) {
4354 if ( in_array(
'include_both',
$options ) ) {
4359 if ( $old->getId() === $new->getId() ) {
4360 return ( $old_cmp ===
'>' && $new_cmp ===
'<' ) ?
4363 } elseif ( $old->getId() === $new->getParentId() ) {
4364 if ( $old_cmp ===
'>=' && $new_cmp ===
'<=' ) {
4369 } elseif ( $old_cmp ===
'>=' ) {
4371 } elseif ( $new_cmp ===
'<=' ) {
4377 $res =
$dbr->select(
'revision',
'DISTINCT rev_user_text',
4380 "rev_timestamp $old_cmp " .
$dbr->addQuotes(
$dbr->timestamp( $old->getTimestamp() ) ),
4381 "rev_timestamp $new_cmp " .
$dbr->addQuotes(
$dbr->timestamp( $new->getTimestamp() ) )
4383 [
'LIMIT' => $limit + 1 ]
4385 foreach (
$res as $row ) {
4386 $authors[] = $row->rev_user_text;
4407 return $authors ?
count( $authors ) : 0;
4448 Hooks::run(
'TitleExists', [ $this, &$exists ] );
4481 Hooks::run(
'TitleIsAlwaysKnown', [ $this, &$isKnown ] );
4483 if ( !is_null( $isKnown ) ) {
4491 switch ( $this->mNamespace ) {
4501 return $this->mDbkeyform ==
'';
4545 return $message->exists();
4564 $wgContLang->lcfirst( $this->getText() )
4568 if ( $message->exists() ) {
4569 return $message->plain();
4584 } elseif ( $this->mArticleID === 0 ) {
4589 $dbw->onTransactionPreCommitOrIdle(
function () {
4599 $dbTimestamp = $dbw->
timestamp( $purgeTime ?: time() );
4602 [
'page_touched' => $dbTimestamp ],
4603 $conds + [
'page_touched < ' . $dbw->
addQuotes( $dbTimestamp ) ],
4606 MediaWikiServices::getInstance()->getLinkCache()->invalidateTitle( $this );
4634 if ( $db ===
null ) {
4637 $touched = $db->selectField(
'page',
'page_touched', $this->
pageCond(), __METHOD__ );
4655 $uid =
$user->getId();
4660 if ( array_key_exists( $uid, $this->mNotificationTimestamp ) ) {
4661 return $this->mNotificationTimestamp[$uid];
4664 if (
count( $this->mNotificationTimestamp ) >= self::CACHE_MAX ) {
4665 $this->mNotificationTimestamp = [];
4668 $store = MediaWikiServices::getInstance()->getWatchedItemStore();
4669 $watchedItem = $store->getWatchedItem(
$user, $this );
4670 if ( $watchedItem ) {
4671 $this->mNotificationTimestamp[$uid] = $watchedItem->getNotificationTimestamp();
4673 $this->mNotificationTimestamp[$uid] =
false;
4676 return $this->mNotificationTimestamp[$uid];
4700 if ( $namespaceKey ==
'' ) {
4701 $namespaceKey =
'main';
4704 if ( $namespaceKey ==
'file' ) {
4705 $namespaceKey =
'image';
4707 return $prepend . $namespaceKey;
4728 $where[] =
'rd_interwiki = ' .
$dbr->addQuotes(
'' ) .
' OR rd_interwiki IS NULL';
4730 if ( !is_null( $ns ) ) {
4731 $where[
'page_namespace'] = $ns;
4735 [
'redirect',
'page' ],
4736 [
'page_namespace',
'page_title' ],
4741 foreach (
$res as $row ) {
4757 if ( $this->
isSpecial(
'Userlogout' ) ) {
4761 foreach ( $wgInvalidRedirectTargets
as $target ) {
4792 return !in_array( $this->mNamespace, $bannedNamespaces );
4806 $unprefixed = $this->
getText();
4812 Hooks::run(
'GetDefaultSortkey', [ $this, &$unprefixed ] );
4813 if ( $prefix !==
'' ) {
4814 # Separate with a line feed, so the unprefixed part is only used as
4815 # a tiebreaker when two pages have the exact same prefix.
4816 # In UCA, tab is the only character that can sort above LF
4817 # so we strip both of them from the original prefix.
4818 $prefix = strtr( $prefix,
"\n\t",
' ' );
4819 return "$prefix\n$unprefixed";
4838 $linkCache->addLinkObj( $this );
4839 $this->mDbPageLanguage = $linkCache->getGoodLinkFieldObj( $this,
'lang' );
4862 if ( $dbPageLanguage ) {
4866 if ( !$this->mPageLanguage || $this->mPageLanguage[1] !==
$wgLanguageCode ) {
4874 $langObj = $contentHandler->getPageLanguage( $this );
4897 $variant =
$wgLang->getPreferredVariant();
4898 if (
$wgLang->getCode() !== $variant ) {
4907 if ( $dbPageLanguage ) {
4909 $variant = $pageLang->getPreferredVariant();
4910 if ( $pageLang->getCode() !== $variant ) {
4921 $pageLang = $contentHandler->getPageViewLanguage( $this );
4939 $editnotice_ns =
'editnotice-' . $this->
getNamespace();
4941 if ( $msg->exists() ) {
4942 $html = $msg->parseAsBlock();
4944 if ( trim(
$html ) !==
'' ) {
4949 'mw-editnotice-namespace',
4950 Sanitizer::escapeClass(
"mw-$editnotice_ns" )
4959 $parts = explode(
'/', $this->
getDBkey() );
4960 $editnotice_base = $editnotice_ns;
4961 while (
count( $parts ) > 0 ) {
4962 $editnotice_base .=
'-' . array_shift( $parts );
4964 if ( $msg->exists() ) {
4965 $html = $msg->parseAsBlock();
4966 if ( trim(
$html ) !==
'' ) {
4971 'mw-editnotice-base',
4972 Sanitizer::escapeClass(
"mw-$editnotice_base" )
4981 $editnoticeText = $editnotice_ns .
'-' . strtr( $this->
getDBkey(),
'/',
'-' );
4983 if ( $msg->exists() ) {
4984 $html = $msg->parseAsBlock();
4985 if ( trim(
$html ) !==
'' ) {
4990 'mw-editnotice-page',
4991 Sanitizer::escapeClass(
"mw-$editnoticeText" )
4999 Hooks::run(
'TitleGetEditNotices', [ $this, $oldid, &$notices ] );
5014 'mDefaultNamespace',
5019 $this->mArticleID = ( $this->mNamespace >= 0 ) ? -1 : 0;
5020 $this->mUrlform =
wfUrlencode( $this->mDbkeyform );
5021 $this->mTextform = strtr( $this->mDbkeyform,
'_',
' ' );
bool $mLocalInterwiki
Was this Title created from a string with a local interwiki prefix?
array $mRestrictions
Array of groups allowed to edit this article.
canHaveTalkPage()
Can this title have a corresponding talk page?
getTitleProtection()
Is this title subject to title protection? Title protection is the one applied against creation of su...
canUseNoindex()
Whether the magic words INDEX and NOINDEX function for this page.
inNamespaces()
Returns true if the title is inside one of the specified namespaces.
getLocalURL( $query='', $query2=false)
Get a URL with no fragment or server name (relative URL) from a Title object.
isSemiProtected( $action='edit')
Is this page "semi-protected" - the only protection levels are listed in $wgSemiprotectedRestrictionL...
bool $mHasCascadingRestrictions
Are cascading restrictions in effect on this page?
isNamespaceProtected(User $user)
Determines if $user is unable to edit this page because it has been protected by $wgNamespaceProtecti...
getTalkNsText()
Get the namespace text of the talk page.
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 account $user
getSubpageText()
Get the lowest-level subpage name, i.e.
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
static subjectEquals( $ns1, $ns2)
Returns whether the specified namespaces share the same subject.
getNextRevisionID( $revId, $flags=0)
Get the revision ID of the next revision.
isBigDeletion()
Check whether the number of revisions of this page surpasses $wgDeleteRevisionsLimit.
areCascadeProtectionSourcesLoaded( $getPages=true)
Determines whether cascading protection sources have already been loaded from the database.
userCan( $action, $user=null, $rigor='secure')
Can $user perform $action on this page?
static getFilteredRestrictionTypes( $exists=true)
Get a filtered list of all restriction types supported by this wiki.
wfMergeErrorArrays()
Merge arrays in the style of getUserPermissionsErrors, with duplicate removal e.g.
static makeName( $ns, $title, $fragment='', $interwiki='', $canonicalNamespace=false)
Make a prefixed DB key from a DB key and a namespace index.
processing should stop and the error should be shown to the user * false
getInternalURL( $query='', $query2=false)
Get the URL form for an internal link.
checkPageRestrictions( $action, $user, $errors, $rigor, $short)
Check against page_restrictions table requirements on this page.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
getFragment()
Get the Title fragment (i.e.
static isTalk( $index)
Is the given namespace a talk namespace?
$wgExemptFromUserRobotsControl
An array of namespace keys in which the INDEX/__NOINDEX__ magic words will not function,...
Simple store for keeping values in an associative array for the current process.
getTalkPageIfDefined()
Get a Title object associated with the talk page of this article, if such a talk page can exist.
inNamespace( $ns)
Returns true if the title is inside the specified namespace.
bool $mForcedContentModel
If a content model was forced via setContentModel() this will be true to avoid having other code path...
static newFromResult( $res)
isMovable()
Would anybody with sufficient privileges be able to move this page? Some pages just aren't movable.
$wgMaximumMovedPages
Maximum number of pages to move at once when moving subpages with a page.
isJsSubpage()
Is this a .js subpage of a user page?
wasLocalInterwiki()
Was this a local interwiki link?
if(!isset( $args[0])) $lang
isWikitextPage()
Does that page contain wikitext, or it is JS, CSS or whatever?
getBacklinkCache()
Get a backlink cache object.
static newFatalPermissionDeniedStatus( $permission)
Factory function for fatal permission-denied errors.
getPartialURL()
Get the URL-encoded form of the main part.
$wgLegalTitleChars
Allowed title characters – regex character class Don't change this unless you know what you're doing.
bool $mIsBigDeletion
Would deleting this page be a big deletion?
static clearCaches()
Text form (spaces not underscores) of the main part.
Deferrable Update for closure/callback updates that should use auto-commit mode.
moveSubpages( $nt, $auth=true, $reason='', $createRedirect=true, array $changeTags=[])
Move this page's subpages to be subpages of $nt.
getTitleValue()
Get a TitleValue object representing this Title.
estimateRevisionCount()
Get the approximate revision count of this page.
countRevisionsBetween( $old, $new, $max=null)
Get the number of revisions between the given revision.
getPrefixedDBkey()
Get the prefixed database key form.
getDbPageLanguageCode()
Returns the page language code saved in the database, if $wgPageLanguageUseDB is set to true in Local...
$wgWhitelistReadRegexp
Pages anonymous user may see, set as an array of regular expressions.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
checkActionPermissions( $action, $user, $errors, $rigor, $short)
Check action permissions not already checked in checkQuickPermissions.
$wgScript
The URL path to index.php.
string $mUserCaseDBKey
Database key with the initial letter in the case specified by the user.
bool $mHasSubpages
Whether a page has any subpages.
getTalkPage()
Get a Title object associated with the talk page of this article.
static newMainPage()
Create a new Title for the Main Page.
getNotificationTimestamp( $user=null)
Get the timestamp when this page was updated since the user last saw it.
getParentCategoryTree( $children=[])
Get a tree of parent categories.
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:Array with elements of the form "language:title" in the order that they will be output. & $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':DEPRECATED! Use HtmlPageLinkRendererBegin instead. 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
static fixUrlQueryArgs( $query, $query2=false)
Helper to fix up the get{Canonical,Full,Link,Local,Internal}URL args get{Canonical,...
namespace and then decline to actually register it & $namespaces
checkSpecialsAndNSPermissions( $action, $user, $errors, $rigor, $short)
Check permissions on special pages & namespaces.
fixSpecialName()
If the Title refers to a special page alias which is not the local default, resolve the alias,...
static getInterwikiLookup()
B/C kludge: provide an InterwikiLookup for use by Title.
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action or null $user:User who performed the tagging when the tagging is subsequent to the action or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). '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
touchLinks()
Update page_touched timestamps and send CDN purge messages for pages linking to this title.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
wfUrlencode( $s)
We want some things to be included as literal characters in our title URLs for prettiness,...
getPrefixedText()
Get the prefixed title with spaces.
getTransWikiID()
Returns the DB name of the distant wiki which owns the object.
resultToError( $errors, $result)
Add the resulting error code to the errors array.
isCssJsSubpage()
Is this a .css or .js subpage of a user page?
static addUpdate(DeferrableUpdate $update, $stage=self::POSTSEND)
Add an update to the deferred list to be run later by execute()
getArticleID( $flags=0)
Get the article ID for this Title from the link cache, adding it if necessary.
static escapeRegexReplacement( $string)
Escape a string to make it suitable for inclusion in a preg_replace() replacement parameter.
if(!defined( 'MEDIAWIKI')) $fname
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined.
getLinkURL( $query='', $query2=false, $proto=false)
Get a URL that's the simplest URL that will be valid to link, locally, to the current Title.
secureAndSplit()
Secure and split - main initialisation function for this object.
quickUserCan( $action, $user=null)
Can $user perform $action on this page? This skips potentially expensive cascading permission checks ...
isTalkPage()
Is this a talk page of some sort?
wfReadOnly()
Check whether the wiki is in read-only mode.
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
static getForTitle(Title $title)
Returns the appropriate ContentHandler singleton for the given title.
isExternal()
Is this Title interwiki?
Allows to change the fields on the form that will be generated $name
loadRestrictionsFromRows( $rows, $oldFashionedRestrictions=null)
Compiles list of active page restrictions from both page table (pre 1.10) and page_restrictions table...
getDefaultMessageText()
Get the default message text or false if the message doesn't exist.
const CONTENT_MODEL_WIKITEXT
hasSourceText()
Does this page have source text?
loadFromRow( $row)
Load Title object fields from a DB row.
static groupHasPermission( $group, $role)
Check, if the given group has the given permission.
checkCSSandJSPermissions( $action, $user, $errors, $rigor, $short)
Check CSS/JS sub-page permissions.
checkReadPermissions( $action, $user, $errors, $rigor, $short)
Check that the user is allowed to read this page.
resetArticleID( $newid)
This clears some fields in this object, and clears any associated keys in the "bad links" section of ...
setFragment( $fragment)
Set the fragment for this title.
static getContentNamespaces()
Get a list of all namespace indices which are considered to contain content.
$wgContentHandlerUseDB
Set to false to disable use of the database fields introduced by the ContentHandler facility.
static convertByteClassToUnicodeClass( $byteClass)
Utility method for converting a character sequence from bytes to Unicode.
__wakeup()
Text form (spaces not underscores) of the main part.
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
getParentCategories()
Get categories to which this Title belongs and return an array of categories' names.
getLinksTo( $options=[], $table='pagelinks', $prefix='pl')
Get an array of Title objects linking to this Title Also stores the IDs in the link cache.
bool string $mContentModel
ID of the page's content model, i.e.
getNsText()
Get the namespace text.
string $mDbkeyform
Main part with underscores.
string $mUrlform
URL-encoded form of the main part.
$wgWhitelistRead
Pages anonymous user may see, set as an array of pages titles.
getLinksFrom( $options=[], $table='pagelinks', $prefix='pl')
Get an array of Title objects linked from this Title Also stores the IDs in the link cache.
string bool $mOldRestrictions
Text form (spaces not underscores) of the main part.
getSkinFromCssJsSubpage()
Trim down a .css or .js subpage title to get the corresponding skin name.
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
set( $key, $value, $exptime=0, $flags=0)
Set an item.
isCascadeProtected()
Cascading protection: Return true if cascading restrictions apply to this page, false if not.
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target.
isValidMoveTarget( $nt)
Checks if $this can be moved to a given Title.
null for the 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
getUserPermissionsErrors( $action, $user, $rigor='secure', $ignoreErrors=[])
Can $user perform $action on this page?
getCdnUrls()
Get a list of URLs to purge from the CDN cache when this page changes.
getOtherPage()
Get the other title for this page, if this is a subject page get the talk page, if it is a subject pa...
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an article
static getDefaultModelFor(Title $title)
Returns the name of the default content model to be used for the page with the given title.
getDBkey()
Get the main part with underscores.
static nameOf( $id)
Get the prefixed DB key associated with an ID.
string bool null $mDbPageLanguage
The page language code from the database, null if not saved in the database or false if not loaded,...
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
isSpecial( $name)
Returns true if this title resolves to the named special page.
static getTitleFormatter()
B/C kludge: provide a TitleParser for use by Title.
namespace and then decline to actually register it file or subcat img or subcat $title
checkCascadingSourcesRestrictions( $action, $user, $errors, $rigor, $short)
Check restrictions on cascading pages.
isMainPage()
Is this the mainpage?
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
moveTo(&$nt, $auth=true, $reason='', $createRedirect=true, array $changeTags=[])
Move a title to a new location.
getSubpage( $text)
Get the title for a subpage of the current page.
getBaseTitle()
Get the base page name title, i.e.
getNamespace()
Get the namespace index, i.e.
static get(Title $title)
Create a new BacklinkCache or reuse any existing one.
static newFromRow( $row)
Make a Title object from a DB row.
isConversionTable()
Is this a conversion table for the LanguageConverter?
Handles the backend logic of moving a page from one title to another.
static HashBagOStuff $titleCache
static selectFields()
Return the list of revision fields that should be selected to create a new page.
static newFromLinkTarget(LinkTarget $linkTarget)
Create a new Title from a LinkTarget.
isProtected( $action='')
Does the title correspond to a protected article?
flushRestrictions()
Flush the protection cache in this object and force reload from the database.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
getCategorySortkey( $prefix='')
Returns the raw sort key to be used for categories, with the specified prefix.
getInterwiki()
Get the interwiki prefix.
null for the wiki Added in
isValidRedirectTarget()
Check if this Title is a valid redirect target.
deleteTitleProtection()
Remove any title protection due to page existing.
static isContent( $index)
Does this namespace contain content, for the purposes of calculating statistics, etc?
getBrokenLinksFrom()
Get an array of Title objects referring to non-existent articles linked from this page.
missingPermissionError( $action, $short)
Get a description array when the user doesn't have the right to perform $action (i....
array $mCascadeSources
Where are the cascading restrictions coming from on this page?
getSubjectPage()
Get a title object associated with the subject page of this talk page.
wfGetLangObj( $langcode=false)
Return a Language object from $langcode.
$wgInvalidRedirectTargets
Array of invalid page redirect targets.
getFullText()
Get the prefixed title with spaces, plus any fragment (part beginning with '#')
static hasTalkNamespace( $index)
Does this namespace ever have a talk namespace?
static hasSubpages( $index)
Does the namespace allow subpages?
hasFragment()
Check if a Title fragment is set.
isCssSubpage()
Is this a .css subpage of a user page?
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as $wgLang
do that in ParserLimitReportFormat instead $parser
getRedirectsHere( $ns=null)
Get all extant redirects to this Title.
static isMovable( $index)
Can pages in the given namespace be moved?
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
static exists( $name)
Check if a given name exist as a special page or as a special page alias.
when a variable name is used in a it is silently declared as a new masking the global
string $mInterwiki
Interwiki prefix.
bool $mCascadeRestriction
Cascade restrictions on this page to included templates and images?
equals(Title $title)
Compare with another title.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
getRootText()
Get the root page name text without a namespace, i.e.
$wgNamespaceProtection
Set the minimum permissions required to edit pages in each namespace.
canExist()
Is this in a namespace that allows actual pages?
$wgDeleteRevisionsLimit
Optional to restrict deletion of pages with higher revision counts to users with the 'bigdelete' perm...
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
getCanonicalURL( $query='', $query2=false)
Get the URL for a canonical link, for use in things like IRC and e-mail notifications.
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
static singleton()
Get the signleton instance of this class.
null $mRedirect
Is the article at this title a redirect?
createFragmentTarget( $fragment)
Creates a new Title for a different fragment of the same page.
int $mNamespace
Namespace index, i.e.
getDefaultNamespace()
Get the default namespace index, for when there is no namespace.
static newFromTextThrow( $text, $defaultNamespace=NS_MAIN)
Like Title::newFromText(), but throws MalformedTitleException when the title is invalid,...
bool $wgPageLanguageUseDB
Enable page language feature Allows setting page language in database.
static newFromTitleValue(TitleValue $titleValue)
Create a new Title from a TitleValue.
isValid()
Returns true if the title is valid, false if it is invalid.
bool $mPageLanguage
The (string) language code of the page's language and content code.
Deferrable Update for closure/callback updates via IDatabase::doAtomicSection()
Class to invalidate the HTML cache of all the pages linking to a given title.
getPrefixedURL()
Get a URL-encoded title (not an actual URL) including interwiki.
static makeTitleSafe( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
__toString()
Return a string representation of this title.
static whoIs( $id)
Get the username corresponding to a given user ID.
getTemplateLinksTo( $options=[])
Get an array of Title objects using this Title as a template Also stores the IDs in the link cache.
areRestrictionsCascading()
Returns cascading restrictions for the current article.
Handles purging appropriate CDN URLs given a title (or titles)
getLatestRevID( $flags=0)
What is the page_latest field for this page?
areRestrictionsLoaded()
Accessor for mRestrictionsLoaded.
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 account incomplete not yet checked for validity & $retval
getSubpages( $limit=-1)
Get all subpages of this page.
isSingleRevRedirect()
Checks if this page is just a one-rev redirect.
$wgServer
URL of the server.
const GAID_FOR_UPDATE
Used to be GAID_FOR_UPDATE define.
getPageViewLanguage()
Get the language in which the content of this page is written when viewed by user.
static newFromDBkey( $key)
Create a new Title from a prefixed DB key.
$wgLanguageCode
Site language code.
isSubpage()
Is this a subpage?
hasContentModel( $id)
Convenience method for checking a title's content model name.
getRestrictionExpiry( $action)
Get the expiry time for the restriction against a given action.
static newFromURL( $url)
THIS IS NOT THE FUNCTION YOU WANT.
isValidMoveOperation(&$nt, $auth=true, $reason='')
Check whether a given move operation would be valid.
$wgBlockDisablesLogin
If true, blocked users will not be allowed to login.
array $mRestrictionsExpiry
When do the restrictions on this page expire?
static resolveAlias( $alias)
Given a special page name with a possible subpage, return an array where the first element is the spe...
get( $key, $flags=0, $oldFlags=null)
Get an item with the given key.
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
static getLocalNameFor( $name, $subpage=false)
Get the local name for a specified canonical name.
TitleValue $mTitleValue
A corresponding TitleValue object.
isSubpageOf(Title $title)
Check if this title is a subpage of another title.
isLocal()
Determine whether the object refers to a page within this project (either this wiki or a wiki with a ...
string $mFragment
Title fragment (i.e.
getContentModel( $flags=0)
Get the page's content model id, see the CONTENT_MODEL_XXX constants.
array $mNotificationTimestamp
Associative array of user ID -> timestamp/false.
static exists( $index)
Returns whether the specified namespace exists.
static newFromIDs( $ids)
Make an array of titles from an array of IDs.
checkQuickPermissions( $action, $user, $errors, $rigor, $short)
Permissions checks that fail most often, and which are easiest to test.
static getMain()
Static methods.
prefix( $name)
Prefix some arbitrary text with the namespace or interwiki prefix of this object.
getNamespaceKey( $prepend='nstab-')
Generate strings used for xml 'id' names in monobook tabs.
getEditURL()
Get the edit URL for this Title.
getFullURL( $query='', $query2=false, $proto=PROTO_RELATIVE)
Get a real URL referring to this title, with interwiki link and fragment.
wfFindFile( $title, $options=[])
Find a file.
$wgEmailConfirmToEdit
Should editors be required to have a validated e-mail address before being allowed to edit?
isKnown()
Does this title refer to a page that can (or might) be meaningfully viewed? In particular,...
validateFileMoveOperation( $nt)
Check if the requested move target is a valid file move target.
getFirstRevision( $flags=0)
Get the first revision of the page.
getAllRestrictions()
Accessor/initialisation for mRestrictions.
getEarliestRevTime( $flags=0)
Get the oldest revision timestamp of this page.
static isEveryoneAllowed( $right)
Check if all users may be assumed to have the given permission.
Represents a title within MediaWiki.
$mCascadingRestrictions
Caching the results of getCascadeProtectionSources.
canTalk()
Can this title have a corresponding talk page?
getCascadeProtectionSources( $getPages=true)
Cascading protection: Get the source of any cascading restrictions on this page.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
$wgSemiprotectedRestrictionLevels
Restriction levels that should be considered "semiprotected".
getRestrictionTypes()
Returns restriction types for the current Title.
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 & $options
getTitleProtectionInternal()
Fetch title protection settings.
getTemplateLinksFrom( $options=[])
Get an array of Title objects used on this Title as a template Also stores the IDs in the link cache.
static getMainWANInstance()
Get the main WAN cache object.
isRedirect( $flags=0)
Is this an article that is a redirect page? Uses link cache, adding it if necessary.
getUserPermissionsErrorsInternal( $action, $user, $rigor='secure', $short=false)
Can $user perform $action on this page? This is an internal function, with multiple levels of checks ...
static equals( $ns1, $ns2)
Returns whether the specified namespaces are the same namespace.
int $mArticleID
Article ID, fetched from the link cache on demand.
isDeleted()
Is there a version of this page in the deletion archive?
static capitalize( $text, $ns=NS_MAIN)
Capitalize a text string for a title if it belongs to a namespace that capitalizes.
int $mDefaultNamespace
Namespace index when there is no namespace.
int $mLength
The page length, 0 for special pages.
int $mEstimateRevisions
Estimated number of revisions; null of not loaded.
hasSubjectNamespace( $ns)
Returns true if the title has the same subject namespace as the namespace specified.
static singleton()
Get an instance of this class.
isSpecialPage()
Returns true if this is a special page.
purgeSquid()
Purge all applicable CDN URLs.
getPreviousRevisionID( $revId, $flags=0)
Get the revision ID of the previous revision.
The TitleArray class only exists to provide the newFromResult method at pre- sent.
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
getPageLanguage()
Get the language in which the content of this page is written in wikitext.
const CACHE_MAX
Title::newFromText maintains a cache to avoid expensive re-normalization of commonly used titles.
getEditNotices( $oldid=0)
Get a list of rendered edit notices for this page.
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
getTouched( $db=null)
Get the last touched timestamp.
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
static isCapitalized( $index)
Is the namespace first-letter capitalized?
isCssOrJsPage()
Could this page contain custom CSS or JavaScript for the global UI.
$wgRestrictionLevels
Rights which can be required for each protection level (via action=protect)
getFragmentForURL()
Get the fragment in URL form, including the "#" character if there is one.
exists( $flags=0)
Check if page exists.
isAlwaysKnown()
Should links to this title be shown as potentially viewable (i.e.
isDeletedQuick()
Is there a version of this page in the deletion archive?
getSubpageUrlForm()
Get a URL-encoded form of the subpage text.
static factory( $code)
Get a cached or new language object for a given language code.
isNewPage()
Check if this is a new page.
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 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 "<
$wgRestrictionTypes
Set of available actions that can be restricted via action=protect You probably shouldn't change this...
setContentModel( $model)
Set a proposed content model for the page for permissions checking.
const CONTENT_MODEL_JAVASCRIPT
static getTitleInvalidRegex()
Returns a simple regex that will match on characters and sequences invalid in titles.
static compare(LinkTarget $a, LinkTarget $b)
Callback for usort() to do title sorts by (namespace, title)
countAuthorsBetween( $old, $new, $limit, $options=[])
Get the number of authors between the given revisions or revision IDs.
static legalChars()
Get a regex character class describing the legal characters in a link.
static isWatchable( $index)
Can pages in a namespace be watched?
invalidateCache( $purgeTime=null)
Updates page_touched for this page; called from LinksUpdate.php.
if(! $wgDBerrorLogTZ) $wgRequest
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 MediaWikiServices
isTrans()
Determine whether the object refers to a page within this project and is transcludable.
getRestrictions( $action)
Accessor/initialisation for mRestrictions.
static selectFields()
Return the list of revision fields that should be selected to create a new revision.
static getTalk( $index)
Get the talk namespace index for a given namespace.
static getSubject( $index)
Get the subject namespace index for a given namespace Special namespaces (NS_MEDIA,...
checkPermissionHooks( $action, $user, $errors, $rigor, $short)
Check various permission hooks.
static invalidateModuleCache(Title $title, Revision $old=null, Revision $new=null, $wikiId)
Clear the preloadTitleInfo() cache for all wiki modules on this wiki on page change if it was a JS or...
isContentPage()
Is this Title in a namespace which contains content? In other words, is this a content page,...
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
wfLocalFile( $title)
Get an object referring to a locally registered file.
static newFromID( $id, $flags=0)
Create a new Title from an article ID.
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
$wgVariantArticlePath
Like $wgArticlePath, but on multi-variant wikis, this provides a path format that describes which par...
getUserCaseDBKey()
Get the DB key with the initial letter case as specified by the user.
static getSelectFields()
Returns a list of fields that are to be selected for initializing Title objects or LinkCache entries.
hasSubpages()
Does this have subpages? (Warning, usually requires an extra DB query.)
static escapeFragmentForURL( $fragment)
Escape a text fragment, say from a link, for a URL.
getBaseText()
Get the base page name without a namespace, i.e.
pageCond()
Get an associative array for selecting this title from the "page" table.
getText()
Get the text form (spaces not underscores) of the main part.
static getCanonicalName( $index)
Returns the canonical (English) name for a given index.
string $mTextform
Text form (spaces not underscores) of the main part.
string $mPrefixedText
Text form including namespace/interwiki, initialised on demand.
static purgeExpiredRestrictions()
Purge expired restrictions from the page_restrictions table.
it s the revision text itself In either if gzip is the revision text is gzipped $flags
$wgInternalServer
Internal server name as known to CDN, if different.
bool int $mLatestID
ID of most recent revision.
checkUserBlock( $action, $user, $errors, $rigor, $short)
Check that the user isn't blocked from editing.
bool $mRestrictionsLoaded
Boolean for initialisation on demand.
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
the array() calling protocol came about after MediaWiki 1.4rc1.
getSubjectNsText()
Get the namespace text of the subject (rather than talk) page.
mixed $mTitleProtection
Cached value for getTitleProtection (create protection)
loadRestrictions( $oldFashionedRestrictions=null)
Load restrictions from the page_restrictions table.
Represents a page (or page fragment) title within MediaWiki.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
getRelativeRevisionID( $revId, $flags, $dir)
Get next/previous revision ID relative to another revision ID.
wfArrayToCgi( $array1, $array2=null, $prefix='')
This function takes one or two arrays as input, and returns a CGI-style string, e....
getFullUrlForRedirect( $query='', $proto=PROTO_CURRENT)
Get a url appropriate for making redirects based on an untrusted url arg.
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 $out
getRootTitle()
Get the root page name title, i.e.
getLength( $flags=0)
What is the length of this page? Uses link cache, adding it if necessary.
getAuthorsBetween( $old, $new, $limit, $options=[])
Get the authors between the given revisions or revision IDs.
isWatchable()
Can this title be added to a user's watchlist?