177 return MediaWikiServices::getInstance()->getTitleFormatter();
189 return MediaWikiServices::getInstance()->getInterwikiLookup();
208 $t->mDbkeyform = $key;
211 $t->secureAndSplit();
226 return self::newFromLinkTarget( $titleValue );
237 if ( $linkTarget instanceof
Title ) {
241 return self::makeTitle(
264 if ( $text !== null && !is_string( $text ) && !is_int( $text ) ) {
267 if ( $text === null ) {
293 if ( is_object( $text ) ) {
294 throw new MWException(
'$text must be a string, given an object' );
303 if ( $defaultNamespace ==
NS_MAIN ) {
314 $t->mDbkeyform = strtr( $filteredText,
' ',
'_' );
315 $t->mDefaultNamespace = intval( $defaultNamespace );
317 $t->secureAndSplit();
318 if ( $defaultNamespace ==
NS_MAIN ) {
342 # For compatibility with old buggy URLs. "+" is usually not valid in titles,
343 # but some URLs used it as a space replacement and they still come
344 # from some external search tools.
345 if ( strpos( self::legalChars(),
'+' ) ===
false ) {
346 $url = strtr( $url,
'+',
' ' );
349 $t->mDbkeyform = strtr( $url,
' ',
'_' );
352 $t->secureAndSplit();
363 if ( self::$titleCache == null ) {
364 self::$titleCache =
new HashBagOStuff( [
'maxKeys' => self::CACHE_MAX ] );
366 return self::$titleCache;
377 global $wgContentHandlerUseDB, $wgPageLanguageUseDB;
380 'page_namespace',
'page_title',
'page_id',
381 'page_len',
'page_is_redirect',
'page_latest',
384 if ( $wgContentHandlerUseDB ) {
385 $fields[] =
'page_content_model';
388 if ( $wgPageLanguageUseDB ) {
389 $fields[] =
'page_lang';
404 $row = $db->selectRow(
406 self::getSelectFields(),
407 [
'page_id' => $id ],
410 if ( $row !==
false ) {
425 if ( !count( $ids ) ) {
432 self::getSelectFields(),
433 [
'page_id' => $ids ],
438 foreach (
$res as $row ) {
451 $t = self::makeTitle( $row->page_namespace, $row->page_title );
452 $t->loadFromRow( $row );
464 if ( isset( $row->page_id ) ) {
465 $this->mArticleID = (int)$row->page_id;
467 if ( isset( $row->page_len ) ) {
468 $this->mLength = (int)$row->page_len;
470 if ( isset( $row->page_is_redirect ) ) {
471 $this->mRedirect = (bool)$row->page_is_redirect;
473 if ( isset( $row->page_latest ) ) {
474 $this->mLatestID = (int)$row->page_latest;
476 if ( !$this->mForcedContentModel && isset( $row->page_content_model ) ) {
477 $this->mContentModel = strval( $row->page_content_model );
478 } elseif ( !$this->mForcedContentModel ) {
481 if ( isset( $row->page_lang ) ) {
482 $this->mDbPageLanguage = (
string)$row->page_lang;
484 if ( isset( $row->page_restrictions ) ) {
485 $this->mOldRestrictions = $row->page_restrictions;
488 $this->mArticleID = 0;
490 $this->mRedirect =
false;
491 $this->mLatestID = 0;
492 if ( !$this->mForcedContentModel ) {
513 $t->mInterwiki = $interwiki;
514 $t->mFragment = $fragment;
515 $t->mNamespace = $ns = intval( $ns );
516 $t->mDbkeyform = strtr(
$title,
' ',
'_' );
517 $t->mArticleID = ( $ns >= 0 ) ? -1 : 0;
519 $t->mTextform = strtr(
$title,
'_',
' ' );
544 $t->secureAndSplit();
576 [
'page_namespace',
'page_title' ],
577 [
'page_id' => $id ],
580 if (
$s ===
false ) {
584 $n = self::makeName(
$s->page_namespace,
$s->page_title );
622 $length = strlen( $byteClass );
624 $x0 = $x1 = $x2 =
'';
626 $d0 = $d1 = $d2 =
'';
628 $ord0 = $ord1 = $ord2 = 0;
630 $r0 = $r1 = $r2 =
'';
634 $allowUnicode =
false;
635 for ( $pos = 0; $pos < $length; $pos++ ) {
646 $inChar = $byteClass[$pos];
647 if ( $inChar ==
'\\' ) {
648 if ( preg_match(
'/x([0-9a-fA-F]{2})/A', $byteClass, $m, 0, $pos + 1 ) ) {
649 $x0 = $inChar . $m[0];
650 $d0 = chr( hexdec( $m[1] ) );
651 $pos += strlen( $m[0] );
652 } elseif ( preg_match(
'/[0-7]{3}/A', $byteClass, $m, 0, $pos + 1 ) ) {
653 $x0 = $inChar . $m[0];
654 $d0 = chr( octdec( $m[0] ) );
655 $pos += strlen( $m[0] );
656 } elseif ( $pos + 1 >= $length ) {
659 $d0 = $byteClass[$pos + 1];
668 if ( $ord0 < 32 || $ord0 == 0x7f ) {
669 $r0 = sprintf(
'\x%02x', $ord0 );
670 } elseif ( $ord0 >= 0x80 ) {
672 $r0 = sprintf(
'\x%02x', $ord0 );
673 $allowUnicode =
true;
674 } elseif ( strpos(
'-\\[]^', $d0 ) !==
false ) {
680 if ( $x0 !==
'' && $x1 ===
'-' && $x2 !==
'' ) {
682 if ( $ord2 > $ord0 ) {
684 } elseif ( $ord0 >= 0x80 ) {
686 $allowUnicode =
true;
687 if ( $ord2 < 0x80 ) {
696 $x0 = $x1 = $d0 = $d1 = $r0 = $r1 =
'';
697 } elseif ( $ord2 < 0x80 ) {
702 if ( $ord1 < 0x80 ) {
705 if ( $ord0 < 0x80 ) {
708 if ( $allowUnicode ) {
709 $out .=
'\u0080-\uFFFF';
726 $canonicalNamespace =
false
730 if ( $canonicalNamespace ) {
733 $namespace = $wgContLang->getNsText( $ns );
735 $name = $namespace ==
'' ?
$title :
"$namespace:$title";
736 if ( strval( $interwiki ) !=
'' ) {
737 $name =
"$interwiki:$name";
739 if ( strval( $fragment ) !=
'' ) {
740 $name .=
'#' . $fragment;
752 # Note that we don't urlencode the fragment. urlencoded Unicode
753 # fragments appear not to work in IE (at least up to 7) or in at least
754 # one version of Opera 9.x. The W3C validator, for one, doesn't seem
755 # to care if they aren't encoded.
784 $iw = self::getInterwikiLookup()->fetch( $this->mInterwiki );
786 return $iw->isLocal();
798 return $this->mInterwiki !==
'';
832 return self::getInterwikiLookup()->fetch( $this->mInterwiki )->isTranscludable();
845 return self::getInterwikiLookup()->fetch( $this->mInterwiki )->getWikiID();
858 if ( $this->mTitleValue === null ) {
867 wfDebug( __METHOD__ .
': Can\'t create a TitleValue for [[' .
908 if ( !is_null( $this->mUserCaseDBKey ) ) {
932 if ( !$this->mForcedContentModel
937 $linkCache->addLinkObj( $this ); #
in case we already had an
article ID
938 $this->mContentModel = $linkCache->getGoodLinkFieldObj( $this,
'model' );
941 if ( !$this->mContentModel ) {
970 $this->mContentModel = $model;
971 $this->mForcedContentModel =
true;
991 $formatter = self::getTitleFormatter();
992 return $formatter->getNamespaceName( $this->mNamespace, $this->mDbkeyform );
994 wfDebug( __METHOD__ .
': ' . $ex->getMessage() .
"\n" );
1034 return $this->mNamespace >=
NS_MAIN;
1064 if (
$name == $thisName ) {
1080 if ( $canonicalName ) {
1082 if ( $localName != $this->mDbkeyform ) {
1192 ? strpos( $this->
getText(),
'/' ) !==
false
1205 strpos( $this->
getText(),
'Conversiontable/' ) === 0;
1236 # @note This hook is also called in ContentHandler::getDefaultModel.
1237 # It's called here again to make sure hook functions can force this
1238 # method to return true even outside the MediaWiki namespace.
1240 Hooks::run(
'TitleIsCssOrJsPage', [ $this, &$isCssOrJsPage ],
'1.25' );
1242 return $isCssOrJsPage;
1262 $subpage = explode(
'/', $this->mTextform );
1263 $subpage = $subpage[count( $subpage ) - 1];
1264 $lastdot = strrpos( $subpage,
'.' );
1265 if ( $lastdot ===
false ) {
1266 return $subpage; # Never happens: only called
for names ending
in '.css' or '.js'
1268 return substr( $subpage, 0, $lastdot );
1334 throw new MWException(
'Special pages cannot have other pages' );
1370 return $this->mFragment !==
'';
1398 $this->mFragment = strtr( substr( $fragment, 1 ),
'_',
' ' );
1409 return self::makeTitle(
1428 $p = $this->mInterwiki .
':';
1431 if ( 0 != $this->mNamespace ) {
1444 $s = $this->
prefix( $this->mDbkeyform );
1445 $s = strtr(
$s,
' ',
'_' );
1456 if ( $this->mPrefixedText === null ) {
1457 $s = $this->
prefix( $this->mTextform );
1458 $s = strtr(
$s,
'_',
' ' );
1459 $this->mPrefixedText =
$s;
1504 return strtok( $this->
getText(),
'/' );
1539 $parts = explode(
'/', $this->
getText() );
1540 # Don't discard the real title if there's no subpage involved
1541 if ( count( $parts ) > 1 ) {
1542 unset( $parts[count( $parts ) - 1] );
1544 return implode(
'/', $parts );
1578 $parts = explode(
'/', $this->mTextform );
1579 return $parts[count( $parts ) - 1];
1616 $s = $this->
prefix( $this->mDbkeyform );
1635 if ( $query2 !==
false ) {
1636 wfDeprecated(
"Title::get{Canonical,Full,Link,Local,Internal}URL " .
1637 "method called with a second parameter is deprecated. Add your " .
1638 "parameter to an array passed as the first parameter.",
"1.19" );
1640 if ( is_array(
$query ) ) {
1644 if ( is_string( $query2 ) ) {
1675 # Hand off all the decisions on urls to getLocalURL
1678 # Expand the url to make it a full url. Note that getLocalURL has the
1679 # potential to output full urls for a variety of reasons, so we use
1680 # wfExpandUrl instead of simply prepending $wgServer
1683 # Finally, add the fragment.
1711 $this->getPrefixedDBKey()
1714 return $target->getFullUrl(
$query,
false, $proto );
1745 $interwiki = self::getInterwikiLookup()->fetch( $this->mInterwiki );
1748 if ( $namespace !=
'' ) {
1749 # Can this actually happen? Interwikis shouldn't be parsed.
1750 # Yes! It can in interwiki transclusion. But... it probably shouldn't.
1753 $url = $interwiki->getURL( $namespace . $this->
getDBkey() );
1758 $url = str_replace(
'$1', $dbkey, $wgArticlePath );
1759 Hooks::run(
'GetLocalURL::Article', [ &$this, &$url ] );
1765 if ( !empty( $wgActionPaths )
1766 && preg_match(
'/^(.*&|)action=([^&]*)(&(.*)|)$/',
$query,
$matches )
1768 $action = urldecode(
$matches[2] );
1769 if ( isset( $wgActionPaths[$action] ) ) {
1774 $url = str_replace(
'$1', $dbkey, $wgActionPaths[$action] );
1782 && $wgVariantArticlePath
1787 $variant = urldecode(
$matches[1] );
1791 $url = str_replace(
'$2', urlencode( $variant ), $wgVariantArticlePath );
1792 $url = str_replace(
'$1', $dbkey, $url );
1796 if ( $url ===
false ) {
1800 $url =
"{$wgScript}?title={$dbkey}&{$query}";
1808 if ( $wgRequest->getVal(
'action' ) ==
'render' ) {
1809 $url = $wgServer . $url;
1834 if ( $this->
isExternal() || $proto !==
false ) {
1859 $server = $wgInternalServer !==
false ? $wgInternalServer :
$wgServer;
1949 $action,
$user, $rigor =
'secure', $ignoreErrors = []
1954 foreach ( $errors
as $index => $error ) {
1955 $errKey = is_array( $error ) ? $error[0] : $error;
1957 if ( in_array( $errKey, $ignoreErrors ) ) {
1958 unset( $errors[$index] );
1960 if ( $errKey instanceof
MessageSpecifier && in_array( $errKey->getKey(), $ignoreErrors ) ) {
1961 unset( $errors[$index] );
1981 [ $this,
$user, $action, &$errors, ( $rigor !==
'quick' ), $short ] )
1986 if ( $action ==
'create' ) {
1991 $errors[] =
$user->isAnon() ? [
'nocreatetext' ] : [
'nocreate-loggedin' ];
1993 } elseif ( $action ==
'move' ) {
1994 if ( !
$user->isAllowed(
'move-rootuserpages' )
1997 $errors[] = [
'cant-move-user-page' ];
2001 if ( $this->mNamespace ==
NS_FILE && !
$user->isAllowed(
'movefile' ) ) {
2002 $errors[] = [
'movenotallowedfile' ];
2006 if ( $this->mNamespace ==
NS_CATEGORY && !
$user->isAllowed(
'move-categorypages' ) ) {
2007 $errors[] = [
'cant-move-category-page' ];
2010 if ( !
$user->isAllowed(
'move' ) ) {
2014 if (
$user->isAnon() && ( $userCanMove || $autoconfirmedCanMove ) ) {
2016 $errors[] = [
'movenologintext' ];
2018 $errors[] = [
'movenotallowed' ];
2021 } elseif ( $action ==
'move-target' ) {
2022 if ( !
$user->isAllowed(
'move' ) ) {
2024 $errors[] = [
'movenotallowed' ];
2025 } elseif ( !
$user->isAllowed(
'move-rootuserpages' )
2028 $errors[] = [
'cant-move-to-user-page' ];
2029 } elseif ( !
$user->isAllowed(
'move-categorypages' )
2032 $errors[] = [
'cant-move-to-category-page' ];
2034 } elseif ( !
$user->isAllowed( $action ) ) {
2055 $errors = array_merge( $errors,
$result );
2062 } elseif (
$result ===
false ) {
2064 $errors[] = [
'badaccess-group0' ];
2084 return $result ? [] : [ [
'badaccess-group0' ] ];
2093 && !( $short && count( $errors ) > 0 )
2114 # Only 'createaccount' can be performed on special pages,
2115 # which don't actually exist in the DB.
2116 if (
NS_SPECIAL == $this->mNamespace && $action !==
'createaccount' ) {
2117 $errors[] = [
'ns-specialprotected' ];
2120 # Check $wgNamespaceProtection for restricted namespaces
2122 $ns = $this->mNamespace ==
NS_MAIN ?
2125 [
'protectedinterface', $action ] : [
'namespaceprotected', $ns, $action ];
2143 # Protect css/js subpages of user pages
2144 # XXX: this might be better using restrictions
2145 # XXX: right 'editusercssjs' is deprecated, for backward compatibility only
2146 if ( $action !=
'patrol' && !
$user->isAllowed(
'editusercssjs' ) ) {
2147 if ( preg_match(
'/^' . preg_quote(
$user->getName(),
'/' ) .
'\//', $this->mTextform ) ) {
2148 if ( $this->
isCssSubpage() && !
$user->isAllowedAny(
'editmyusercss',
'editusercss' ) ) {
2149 $errors[] = [
'mycustomcssprotected', $action ];
2150 } elseif ( $this->
isJsSubpage() && !
$user->isAllowedAny(
'editmyuserjs',
'edituserjs' ) ) {
2151 $errors[] = [
'mycustomjsprotected', $action ];
2155 $errors[] = [
'customcssprotected', $action ];
2157 $errors[] = [
'customjsprotected', $action ];
2181 if ( $right ==
'sysop' ) {
2182 $right =
'editprotected';
2185 if ( $right ==
'autoconfirmed' ) {
2186 $right =
'editsemiprotected';
2188 if ( $right ==
'' ) {
2191 if ( !
$user->isAllowed( $right ) ) {
2192 $errors[] = [
'protectedpagetext', $right, $action ];
2193 } elseif ( $this->mCascadeRestriction && !
$user->isAllowed(
'protect' ) ) {
2194 $errors[] = [
'protectedpagetext',
'protect', $action ];
2214 # We /could/ use the protection level on the source page, but it's
2215 # fairly ugly as we have to establish a precedence hierarchy for pages
2216 # included by multiple cascade-protected pages. So just restrict
2217 # it to people with 'protect' permission, as they could remove the
2218 # protection anyway.
2220 # Cascading protection depends on more than this page...
2221 # Several cascading protected pages may include this page...
2222 # Check each cascading level
2223 # This is only for protection restrictions, not for all actions
2224 if ( isset( $restrictions[$action] ) ) {
2225 foreach ( $restrictions[$action]
as $right ) {
2227 if ( $right ==
'sysop' ) {
2228 $right =
'editprotected';
2231 if ( $right ==
'autoconfirmed' ) {
2232 $right =
'editsemiprotected';
2234 if ( $right !=
'' && !
$user->isAllowedAll(
'protect', $right ) ) {
2236 foreach ( $cascadingSources
as $page ) {
2237 $pages .=
'* [[:' . $page->getPrefixedText() .
"]]\n";
2239 $errors[] = [
'cascadeprotected', count( $cascadingSources ), $pages, $action ];
2262 if ( $action ==
'protect' ) {
2265 $errors[] = [
'protect-cantedit' ];
2267 } elseif ( $action ==
'create' ) {
2269 if ( $title_protection ) {
2270 if ( $title_protection[
'permission'] ==
''
2271 || !
$user->isAllowed( $title_protection[
'permission'] )
2276 $title_protection[
'reason']
2280 } elseif ( $action ==
'move' ) {
2284 $errors[] = [
'immobile-source-namespace', $this->
getNsText() ];
2287 $errors[] = [
'immobile-source-page' ];
2289 } elseif ( $action ==
'move-target' ) {
2291 $errors[] = [
'immobile-target-namespace', $this->
getNsText() ];
2293 $errors[] = [
'immobile-target-page' ];
2295 } elseif ( $action ==
'delete' ) {
2297 if ( !$tempErrors ) {
2299 $user, $tempErrors, $rigor,
true );
2301 if ( $tempErrors ) {
2303 $errors[] = [
'deleteprotected' ];
2305 if ( $rigor !==
'quick' && $wgDeleteRevisionsLimit
2308 $errors[] = [
'delete-toobig', $wgLang->formatNum( $wgDeleteRevisionsLimit ) ];
2310 } elseif ( $action ===
'undelete' ) {
2313 $errors[] = [
'undelete-cantedit' ];
2319 $errors[] = [
'undelete-cantcreate' ];
2337 global $wgEmailConfirmToEdit, $wgBlockDisablesLogin;
2340 if ( $rigor ===
'quick' || in_array( $action, [
'createaccount',
'unblock' ] ) ) {
2345 if ( $action ===
'read' && !$wgBlockDisablesLogin ) {
2349 if ( $wgEmailConfirmToEdit && !
$user->isEmailConfirmed() ) {
2350 $errors[] = [
'confirmedittext' ];
2353 $useSlave = ( $rigor !==
'secure' );
2354 if ( ( $action ==
'edit' || $action ==
'create' )
2355 && !
$user->isBlockedFrom( $this, $useSlave )
2359 } elseif (
$user->isBlocked() &&
$user->getBlock()->prevents( $action ) !==
false ) {
2379 global $wgWhitelistRead, $wgWhitelistReadRegexp;
2381 $whitelisted =
false;
2383 # Shortcut for public wikis, allows skipping quite a bit of code
2384 $whitelisted =
true;
2385 } elseif (
$user->isAllowed(
'read' ) ) {
2386 # If the user is allowed to read pages, he is allowed to read all pages
2387 $whitelisted =
true;
2388 } elseif ( $this->
isSpecial(
'Userlogin' )
2392 # Always grant access to the login page.
2393 # Even anons need to be able to log in.
2394 $whitelisted =
true;
2395 } elseif ( is_array( $wgWhitelistRead ) && count( $wgWhitelistRead ) ) {
2396 # Time to check the whitelist
2397 # Only do these checks is there's something to check against
2402 if ( in_array(
$name, $wgWhitelistRead,
true ) || in_array( $dbName, $wgWhitelistRead,
true ) ) {
2403 $whitelisted =
true;
2405 # Old settings might have the title prefixed with
2406 # a colon for main-namespace pages
2407 if ( in_array(
':' .
$name, $wgWhitelistRead ) ) {
2408 $whitelisted =
true;
2411 # If it's a special page, ditch the subpage bit and check again
2416 if ( in_array( $pure, $wgWhitelistRead,
true ) ) {
2417 $whitelisted =
true;
2423 if ( !$whitelisted && is_array( $wgWhitelistReadRegexp ) && !empty( $wgWhitelistReadRegexp ) ) {
2426 foreach ( $wgWhitelistReadRegexp
as $listItem ) {
2427 if ( preg_match( $listItem,
$name ) ) {
2428 $whitelisted =
true;
2434 if ( !$whitelisted ) {
2435 # If the title is not whitelisted, give extensions a chance to do so...
2437 if ( !$whitelisted ) {
2456 return [
'badaccess-group0' ];
2459 $groups = array_map( [
'User',
'makeGroupLinkWiki' ],
2462 if ( count( $groups ) ) {
2466 $wgLang->commaList( $groups ),
2470 return [
'badaccess-group0' ];
2489 $action,
$user, $rigor =
'secure', $short =
false
2491 if ( $rigor ===
true ) {
2493 } elseif ( $rigor ===
false ) {
2495 } elseif ( !in_array( $rigor, [
'quick',
'full',
'secure' ] ) ) {
2496 throw new Exception(
"Invalid rigor parameter '$rigor'." );
2499 # Read has special handling
2500 if ( $action ==
'read' ) {
2502 'checkPermissionHooks',
2503 'checkReadPermissions',
2506 # Don't call checkSpecialsAndNSPermissions or checkCSSandJSPermissions
2507 # here as it will lead to duplicate error messages. This is okay to do
2508 # since anywhere that checks for create will also check for edit, and
2509 # those checks are called for edit.
2510 } elseif ( $action ==
'create' ) {
2512 'checkQuickPermissions',
2513 'checkPermissionHooks',
2514 'checkPageRestrictions',
2515 'checkCascadingSourcesRestrictions',
2516 'checkActionPermissions',
2521 'checkQuickPermissions',
2522 'checkPermissionHooks',
2523 'checkSpecialsAndNSPermissions',
2524 'checkCSSandJSPermissions',
2525 'checkPageRestrictions',
2526 'checkCascadingSourcesRestrictions',
2527 'checkActionPermissions',
2533 while ( count( $checks ) > 0 &&
2534 !( $short && count( $errors ) > 0 ) ) {
2535 $method = array_shift( $checks );
2536 $errors = $this->$method( $action,
$user, $errors, $rigor, $short );
2550 global $wgRestrictionTypes;
2551 $types = $wgRestrictionTypes;
2553 # Remove the create restriction for existing titles
2554 $types = array_diff( $types, [
'create' ] );
2556 # Only the create and upload restrictions apply to non-existing titles
2557 $types = array_intersect( $types, [
'create',
'upload' ] );
2572 $types = self::getFilteredRestrictionTypes( $this->
exists() );
2575 # Remove the upload restriction for non-file titles
2576 $types = array_diff( $types, [
'upload' ] );
2579 Hooks::run(
'TitleGetRestrictionTypes', [ $this, &$types ] );
2581 wfDebug( __METHOD__ .
': applicable restrictions to [[' .
2582 $this->
getPrefixedText() .
']] are {' . implode(
',', $types ) .
"}\n" );
2605 if ( $this->mTitleProtection === null ) {
2610 'user' =>
'pt_user',
2611 'reason' =>
'pt_reason',
2612 'expiry' =>
'pt_expiry',
2613 'permission' =>
'pt_create_perm'
2622 if ( $row[
'permission'] ==
'sysop' ) {
2623 $row[
'permission'] =
'editprotected';
2625 if ( $row[
'permission'] ==
'autoconfirmed' ) {
2626 $row[
'permission'] =
'editsemiprotected';
2628 $row[
'expiry'] =
$dbr->decodeExpiry( $row[
'expiry'] );
2630 $this->mTitleProtection = $row;
2646 $this->mTitleProtection =
false;
2657 global $wgSemiprotectedRestrictionLevels;
2660 $semi = $wgSemiprotectedRestrictionLevels;
2661 if ( !$restrictions || !$semi ) {
2667 foreach ( array_keys( $semi,
'autoconfirmed' )
as $key ) {
2668 $semi[$key] =
'editsemiprotected';
2670 foreach ( array_keys( $restrictions,
'autoconfirmed' )
as $key ) {
2671 $restrictions[$key] =
'editsemiprotected';
2674 return !array_diff( $restrictions, $semi );
2685 global $wgRestrictionLevels;
2689 # Special pages have inherent protection
2694 # Check regular protection levels
2695 foreach ( $restrictionTypes
as $type ) {
2696 if ( $action == $type || $action ==
'' ) {
2698 foreach ( $wgRestrictionLevels
as $level ) {
2699 if ( in_array( $level, $r ) && $level !=
'' ) {
2719 if ( isset( $wgNamespaceProtection[$this->mNamespace] ) ) {
2720 foreach ( (
array)$wgNamespaceProtection[$this->mNamespace]
as $right ) {
2721 if ( $right !=
'' && !$user->
isAllowed( $right ) ) {
2736 return ( $sources > 0 );
2749 return $getPages ? $this->mCascadeSources !== null : $this->mHasCascadingRestrictions !== null;
2766 $pagerestrictions = [];
2768 if ( $this->mCascadeSources !== null && $getPages ) {
2770 } elseif ( $this->mHasCascadingRestrictions !== null && !$getPages ) {
2777 $tables = [
'imagelinks',
'page_restrictions' ];
2784 $tables = [
'templatelinks',
'page_restrictions' ];
2794 $cols = [
'pr_page',
'page_namespace',
'page_title',
2795 'pr_expiry',
'pr_type',
'pr_level' ];
2796 $where_clauses[] =
'page_id=pr_page';
2799 $cols = [
'pr_expiry' ];
2804 $sources = $getPages ? [] :
false;
2807 foreach (
$res as $row ) {
2808 $expiry =
$dbr->decodeExpiry( $row->pr_expiry );
2809 if ( $expiry > $now ) {
2811 $page_id = $row->pr_page;
2812 $page_ns = $row->page_namespace;
2813 $page_title = $row->page_title;
2815 # Add groups needed for each restriction type if its not already there
2816 # Make sure this restriction type still exists
2818 if ( !isset( $pagerestrictions[$row->pr_type] ) ) {
2819 $pagerestrictions[$row->pr_type] = [];
2823 isset( $pagerestrictions[$row->pr_type] )
2824 && !in_array( $row->pr_level, $pagerestrictions[$row->pr_type] )
2826 $pagerestrictions[$row->pr_type][] = $row->pr_level;
2835 $this->mCascadeSources = $sources;
2836 $this->mCascadingRestrictions = $pagerestrictions;
2838 $this->mHasCascadingRestrictions = $sources;
2841 return [ $sources, $pagerestrictions ];
2865 if ( !$this->mRestrictionsLoaded ) {
2868 return isset( $this->mRestrictions[$action] )
2869 ? $this->mRestrictions[$action]
2881 if ( !$this->mRestrictionsLoaded ) {
2895 if ( !$this->mRestrictionsLoaded ) {
2898 return isset( $this->mRestrictionsExpiry[$action] ) ? $this->mRestrictionsExpiry[$action] :
false;
2907 if ( !$this->mRestrictionsLoaded ) {
2928 foreach ( $restrictionTypes
as $type ) {
2929 $this->mRestrictions[
$type] = [];
2930 $this->mRestrictionsExpiry[
$type] =
'infinity';
2933 $this->mCascadeRestriction =
false;
2935 # Backwards-compatibility: also load the restrictions from the page record (old format).
2936 if ( $oldFashionedRestrictions !== null ) {
2937 $this->mOldRestrictions = $oldFashionedRestrictions;
2940 if ( $this->mOldRestrictions ===
false ) {
2941 $this->mOldRestrictions =
$dbr->selectField(
'page',
'page_restrictions',
2945 if ( $this->mOldRestrictions !=
'' ) {
2946 foreach ( explode(
':', trim( $this->mOldRestrictions ) )
as $restrict ) {
2947 $temp = explode(
'=', trim( $restrict ) );
2948 if ( count( $temp ) == 1 ) {
2950 $this->mRestrictions[
'edit'] = explode(
',', trim( $temp[0] ) );
2951 $this->mRestrictions[
'move'] = explode(
',', trim( $temp[0] ) );
2953 $restriction = trim( $temp[1] );
2954 if ( $restriction !=
'' ) {
2955 $this->mRestrictions[$temp[0]] = explode(
',', $restriction );
2961 if ( count( $rows ) ) {
2962 # Current system - load second to make them override.
2965 # Cycle through all the restrictions.
2966 foreach ( $rows
as $row ) {
2969 if ( !in_array( $row->pr_type, $restrictionTypes ) ) {
2975 $expiry =
$dbr->decodeExpiry( $row->pr_expiry );
2978 if ( !$expiry || $expiry > $now ) {
2979 $this->mRestrictionsExpiry[$row->pr_type] = $expiry;
2980 $this->mRestrictions[$row->pr_type] = explode(
',', trim( $row->pr_level ) );
2982 $this->mCascadeRestriction |= $row->pr_cascade;
2987 $this->mRestrictionsLoaded =
true;
2997 if ( $this->mRestrictionsLoaded ) {
3004 $rows =
$cache->getWithSetCallback(
3006 $cache->makeKey(
'page-restrictions', $id, $this->getLatestRevID() ),
3008 function ( $curValue, &$ttl,
array &$setOpts ) {
3013 return iterator_to_array(
3015 'page_restrictions',
3016 [
'pr_type',
'pr_expiry',
'pr_level',
'pr_cascade' ],
3017 [
'pr_page' => $this->getArticleID() ],
3028 if ( $title_protection ) {
3032 if ( !$expiry || $expiry > $now ) {
3034 $this->mRestrictionsExpiry[
'create'] = $expiry;
3035 $this->mRestrictions[
'create'] =
3036 explode(
',', trim( $title_protection[
'permission'] ) );
3038 $this->mTitleProtection =
false;
3041 $this->mRestrictionsExpiry[
'create'] =
'infinity';
3043 $this->mRestrictionsLoaded =
true;
3052 $this->mRestrictionsLoaded =
false;
3053 $this->mTitleProtection = null;
3070 $config = MediaWikiServices::getInstance()->getMainConfig();
3072 'page_restrictions',
3076 [
'LIMIT' => $config->get(
'UpdateRowsPerQuery' ) ]
3079 $dbw->
delete(
'page_restrictions', [
'pr_id' => $ids ],
$fname );
3108 # We dynamically add a member variable for the purpose of this method
3109 # alone to cache the result. There's no point in having it hanging
3110 # around uninitialized in every Title object; therefore we only add it
3111 # if needed and don't declare it statically.
3112 if ( $this->mHasSubpages === null ) {
3113 $this->mHasSubpages =
false;
3116 $this->mHasSubpages = (bool)$subpages->count();
3137 $conds[] =
'page_title ' .
$dbr->buildLike( $this->
getDBkey() .
'/',
$dbr->anyString() );
3143 $dbr->select(
'page',
3144 [
'page_id',
'page_namespace',
'page_title',
'page_is_redirect' ],
3150 return $this->mSubpages;
3164 $n =
$dbr->selectField(
'archive',
'COUNT(*)',
3169 $n +=
$dbr->selectField(
'filearchive',
'COUNT(*)',
3170 [
'fa_name' => $this->
getDBkey() ],
3188 $deleted = (bool)
$dbr->selectField(
'archive',
'1',
3189 [
'ar_namespace' => $this->getNamespace(),
'ar_title' => $this->
getDBkey() ],
3193 $deleted = (bool)
$dbr->selectField(
'filearchive',
'1',
3194 [
'fa_name' => $this->getDBkey() ],
3211 $this->mArticleID = 0;
3215 if (
$flags & self::GAID_FOR_UPDATE ) {
3216 $oldUpdate = $linkCache->forUpdate(
true );
3217 $linkCache->clearLink( $this );
3218 $this->mArticleID = $linkCache->addLinkObj( $this );
3219 $linkCache->forUpdate( $oldUpdate );
3221 if ( -1 == $this->mArticleID ) {
3222 $this->mArticleID = $linkCache->addLinkObj( $this );
3236 if ( !is_null( $this->mRedirect ) ) {
3240 $this->mRedirect =
false;
3245 $linkCache->addLinkObj( $this ); #
in case we already had an
article ID
3246 $cached = $linkCache->getGoodLinkFieldObj( $this,
'redirect' );
3247 if ( $cached === null ) {
3248 # Trust LinkCache's state over our own
3249 # LinkCache is telling us that the page doesn't exist, despite there being cached
3250 # data relating to an existing page in $this->mArticleID. Updaters should clear
3251 # LinkCache as appropriate, or use $flags = Title::GAID_FOR_UPDATE. If that flag is
3252 # set, then LinkCache will definitely be up to date here, since getArticleID() forces
3253 # LinkCache to refresh its data from the master.
3254 $this->mRedirect =
false;
3258 $this->mRedirect = (bool)$cached;
3271 if ( $this->mLength != -1 ) {
3279 $linkCache->addLinkObj( $this ); #
in case we already had an
article ID
3280 $cached = $linkCache->getGoodLinkFieldObj( $this,
'length' );
3281 if ( $cached === null ) {
3282 # Trust LinkCache's state over our own, as for isRedirect()
3287 $this->mLength = intval( $cached );
3300 return intval( $this->mLatestID );
3303 $this->mLatestID = 0;
3307 $linkCache->addLinkObj( $this ); #
in case we already had an
article ID
3308 $cached = $linkCache->getGoodLinkFieldObj( $this,
'revision' );
3309 if ( $cached === null ) {
3310 # Trust LinkCache's state over our own, as for isRedirect()
3311 $this->mLatestID = 0;
3315 $this->mLatestID = intval( $cached );
3332 $linkCache->clearLink( $this );
3334 if ( $newid ===
false ) {
3335 $this->mArticleID = -1;
3337 $this->mArticleID = intval( $newid );
3339 $this->mRestrictionsLoaded =
false;
3340 $this->mRestrictions = [];
3341 $this->mOldRestrictions =
false;
3342 $this->mRedirect = null;
3343 $this->mLength = -1;
3344 $this->mLatestID =
false;
3345 $this->mContentModel =
false;
3346 $this->mEstimateRevisions = null;
3347 $this->mPageLanguage =
false;
3348 $this->mDbPageLanguage =
false;
3349 $this->mIsBigDeletion = null;
3354 $linkCache->clear();
3371 return $wgContLang->ucfirst( $text );
3391 $this->mInterwiki =
'';
3392 $this->mFragment =
'';
3402 $titleCodec = MediaWikiServices::getInstance()->getTitleParser();
3408 $this->mInterwiki = $parts[
'interwiki'];
3409 $this->mLocalInterwiki = $parts[
'local_interwiki'];
3410 $this->mNamespace = $parts[
'namespace'];
3411 $this->mUserCaseDBKey = $parts[
'user_case_dbkey'];
3413 $this->mDbkeyform = $parts[
'dbkey'];
3414 $this->mUrlform =
wfUrlencode( $this->mDbkeyform );
3415 $this->mTextform = strtr( $this->mDbkeyform,
'_',
' ' );
3417 # We already know that some pages won't be in the database!
3419 $this->mArticleID = 0;
3446 self::getSelectFields(),
3448 "{$prefix}_from=page_id",
3450 "{$prefix}_title" => $this->
getDBkey() ],
3456 if (
$res->numRows() ) {
3458 foreach (
$res as $row ) {
3461 $linkCache->addGoodLinkObjFromRow( $titleObj, $row );
3462 $retVal[] = $titleObj;
3498 # If the page doesn't exist; there can't be any link from this page
3505 $blNamespace =
"{$prefix}_namespace";
3506 $blTitle =
"{$prefix}_title";
3511 [ $blNamespace, $blTitle ],
3514 [
"{$prefix}_from" => $id ],
3519 [
"page_namespace=$blNamespace",
"page_title=$blTitle" ]
3525 foreach (
$res as $row ) {
3526 if ( $row->page_id ) {
3530 $linkCache->addBadLinkObj( $titleObj );
3532 $retVal[] = $titleObj;
3562 # All links from article ID 0 are false positives
3568 [
'page',
'pagelinks' ],
3569 [
'pl_namespace',
'pl_title' ],
3572 'page_namespace IS NULL'
3578 [
'pl_namespace=page_namespace',
'pl_title=page_title' ]
3584 foreach (
$res as $row ) {
3603 if ( $pageLang->hasVariants() ) {
3604 $variants = $pageLang->getVariants();
3605 foreach ( $variants
as $vCode ) {
3647 return $this->
moveTo( $nt,
false );
3663 if ( !( $nt instanceof
Title ) ) {
3666 return [ [
'badtitletext' ] ];
3670 $errors = $mp->isValidMove()->getErrorsArray();
3674 $mp->checkPermissions( $wgUser, $reason )->getErrorsArray()
3678 return $errors ?:
true;
3693 $destFile->load( File::READ_LATEST );
3694 if ( !$wgUser->isAllowed(
'reupload-shared' )
3697 $errors[] = [
'file-exists-sharedrepo' ];
3715 public function moveTo( &$nt, $auth =
true, $reason =
'', $createRedirect =
true ) {
3718 if ( is_array( $err ) ) {
3720 $wgUser->spreadAnyEditBlock();
3724 if ( $auth && !$wgUser->isAllowed(
'suppressredirect' ) ) {
3725 $createRedirect =
true;
3729 $status = $mp->move( $wgUser, $reason, $createRedirect );
3733 return $status->getErrorsArray();
3749 public function moveSubpages( $nt, $auth =
true, $reason =
'', $createRedirect =
true ) {
3750 global $wgMaximumMovedPages;
3752 if ( !$this->
userCan(
'move-subpages' ) ) {
3753 return [
'cant-move-subpages' ];
3757 return [
'namespace-nosubpages',
3761 return [
'namespace-nosubpages',
3765 $subpages = $this->
getSubpages( $wgMaximumMovedPages + 1 );
3768 foreach ( $subpages
as $oldSubpage ) {
3770 if (
$count > $wgMaximumMovedPages ) {
3771 $retval[$oldSubpage->getPrefixedText()] =
3772 [
'movepage-max-pages',
3773 $wgMaximumMovedPages ];
3780 if ( $oldSubpage->getArticleID() == $this->
getArticleID()
3781 || $oldSubpage->getArticleID() == $nt->getArticleID()
3787 $newPageName = preg_replace(
3788 '#^' . preg_quote( $this->
getDBkey(),
'#' ) .
'#',
3790 $oldSubpage->getDBkey() );
3791 if ( $oldSubpage->isTalkPage() ) {
3792 $newNs = $nt->getTalkPage()->getNamespace();
3794 $newNs = $nt->getSubjectPage()->getNamespace();
3796 # Bug 14385: we need makeTitleSafe because the new page names may
3797 # be longer than 255 characters.
3800 $success = $oldSubpage->moveTo( $newSubpage, $auth, $reason, $createRedirect );
3802 $retval[$oldSubpage->getPrefixedText()] = $newSubpage->getPrefixedText();
3817 global $wgContentHandlerUseDB;
3822 $fields = [
'page_is_redirect',
'page_latest',
'page_id' ];
3823 if ( $wgContentHandlerUseDB ) {
3824 $fields[] =
'page_content_model';
3827 $row = $dbw->selectRow(
'page',
3833 # Cache some fields we may want
3834 $this->mArticleID = $row ? intval( $row->page_id ) : 0;
3835 $this->mRedirect = $row ? (bool)$row->page_is_redirect :
false;
3836 $this->mLatestID = $row ? intval( $row->page_latest ) :
false;
3837 $this->mContentModel = $row && isset( $row->page_content_model )
3838 ? strval( $row->page_content_model )
3841 if ( !$this->mRedirect ) {
3844 # Does the article have a history?
3845 $row = $dbw->selectField( [
'page',
'revision' ],
3850 'page_latest != rev_id'
3855 # Return true if there was no history
3856 return ( $row ===
false );
3868 # Is it an existing file?
3869 if ( $nt->getNamespace() ==
NS_FILE ) {
3871 $file->load( File::READ_LATEST );
3872 if ( $file->exists() ) {
3873 wfDebug( __METHOD__ .
": file exists\n" );
3877 # Is it a redirect with no history?
3878 if ( !$nt->isSingleRevRedirect() ) {
3879 wfDebug( __METHOD__ .
": not a one-rev redirect\n" );
3882 # Get the article text
3884 if ( !is_object(
$rev ) ) {
3888 # Does the redirect point to the source?
3889 # Or is it a broken self-redirect, usually caused by namespace collisions?
3892 if ( $redirTitle ) {
3894 $redirTitle->getPrefixedDBkey() != $nt->getPrefixedDBkey() ) {
3895 wfDebug( __METHOD__ .
": redirect points to other page\n" );
3901 # Fail safe (not a redirect after all. strange.)
3902 wfDebug( __METHOD__ .
": failsafe: database sais " . $nt->getPrefixedDBkey() .
3903 " is a redirect, but it doesn't contain a valid redirect.\n" );
3922 if ( $titleKey === 0 ) {
3931 [
'cl_from' => $titleKey ],
3935 if (
$res->numRows() > 0 ) {
3936 foreach (
$res as $row ) {
3955 foreach ( $parents
as $parent => $current ) {
3956 if ( array_key_exists( $parent, $children ) ) {
3957 # Circular reference
3958 $stack[$parent] = [];
3962 $stack[$parent] = $nt->getParentCategoryTree( $children + [ $parent => 1 ] );
3978 if ( $this->mArticleID > 0 ) {
3995 $revId = $db->selectField(
'revision',
'rev_id',
3998 'rev_id < ' . intval(
$revId )
4001 [
'ORDER BY' =>
'rev_id DESC' ]
4004 if (
$revId ===
false ) {
4020 $revId = $db->selectField(
'revision',
'rev_id',
4023 'rev_id > ' . intval(
$revId )
4026 [
'ORDER BY' =>
'rev_id' ]
4029 if (
$revId ===
false ) {
4047 [
'rev_page' => $pageId ],
4049 [
'ORDER BY' =>
'rev_timestamp ASC',
'LIMIT' => 1 ]
4066 return $rev ?
$rev->getTimestamp() : null;
4076 return (
bool)
$dbr->selectField(
'page',
'page_is_new', $this->
pageCond(), __METHOD__ );
4085 global $wgDeleteRevisionsLimit;
4087 if ( !$wgDeleteRevisionsLimit ) {
4091 if ( $this->mIsBigDeletion === null ) {
4094 $revCount =
$dbr->selectRowCount(
4099 [
'LIMIT' => $wgDeleteRevisionsLimit + 1 ]
4102 $this->mIsBigDeletion = $revCount > $wgDeleteRevisionsLimit;
4114 if ( !$this->
exists() ) {
4118 if ( $this->mEstimateRevisions === null ) {
4120 $this->mEstimateRevisions =
$dbr->estimateRowCount(
'revision',
'*',
4137 if ( !( $old instanceof
Revision ) ) {
4140 if ( !( $new instanceof Revision ) ) {
4143 if ( !$old || !$new ) {
4149 'rev_timestamp > ' .
$dbr->addQuotes(
$dbr->timestamp( $old->getTimestamp() ) ),
4150 'rev_timestamp < ' .
$dbr->addQuotes(
$dbr->timestamp( $new->getTimestamp() ) )
4152 if ( $max !== null ) {
4153 return $dbr->selectRowCount(
'revision',
'1',
4156 [
'LIMIT' => $max + 1 ]
4159 return (
int)
$dbr->selectField(
'revision',
'count(*)', $conds, __METHOD__ );
4180 if ( !( $old instanceof
Revision ) ) {
4183 if ( !( $new instanceof Revision ) ) {
4189 if ( !$old || !$new ) {
4196 if ( in_array(
'include_old',
$options ) ) {
4199 if ( in_array(
'include_new',
$options ) ) {
4202 if ( in_array(
'include_both',
$options ) ) {
4207 if ( $old->getId() === $new->getId() ) {
4208 return ( $old_cmp ===
'>' && $new_cmp ===
'<' ) ?
4211 } elseif ( $old->getId() === $new->getParentId() ) {
4212 if ( $old_cmp ===
'>=' && $new_cmp ===
'<=' ) {
4217 } elseif ( $old_cmp ===
'>=' ) {
4219 } elseif ( $new_cmp ===
'<=' ) {
4225 $res =
$dbr->select(
'revision',
'DISTINCT rev_user_text',
4228 "rev_timestamp $old_cmp " .
$dbr->addQuotes(
$dbr->timestamp( $old->getTimestamp() ) ),
4229 "rev_timestamp $new_cmp " .
$dbr->addQuotes(
$dbr->timestamp( $new->getTimestamp() ) )
4231 [
'LIMIT' =>
$limit + 1 ]
4233 foreach (
$res as $row ) {
4234 $authors[] = $row->rev_user_text;
4255 return $authors ? count( $authors ) : 0;
4296 Hooks::run(
'TitleExists', [ $this, &$exists ] );
4329 Hooks::run(
'TitleIsAlwaysKnown', [ $this, &$isKnown ] );
4331 if ( !is_null( $isKnown ) ) {
4339 switch ( $this->mNamespace ) {
4349 return $this->mDbkeyform ==
'';
4390 $wgContLang->lcfirst( $this->getText() )
4392 $message =
wfMessage(
$name )->inLanguage( $wgContLang )->useDatabase(
false );
4393 return $message->exists();
4412 $wgContLang->lcfirst( $this->getText() )
4416 if ( $message->exists() ) {
4417 return $message->plain();
4432 } elseif ( $this->mArticleID === 0 ) {
4437 $dbw->onTransactionPreCommitOrIdle(
function () {
4447 $dbTimestamp = $dbw->
timestamp( $purgeTime ?: time() );
4450 [
'page_touched' => $dbTimestamp ],
4451 $conds + [
'page_touched < ' . $dbw->
addQuotes( $dbTimestamp ) ],
4454 MediaWikiServices::getInstance()->getLinkCache()->invalidateTitle( $this );
4482 if ( $db === null ) {
4485 $touched = $db->selectField(
'page',
'page_touched', $this->
pageCond(), __METHOD__ );
4503 $uid =
$user->getId();
4508 if ( array_key_exists( $uid, $this->mNotificationTimestamp ) ) {
4509 return $this->mNotificationTimestamp[$uid];
4512 if ( count( $this->mNotificationTimestamp ) >= self::CACHE_MAX ) {
4513 $this->mNotificationTimestamp = [];
4516 $store = MediaWikiServices::getInstance()->getWatchedItemStore();
4517 $watchedItem = $store->getWatchedItem(
$user, $this );
4518 if ( $watchedItem ) {
4519 $this->mNotificationTimestamp[$uid] = $watchedItem->getNotificationTimestamp();
4521 $this->mNotificationTimestamp[$uid] =
false;
4524 return $this->mNotificationTimestamp[$uid];
4546 $namespaceKey = $wgContLang->lc( $namespaceKey );
4548 if ( $namespaceKey ==
'' ) {
4549 $namespaceKey =
'main';
4552 if ( $namespaceKey ==
'file' ) {
4553 $namespaceKey =
'image';
4555 return $prepend . $namespaceKey;
4576 $where[] =
'rd_interwiki = ' .
$dbr->addQuotes(
'' ) .
' OR rd_interwiki IS NULL';
4578 if ( !is_null( $ns ) ) {
4579 $where[
'page_namespace'] = $ns;
4583 [
'redirect',
'page' ],
4584 [
'page_namespace',
'page_title' ],
4589 foreach (
$res as $row ) {
4590 $redirs[] = self::newFromRow( $row );
4601 global $wgInvalidRedirectTargets;
4605 if ( $this->
isSpecial(
'Userlogout' ) ) {
4609 foreach ( $wgInvalidRedirectTargets
as $target ) {
4634 global $wgExemptFromUserRobotsControl;
4636 $bannedNamespaces = is_null( $wgExemptFromUserRobotsControl )
4638 : $wgExemptFromUserRobotsControl;
4640 return !in_array( $this->mNamespace, $bannedNamespaces );
4655 $unprefixed = $this->
getText();
4661 Hooks::run(
'GetDefaultSortkey', [ $this, &$unprefixed ] );
4662 if ( $prefix !==
'' ) {
4663 # Separate with a line feed, so the unprefixed part is only used as
4664 # a tiebreaker when two pages have the exact same prefix.
4665 # In UCA, tab is the only character that can sort above LF
4666 # so we strip both of them from the original prefix.
4667 $prefix = strtr( $prefix,
"\n\t",
' ' );
4668 return "$prefix\n$unprefixed";
4681 global $wgPageLanguageUseDB;
4685 if ( $wgPageLanguageUseDB && $this->mDbPageLanguage ===
false ) {
4687 $linkCache->addLinkObj( $this );
4688 $this->mDbPageLanguage = $linkCache->getGoodLinkFieldObj( $this,
'lang' );
4711 if ( $dbPageLanguage ) {
4715 if ( !$this->mPageLanguage || $this->mPageLanguage[1] !== $wgLanguageCode ) {
4723 $langObj = $contentHandler->getPageLanguage( $this );
4746 $variant = $wgLang->getPreferredVariant();
4747 if ( $wgLang->getCode() !== $variant ) {
4756 if ( $dbPageLanguage ) {
4758 $variant = $pageLang->getPreferredVariant();
4759 if ( $pageLang->getCode() !== $variant ) {
4770 $pageLang = $contentHandler->getPageViewLanguage( $this );
4788 $editnotice_ns =
'editnotice-' . $this->
getNamespace();
4790 if ( $msg->exists() ) {
4791 $html = $msg->parseAsBlock();
4793 if ( trim(
$html ) !==
'' ) {
4798 'mw-editnotice-namespace',
4808 $parts = explode(
'/', $this->
getDBkey() );
4809 $editnotice_base = $editnotice_ns;
4810 while ( count( $parts ) > 0 ) {
4811 $editnotice_base .=
'-' . array_shift( $parts );
4813 if ( $msg->exists() ) {
4814 $html = $msg->parseAsBlock();
4815 if ( trim(
$html ) !==
'' ) {
4820 'mw-editnotice-base',
4830 $editnoticeText = $editnotice_ns .
'-' . strtr( $this->
getDBkey(),
'/',
'-' );
4832 if ( $msg->exists() ) {
4833 $html = $msg->parseAsBlock();
4834 if ( trim(
$html ) !==
'' ) {
4839 'mw-editnotice-page',
4848 Hooks::run(
'TitleGetEditNotices', [ $this, $oldid, &$notices ] );
4863 'mDefaultNamespace',
4868 $this->mArticleID = ( $this->mNamespace >= 0 ) ? -1 : 0;
4869 $this->mUrlform =
wfUrlencode( $this->mDbkeyform );
4870 $this->mTextform = strtr( $this->mDbkeyform,
'_',
' ' );
getEarliestRevTime($flags=0)
Get the oldest revision timestamp of this page.
bool $mHasSubpages
Whether a page has any subpages.
isAlwaysKnown()
Should links to this title be shown as potentially viewable (i.e.
static newFromRow($row)
Make a Title object from a DB row.
static purgeExpiredRestrictions()
Purge expired restrictions from the page_restrictions table.
getLatestRevID($flags=0)
What is the page_latest field for this page?
setFragment($fragment)
Set the fragment for this title.
static newFromID($id, $flags=0)
Create a new Title from an article ID.
static getTitleInvalidRegex()
Returns a simple regex that will match on characters and sequences invalid in titles.
static whoIs($id)
Get the username corresponding to a given user ID.
static isMovable($index)
Can pages in the given namespace be moved?
touchLinks()
Update page_touched timestamps and send CDN purge messages for pages linking to this title...
getFragment()
Get the Title fragment (i.e.
static getMainWANInstance()
Get the main WAN cache object.
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
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
mixed $mTitleProtection
Cached value for getTitleProtection (create protection)
exists($flags=0)
Check if page exists.
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
getFullUrlForRedirect($query= '', $proto=PROTO_CURRENT)
Get a url appropriate for making redirects based on an untrusted url arg.
isMovable()
Would anybody with sufficient privileges be able to move this page? Some pages just aren't movable...
getInternalURL($query= '', $query2=false)
Get the URL form for an internal link.
getRootTitle()
Get the root page name title, i.e.
static getLocalNameFor($name, $subpage=false)
Get the local name for a specified canonical name.
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
the array() calling protocol came about after MediaWiki 1.4rc1.
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
canUseNoindex()
Whether the magic words INDEX and NOINDEX function for this page.
isJsSubpage()
Is this a .js subpage of a user page?
const CONTENT_MODEL_WIKITEXT
wasLocalInterwiki()
Was this a local interwiki link?
$wgScript
The URL path to index.php.
isContentPage()
Is this Title in a namespace which contains content? In other words, is this a content page...
getUserCaseDBKey()
Get the DB key with the initial letter case as specified by the user.
Handles the backend logic of moving a page from one title to another.
isNamespaceProtected(User $user)
Determines if $user is unable to edit this page because it has been protected by $wgNamespaceProtecti...
isSpecial($name)
Returns true if this title resolves to the named special page.
getArticleID($flags=0)
Get the article ID for this Title from the link cache, adding it if necessary.
hasSubpages()
Does this have subpages? (Warning, usually requires an extra DB query.)
static nameOf($id)
Get the prefixed DB key associated with an ID.
getText()
Get the text form (spaces not underscores) of the main part.
getSubpageText()
Get the lowest-level subpage name, i.e.
getBaseText()
Get the base page name without a namespace, i.e.
processing should stop and the error should be shown to the user * false
static newMainPage()
Create a new Title for the Main Page.
moveSubpages($nt, $auth=true, $reason= '', $createRedirect=true)
Move this page's subpages to be subpages of $nt.
getDefaultMessageText()
Get the default message text or false if the message doesn't exist.
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
getEditNotices($oldid=0)
Get a list of rendered edit notices for this page.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
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...
getSubjectNsText()
Get the namespace text of the subject (rather than talk) page.
if(!$wgDBerrorLogTZ) $wgRequest
static getCacheSetOptions(IDatabase $db1)
Merge the result of getSessionLagStatus() for several DBs using the most pessimistic values to estima...
getUserPermissionsErrorsInternal($action, $user, $rigor= 'secure', $short=false)
Can $user perform $action on this page? This is an internal function, with multiple levels of checks ...
getTransWikiID()
Returns the DB name of the distant wiki which owns the object.
static rawElement($element, $attribs=[], $contents= '')
Returns an HTML element in a string.
bool $mForcedContentModel
If a content model was forced via setContentModel() this will be true to avoid having other code path...
isCssJsSubpage()
Is this a .css or .js subpage of a user page?
static canTalk($index)
Can this namespace ever have a talk namespace?
$wgInternalServer
Internal server name as known to CDN, if different.
isWatchable()
Can this title be added to a user's watchlist?
checkUserBlock($action, $user, $errors, $rigor, $short)
Check that the user isn't blocked from editing.
if(!isset($args[0])) $lang
static isTalk($index)
Is the given namespace a talk namespace?
hasSubjectNamespace($ns)
Returns true if the title has the same subject namespace as the namespace specified.
secureAndSplit()
Secure and split - main initialisation function for this object.
bool $mIsBigDeletion
Would deleting this page be a big deletion?
inNamespaces()
Returns true if the title is inside one of the specified namespaces.
moveNoAuth(&$nt)
Move this page without authentication.
isTalkPage()
Is this a talk page of some sort?
Handles purging appropriate CDN URLs given a title (or titles)
string $mUrlform
URL-encoded form of the main part.
static getDefaultModelFor(Title $title)
Returns the name of the default content model to be used for the page with the given title...
getDbPageLanguageCode()
Returns the page language code saved in the database, if $wgPageLanguageUseDB is set to true in Local...
null for the local wiki Added in
isRedirect($flags=0)
Is this an article that is a redirect page? Uses link cache, adding it if necessary.
Represents a page (or page fragment) title within MediaWiki.
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
isBigDeletion()
Check whether the number of revisions of this page surpasses $wgDeleteRevisionsLimit.
set($key, $value, $exptime=0, $flags=0)
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context $revId
getTemplateLinksFrom($options=[])
Get an array of Title objects used on this Title as a template Also stores the IDs in the link cache...
prefix($name)
Prefix some arbitrary text with the namespace or interwiki prefix of this object. ...
getOtherPage()
Get the other title for this page, if this is a subject page get the talk page, if it is a subject pa...
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
static escapeFragmentForURL($fragment)
Escape a text fragment, say from a link, for a URL.
it s the revision text itself In either if gzip is the revision text is gzipped $flags
static getInterwikiLookup()
B/C kludge: provide an InterwikiLookup for use by Title.
isValidMoveTarget($nt)
Checks if $this can be moved to a given Title.
static escapeClass($class)
Given a value, escape it so that it can be used as a CSS class and return it.
static escapeRegexReplacement($string)
Escape a string to make it suitable for inclusion in a preg_replace() replacement parameter...
getPrefixedText()
Get the prefixed title with spaces.
static exists($index)
Returns whether the specified namespace exists.
wfUrlencode($s)
We want some things to be included as literal characters in our title URLs for prettiness, which urlencode encodes by default.
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
getBaseTitle()
Get the base page name title, i.e.
when a variable name is used in a it is silently declared as a new local masking the global
wfExpandUrl($url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
getParentCategories()
Get categories to which this Title belongs and return an array of categories' names.
getBacklinkCache()
Get a backlink cache object.
timestamp($ts=0)
Convert a timestamp in one of the formats accepted by wfTimestamp() to the format used for inserting ...
static newFromLinkTarget(LinkTarget $linkTarget)
Create a new Title from a LinkTarget.
static newFromTitle(LinkTarget $linkTarget, $id=0, $flags=0)
Load either the current, or a specified, revision that's attached to a given link target...
wfLocalFile($title)
Get an object referring to a locally registered file.
The TitleArray class only exists to provide the newFromResult method at pre- sent.
checkQuickPermissions($action, $user, $errors, $rigor, $short)
Permissions checks that fail most often, and which are easiest to test.
getSkinFromCssJsSubpage()
Trim down a .css or .js subpage title to get the corresponding skin name.
static getFilteredRestrictionTypes($exists=true)
Get a filtered list of all restriction types supported by this wiki.
getTalkPage()
Get a Title object associated with the talk page of this article.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist & $tables
array $mCascadeSources
Where are the cascading restrictions coming from on this page?
getNotificationTimestamp($user=null)
Get the timestamp when this page was updated since the user last saw it.
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
fixSpecialName()
If the Title refers to a special page alias which is not the local default, resolve the alias...
static isEveryoneAllowed($right)
Check if all users may be assumed to have the given permission.
getSubpages($limit=-1)
Get all subpages of this page.
userCan($action, $user=null, $rigor= 'secure')
Can $user perform $action on this 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
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message.Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item.Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page.Return false to stop further processing of the tag $reader:XMLReader object &$pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision.Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag.Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload.Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports.&$fullInterwikiPrefix:Interwiki prefix, may contain colons.&$pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable.Can be used to lazy-load the import sources list.&$importSources:The value of $wgImportSources.Modify as necessary.See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page.$context:IContextSource object &$pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect.&$title:Title object for the current page &$request:WebRequest &$ignoreRedirect:boolean to skip redirect check &$target:Title/string of redirect target &$article:Article object 'InternalParseBeforeLinks':during Parser's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InternalParseBeforeSanitize':during Parser's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings.Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not.Return true without providing an interwiki to continue interwiki search.$prefix:interwiki prefix we are looking for.&$iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user's email has been invalidated successfully.$user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification.Callee may modify $url and $query, URL will be constructed as $url.$query &$url:URL to index.php &$query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) &$article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() &$ip:IP being check &$result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from &$allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn't match your organization.$addr:The e-mail address entered by the user &$result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user &$result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we're looking for a messages file for &$file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces.Do not use this hook to add namespaces.Use CanonicalNamespaces for that.&$namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names.&$names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page's language links.This is called in various places to allow extensions to define the effective language links for a page.$title:The page's Title.&$links:Associative array mapping language codes to prefixed links of the form"language:title".&$linkFlags:Associative array mapping prefixed links to arrays of flags.Currently unused, but planned to provide support for marking individual language links in the UI, e.g.for featured articles. 'LanguageSelector':Hook to change the language selector available on a page.$out:The output page.$cssClassName:CSS class name of the language selector. 'LinkBegin':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
Deferrable Update for closure/callback updates that should use auto-commit mode.
static isCapitalized($index)
Is the namespace first-letter capitalized?
static get(Title $title)
Create a new BacklinkCache or reuse any existing one.
$wgLanguageCode
Site language code.
bool $mCascadeRestriction
Cascade restrictions on this page to included templates and images?
inNamespace($ns)
Returns true if the title is inside the specified namespace.
flushRestrictions()
Flush the protection cache in this object and force reload from the database.
getContentModel($flags=0)
Get the page's content model id, see the CONTENT_MODEL_XXX constants.
getLength($flags=0)
What is the length of this page? Uses link cache, adding it if necessary.
static HashBagOStuff $titleCache
string $mDbkeyform
Main part with underscores.
getNsText()
Get the namespace text.
delete($table, $conds, $fname=__METHOD__)
DELETE query wrapper.
isValidMoveOperation(&$nt, $auth=true, $reason= '')
Check whether a given move operation would be valid.
if($wgScript===false) if($wgLoadScript===false) if($wgArticlePath===false) if(!empty($wgActionPaths)&&!isset($wgActionPaths['view'])) if($wgResourceBasePath===null) if($wgStylePath===false) if($wgLocalStylePath===false) if($wgExtensionAssetsPath===false) if($wgLogo===false) if($wgUploadPath===false) if($wgUploadDirectory===false) if($wgReadOnlyFile===false) if($wgFileCacheDirectory===false) if($wgDeletedDirectory===false) if($wgGitInfoCacheDirectory===false &&$wgCacheDirectory!==false) if($wgEnableParserCache===false) if($wgRightsIcon) if(isset($wgFooterIcons['copyright']['copyright'])&&$wgFooterIcons['copyright']['copyright']===[]) if(isset($wgFooterIcons['poweredby'])&&isset($wgFooterIcons['poweredby']['mediawiki'])&&$wgFooterIcons['poweredby']['mediawiki']['src']===null) $wgNamespaceProtection[NS_MEDIAWIKI]
Unconditional protection for NS_MEDIAWIKI since otherwise it's too easy for a sysadmin to set $wgName...
createFragmentTarget($fragment)
Creates a new Title for a different fragment of the same page.
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
getNextRevisionID($revId, $flags=0)
Get the revision ID of the next revision.
string bool $mOldRestrictions
Text form (spaces not underscores) of the main part.
wfReadOnly()
Check whether the wiki is in read-only mode.
isExternal()
Is this Title interwiki?
static fixUrlQueryArgs($query, $query2=false)
Helper to fix up the get{Canonical,Full,Link,Local,Internal}URL args get{Canonical,Full,Link,Local,Internal}URL methods accepted an optional second argument named variant.
deleteTitleProtection()
Remove any title protection due to page existing.
static getMain()
Static methods.
int $mNamespace
Namespace index, i.e.
static groupHasPermission($group, $role)
Check, if the given group has the given permission.
static singleton()
Get an instance of this class.
wfMergeErrorArrays()
Merge arrays in the style of getUserPermissionsErrors, with duplicate removal e.g.
static getCanonicalName($index)
Returns the canonical (English) name for a given index.
hasSourceText()
Does this page have source text?
static newFromIDs($ids)
Make an array of titles from an array of IDs.
wfAppendQuery($url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
static getTitleFormatter()
B/C kludge: provide a TitleParser for use by Title.
isAllowed($action= '')
Internal mechanics of testing a permission.
Class to invalidate the HTML cache of all the pages linking to a given title.
getDBkey()
Get the main part with underscores.
__toString()
Return a string representation of this title.
getPrefixedURL()
Get a URL-encoded title (not an actual URL) including interwiki.
hasFragment()
Check if a Title fragment is set.
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 unsetoffset-wrap String Wrap the message in html(usually something like"<
hasContentModel($id)
Convenience method for checking a title's content model name.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
selectFieldValues($table, $var, $cond= '', $fname=__METHOD__, $options=[])
A SELECT wrapper which returns a list of single field values from result rows.
areRestrictionsCascading()
Returns cascading restrictions for the current article.
isConversionTable()
Is this a conversion table for the LanguageConverter?
static newFromDBkey($key)
Create a new Title from a prefixed DB key.
getRootText()
Get the root page name text without a namespace, i.e.
getTouched($db=null)
Get the last touched timestamp.
getLocalURL($query= '', $query2=false)
Get a URL with no fragment or server name (relative URL) from a Title object.
checkCSSandJSPermissions($action, $user, $errors, $rigor, $short)
Check CSS/JS sub-page permissions.
bool string $mContentModel
ID of the page's content model, i.e.
canExist()
Is this in a namespace that allows actual pages?
getSubpage($text)
Get the title for a subpage of the current page.
const GAID_FOR_UPDATE
Used to be GAID_FOR_UPDATE define.
null $mRedirect
Is the article at this title a redirect?
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
isValidRedirectTarget()
Check if this Title is a valid redirect target.
isCascadeProtected()
Cascading protection: Return true if cascading restrictions apply to this page, false if not...
invalidateCache($purgeTime=null)
Updates page_touched for this page; called from LinksUpdate.php.
getCdnUrls()
Get a list of URLs to purge from the CDN cache when this page changes.
Deferrable Update for closure/callback updates via IDatabase::doAtomicSection()
getUserPermissionsErrors($action, $user, $rigor= 'secure', $ignoreErrors=[])
Can $user perform $action on this page?
getLinksFrom($options=[], $table= 'pagelinks', $prefix= 'pl')
Get an array of Title objects linked from this Title Also stores the IDs in the link cache...
getDefaultNamespace()
Get the default namespace index, for when there is no namespace.
moveTo(&$nt, $auth=true, $reason= '', $createRedirect=true)
Move a title to a new location.
getRedirectsHere($ns=null)
Get all extant redirects to this Title.
static selectFields()
Return the list of revision fields that should be selected to create a new revision.
checkSpecialsAndNSPermissions($action, $user, $errors, $rigor, $short)
Check permissions on special pages & namespaces.
wfDeprecated($function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
getCanonicalURL($query= '', $query2=false)
Get the URL for a canonical link, for use in things like IRC and e-mail notifications.
isSubpageOf(Title $title)
Check if this title is a subpage of another title.
array $mNotificationTimestamp
Associative array of user ID -> timestamp/false.
static makeTitleSafe($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
static getContentNamespaces()
Get a list of all namespace indices which are considered to contain content.
getFullText()
Get the prefixed title with spaces, plus any fragment (part beginning with '#')
static subjectEquals($ns1, $ns2)
Returns whether the specified namespaces share the same subject.
string bool null $mDbPageLanguage
The page language code from the database, null if not saved in the database or false if not loaded...
validateFileMoveOperation($nt)
Check if the requested move target is a valid file move target.
isCssSubpage()
Is this a .css subpage of a user page?
isMainPage()
Is this the mainpage?
static decodeCharReferencesAndNormalize($text)
Decode any character references, numeric or named entities, in the next and normalize the resulting s...
namespace and then decline to actually register it file or subcat img or subcat $title
getAuthorsBetween($old, $new, $limit, $options=[])
Get the authors between the given revisions or revision IDs.
static hasSubpages($index)
Does the namespace allow subpages?
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
getNamespace()
Get the namespace index, i.e.
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
string $mInterwiki
Interwiki prefix.
equals(Title $title)
Compare with another title.
isKnown()
Does this title refer to a page that can (or might) be meaningfully viewed? In particular, this function may be used to determine if links to the title should be rendered as "bluelinks" (as opposed to "redlinks" to non-existent pages).
getTemplateLinksTo($options=[])
Get an array of Title objects using this Title as a template Also stores the IDs in the link cache...
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
static newFromResult($res)
areRestrictionsLoaded()
Accessor for mRestrictionsLoaded.
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
checkCascadingSourcesRestrictions($action, $user, $errors, $rigor, $short)
Check restrictions on cascading pages.
static equals($ns1, $ns2)
Returns whether the specified namespaces are the same namespace.
isSubpage()
Is this a subpage?
getInterwiki()
Get the interwiki prefix.
static getForTitle(Title $title)
Returns the appropriate ContentHandler singleton for the given title.
loadFromRow($row)
Load Title object fields from a DB row.
areCascadeProtectionSourcesLoaded($getPages=true)
Determines whether cascading protection sources have already been loaded from the database...
namespace and then decline to actually register it & $namespaces
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
getBrokenLinksFrom()
Get an array of Title objects referring to non-existent articles linked from this page...
getNamespaceKey($prepend= 'nstab-')
Generate strings used for xml 'id' names in monobook tabs.
countRevisionsBetween($old, $new, $max=null)
Get the number of revisions between the given revision.
array $mRestrictionsExpiry
When do the restrictions on this page expire?
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
static newFromTitleValue(TitleValue $titleValue)
Create a new Title from a TitleValue.
getRestrictions($action)
Accessor/initialisation for mRestrictions.
CONTENT_MODEL_JAVASCRIPT
Uploads have to be specially set up to be secure.
getSubjectPage()
Get a title object associated with the subject page of this talk page.
int $mLength
The page length, 0 for special pages.
getFirstRevision($flags=0)
Get the first revision of the page.
static escapeId($id, $options=[])
Given a value, escape it so that it can be used in an id attribute and return it. ...
static newFromTextThrow($text, $defaultNamespace=NS_MAIN)
Like Title::newFromText(), but throws MalformedTitleException when the title is invalid, rather than returning null.
isSpecialPage()
Returns true if this is a special page.
quickUserCan($action, $user=null)
Can $user perform $action on this page? This skips potentially expensive cascading permission checks ...
getEditURL()
Get the edit URL for this Title.
$wgLegalTitleChars
Allowed title characters – regex character class Don't change this unless you know what you're doing...
loadRestrictions($oldFashionedRestrictions=null)
Load restrictions from the page_restrictions table.
static getTalk($index)
Get the talk namespace index for a given namespace.
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
static convertByteClassToUnicodeClass($byteClass)
Utility method for converting a character sequence from bytes to Unicode.
isSingleRevRedirect()
Checks if this page is just a one-rev redirect.
static addUpdate(DeferrableUpdate $update, $stage=self::POSTSEND)
Add an update to the deferred list to be run later by execute()
getPageViewLanguage()
Get the language in which the content of this page is written when viewed by user.
getSubpageUrlForm()
Get a URL-encoded form of the subpage text.
$mCascadingRestrictions
Caching the results of getCascadeProtectionSources.
if(!defined( 'MEDIAWIKI')) $fname
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined...
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
static resolveAlias($alias)
Given a special page name with a possible subpage, return an array where the first element is the spe...
getRestrictionTypes()
Returns restriction types for the current Title.
static exists($name)
Check if a given name exist as a special page or as a special page alias.
static isContent($index)
Does this namespace contain content, for the purposes of calculating statistics, etc?
TitleValue $mTitleValue
A corresponding TitleValue object.
bool $mPageLanguage
The (string) language code of the page's language and content code.
isTrans()
Determine whether the object refers to a page within this project and is transcludable.
string $mFragment
Title fragment (i.e.
int $mArticleID
Article ID, fetched from the link cache on demand.
int $mDefaultNamespace
Namespace index when there is no namespace.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content $content
getCategorySortkey($prefix= '')
Returns the raw sort key to be used for categories, with the specified prefix.
wfArrayToCgi($array1, $array2=null, $prefix= '')
This function takes one or two arrays as input, and returns a CGI-style string, e.g.
static makeName($ns, $title, $fragment= '', $interwiki= '', $canonicalNamespace=false)
Make a prefixed DB key from a DB key and a namespace index.
static newFromURL($url)
THIS IS NOT THE FUNCTION YOU WANT.
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...
checkReadPermissions($action, $user, $errors, $rigor, $short)
Check that the user is allowed to read this page.
isCssOrJsPage()
Could this page contain custom CSS or JavaScript for the global UI.
getCascadeProtectionSources($getPages=true)
Cascading protection: Get the source of any cascading restrictions on this page.
getFragmentForURL()
Get the fragment in URL form, including the "#" character if there is one.
get($key, $flags=0, $oldFlags=null)
Get an item with the given key.
pageCond()
Get an associative array for selecting this title from the "page" table.
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...
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
string $mPrefixedText
Text form including namespace/interwiki, initialised on demand.
isDeletedQuick()
Is there a version of this page in the deletion archive?
isNewPage()
Check if this is a new page.
missingPermissionError($action, $short)
Get a description array when the user doesn't have the right to perform $action (i.e.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
isProtected($action= '')
Does the title correspond to a protected article?
static compare(LinkTarget $a, LinkTarget $b)
Callback for usort() to do title sorts by (namespace, title)
canTalk()
Could this title have a corresponding talk page?
checkActionPermissions($action, $user, $errors, $rigor, $short)
Check action permissions not already checked in checkQuickPermissions.
bool $mRestrictionsLoaded
Boolean for initialisation on demand.
static legalChars()
Get a regex character class describing the legal characters in a link.
$wgServer
URL of the server.
isDeleted()
Is there a version of this page in the deletion archive?
isLocal()
Determine whether the object refers to a page within this project (either this wiki or a wiki with a ...
loadRestrictionsFromRows($rows, $oldFashionedRestrictions=null)
Compiles list of active page restrictions from both page table (pre 1.10) and page_restrictions table...
array $mRestrictions
Array of groups allowed to edit this article.
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...
getTitleProtection()
Is this title subject to title protection? Title protection is the one applied against creation of su...
bool $mLocalInterwiki
Was this Title created from a string with a local interwiki prefix?
addQuotes($s)
Adds quotes and backslashes.
int $mEstimateRevisions
Estimated number of revisions; null of not loaded.
countAuthorsBetween($old, $new, $limit, $options=[])
Get the number of authors between the given revisions or revision IDs.
getTalkNsText()
Get the namespace text of the talk page.
checkPageRestrictions($action, $user, $errors, $rigor, $short)
Check against page_restrictions table requirements on this page.
static getSelectFields()
Returns a list of fields that are to be selected for initializing Title objects or LinkCache entries...
checkPermissionHooks($action, $user, $errors, $rigor, $short)
Check various permission hooks.
static factory($code)
Get a cached or new language object for a given language code.
getParentCategoryTree($children=[])
Get a tree of parent categories.
string $mTextform
Text form (spaces not underscores) of the main part.
static selectFields()
Return the list of revision fields that should be selected to create a new page.
getAllRestrictions()
Accessor/initialisation for mRestrictions.
isSemiProtected($action= 'edit')
Is this page "semi-protected" - the only protection levels are listed in $wgSemiprotectedRestrictionL...
static getSubject($index)
Get the subject namespace index for a given namespace Special namespaces (NS_MEDIA, NS_SPECIAL) are always the subject.
bool int $mLatestID
ID of most recent revision.
resultToError($errors, $result)
Add the resulting error code to the errors array.
getRestrictionExpiry($action)
Get the expiry time for the restriction against a given action.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account incomplete not yet checked for validity & $retval
wfFindFile($title, $options=[])
Find a file.
getPreviousRevisionID($revId, $flags=0)
Get the revision ID of the previous revision.
$wgVariantArticlePath
Like $wgArticlePath, but on multi-variant wikis, this provides a path format that describes which par...
within a display generated by the Derivative if and wherever such third party notices normally appear The contents of the NOTICE file are for informational purposes only and do not modify the License You may add Your own attribution notices within Derivative Works that You alongside or as an addendum to the NOTICE text from the provided that such additional attribution notices cannot be construed as modifying the License You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for or distribution of Your or for any such Derivative Works as a provided Your and distribution of the Work otherwise complies with the conditions stated in this License Submission of Contributions Unless You explicitly state any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this without any additional terms or conditions Notwithstanding the nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions Trademarks This License does not grant permission to use the trade names
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
static makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
static isWatchable($index)
Can pages in a namespace be watched?
static capitalize($text, $ns=NS_MAIN)
Capitalize a text string for a title if it belongs to a namespace that capitalizes.
isWikitextPage()
Does that page contain wikitext, or it is JS, CSS or whatever?
static singleton()
Get the signleton instance of this class.
purgeSquid()
Purge all applicable CDN URLs.
static getGroupsWithPermission($role)
Get all the groups who have a given permission.
update($table, $values, $conds, $fname=__METHOD__, $options=[])
UPDATE wrapper.
resetArticleID($newid)
This clears some fields in this object, and clears any associated keys in the "bad links" section of ...
Basic database interface for live and lazy-loaded relation database handles.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
getTitleValue()
Get a TitleValue object representing this Title.
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 $mHasCascadingRestrictions
Are cascading restrictions in effect on this page?
getPartialURL()
Get the URL-encoded form of the main part.
wfGetLangObj($langcode=false)
Return a Language object from $langcode.
getPrefixedDBkey()
Get the prefixed database key form.
getFullURL($query= '', $query2=false, $proto=PROTO_RELATIVE)
Get a real URL referring to this title, with interwiki link and fragment.
estimateRevisionCount()
Get the approximate revision count of this page.
setContentModel($model)
Set a proposed content model for the page for permissions checking.
string $mUserCaseDBKey
Database key with the initial letter in the case specified by the user.
Allows to change the fields on the form that will be generated $name