30 define(
'MSG_CACHE_VERSION', 2 );
103 if ( self::$instance === null ) {
105 self::$instance =
new self(
112 return self::$instance;
121 self::$instance = null;
132 $lckey = strtr( $key,
' ',
'_' );
133 if ( ord( $lckey ) < 128 ) {
134 $lckey[0] = strtolower( $lckey[0] );
136 $lckey = $wgContLang->lcfirst( $lckey );
154 $this->mMemc = $memCached;
155 $this->mDisable = !$useDB;
156 $this->mExpiry = $expiry;
158 if ( $wgUseLocalMessageCache ) {
159 $this->localCache = MediaWikiServices::getInstance()->getLocalServerObjectCache();
175 if ( !$this->mParserOptions ) {
176 if ( !$wgUser->isSafeToLoad() ) {
181 $po->setEditSection(
false );
201 return $this->localCache->get( $cacheKey );
212 $this->localCache->set( $cacheKey,
$cache );
237 if ( !is_string(
$code ) ) {
241 # Don't do double loading...
242 if ( isset( $this->mLoadedLanguages[
$code] ) && $mode != self::FOR_UPDATE ) {
246 # 8 lines of code just to say (once) that message cache is disabled
247 if ( $this->mDisable ) {
248 static $shownDisabled =
false;
249 if ( !$shownDisabled ) {
250 wfDebug( __METHOD__ .
": disabled\n" );
251 $shownDisabled =
true;
257 # Loading code starts
259 $staleCache =
false; # a
cache array with expired
data,
or false if none has been loaded
260 $where = []; # Debug
info, delayed to avoid spamming debug log
too much
262 # Hash of the contents is stored in memcache, to detect if data-center cache
263 # or local cache goes out of date (e.g. due to replace() on some other server)
266 # Try the local cache and check against the cluster hash key...
269 $where[] =
'local cache is empty';
270 } elseif ( !isset(
$cache[
'HASH'] ) ||
$cache[
'HASH'] !== $hash ) {
271 $where[] =
'local cache has the wrong hash';
274 $where[] =
'local cache is expired';
276 } elseif ( $hashVolatile ) {
277 $where[] =
'local cache validation key is expired/volatile';
280 $where[] =
'got from local cache';
287 # Try the global cache. If it is empty, try to acquire a lock. If
288 # the lock can't be acquired, wait for the other thread to finish
289 # and then try the global cache a second time.
290 for ( $failedAttempts = 0; $failedAttempts <= 1; $failedAttempts++ ) {
291 if ( $hashVolatile && $staleCache ) {
292 # Do not bother fetching the whole cache blob to avoid I/O.
293 # Instead, just try to get the non-blocking $statusKey lock
294 # below, and use the local stale value if it was not acquired.
295 $where[] =
'global cache is presumed expired';
297 $cache = $this->mMemc->get( $cacheKey );
299 $where[] =
'global cache is empty';
301 $where[] =
'global cache is expired';
303 } elseif ( $hashVolatile ) {
304 # DB results are replica DB lag prone until the holdoff TTL passes.
305 # By then, updates should be reflected in loadFromDBWithLock().
306 # One thread renerates the cache while others use old values.
307 $where[] =
'global cache is expired/volatile';
310 $where[] =
'got from global cache';
318 # Done, no need to retry
322 # We need to call loadFromDB. Limit the concurrency to one process.
323 # This prevents the site from going down when the cache expires.
324 # Note that the DB slam protection lock here is non-blocking.
326 if ( $loadStatus ===
true ) {
329 } elseif ( $staleCache ) {
330 # Use the stale cache while some other thread constructs the new one
331 $where[] =
'using stale cache';
332 $this->mCache[
$code] = $staleCache;
335 } elseif ( $failedAttempts > 0 ) {
336 # Already blocked once, so avoid another lock/unlock cycle.
337 # This case will typically be hit if memcached is down, or if
338 # loadFromDB() takes longer than LOCK_WAIT.
339 $where[] =
"could not acquire status key.";
341 } elseif ( $loadStatus ===
'cantacquire' ) {
342 # Wait for the other thread to finish, then retry. Normally,
343 # the memcached get() will then yeild the other thread's result.
344 $where[] =
'waited for other thread to complete';
347 # Disable cache; $loadStatus is 'disabled'
354 $where[] =
'loading FAILED - cache is disabled';
355 $this->mDisable =
true;
356 $this->mCache =
false;
357 wfDebugLog(
'MessageCacheError', __METHOD__ .
": Failed to load $code\n" );
358 # This used to throw an exception, but that led to nasty side effects like
359 # the whole wiki being instantly down if the memcached server died
361 # All good, just record the success
362 $this->mLoadedLanguages[
$code] =
true;
365 $info = implode(
', ', $where );
366 wfDebugLog(
'MessageCache', __METHOD__ .
": Loading $code... $info\n" );
380 # If cache updates on all levels fail, give up on message overrides.
381 # This is to avoid easy site outages; see $saveSuccess comments below.
383 $status = $this->mMemc->get( $statusKey );
385 $where[] =
"could not load; method is still globally disabled";
389 # Now let's regenerate
390 $where[] =
'loading from database';
392 # Lock the cache to prevent conflicting writes.
393 # This lock is non-blocking so stale cache can quickly be used.
394 # Note that load() will call a blocking getReentrantScopedLock()
395 # after this if it really need to wait for any current thread.
398 if ( !$scopedLock ) {
399 $where[] =
'could not acquire main lock';
400 return 'cantacquire';
407 if ( !$saveSuccess ) {
421 if ( !$wgUseLocalMessageCache ) {
422 $this->mMemc->set( $statusKey,
'error', 60 * 5 );
423 $where[] =
'could not save cache, disabled globally for 5 minutes';
425 $where[] =
"could not save global cache";
450 'page_is_redirect' => 0,
455 if ( $wgAdaptiveMessageCache &&
$code !== $wgLanguageCode ) {
456 if ( !isset( $this->mCache[$wgLanguageCode] ) ) {
457 $this->
load( $wgLanguageCode );
459 $mostused = array_keys( $this->mCache[$wgLanguageCode] );
460 foreach ( $mostused
as $key =>
$value ) {
461 $mostused[$key] =
"$value/$code";
465 if ( count( $mostused ) ) {
466 $conds[
'page_title'] = $mostused;
467 } elseif (
$code !== $wgLanguageCode ) {
468 $conds[] =
'page_title' .
$dbr->buildLike(
$dbr->anyString(),
'/',
$code );
470 # Effectively disallows use of '/' character in NS_MEDIAWIKI for uses
471 # other than language code.
472 $conds[] =
'page_title NOT' .
$dbr->buildLike(
$dbr->anyString(),
'/',
$dbr->anyString() );
475 # Conditions to fetch oversized pages to ignore them
477 $bigConds[] =
'page_len > ' . intval( $wgMaxMsgCacheEntrySize );
479 # Load titles for all oversized pages in the MediaWiki namespace
480 $res =
$dbr->select(
'page',
'page_title', $bigConds, __METHOD__ .
"($code)-big" );
481 foreach (
$res as $row ) {
482 $cache[$row->page_title] =
'!TOO BIG';
485 # Conditions to load the remaining pages with their contents
486 $smallConds = $conds;
487 $smallConds[] =
'page_latest=rev_id';
488 $smallConds[] =
'rev_text_id=old_id';
489 $smallConds[] =
'page_len <= ' . intval( $wgMaxMsgCacheEntrySize );
492 [
'page',
'revision',
'text' ],
493 [
'page_title',
'old_text',
'old_flags' ],
495 __METHOD__ .
"($code)-small"
498 foreach (
$res as $row ) {
500 if ( $text ===
false ) {
507 .
": failed to load message page text for {$row->page_title} ($code)"
510 $entry =
' ' . $text;
512 $cache[$row->page_title] = $entry;
532 if ( $this->mDisable ) {
537 if ( strpos(
$title,
'/' ) !==
false &&
$code === $wgLanguageCode ) {
552 if ( $text ===
false ) {
555 $this->wanCache->delete( $titleKey );
556 } elseif ( strlen( $text ) > $wgMaxMsgCacheEntrySize ) {
559 $this->wanCache->set( $titleKey,
' ' . $text, $this->mExpiry );
562 $this->wanCache->delete( $titleKey );
567 $this->mCache[
$code][
'LATEST'] = time();
574 ScopedCallback::consume( $scopedLock );
580 if (
$code ===
'en' ) {
587 $sidebarKey =
wfMemcKey(
'sidebar', $code );
588 $this->wanCache->delete( $sidebarKey );
593 $blobStore = $resourceloader->getMessageBlobStore();
594 $blobStore->updateMessage( $wgContLang->lcfirst( $msg ) );
606 if ( !isset(
$cache[
'VERSION'] ) || !isset(
$cache[
'EXPIRY'] ) ) {
629 if ( $dest ===
'all' ) {
631 $success = $this->mMemc->set( $cacheKey, $cache );
650 $value = $this->wanCache->get(
667 $expired = ( $curTTL < 0 );
671 return [ $hash, $expired ];
684 $this->wanCache->set(
687 'hash' => $cache[
'HASH'],
688 'latest' => isset( $cache[
'LATEST'] ) ? $cache[
'LATEST'] : 0
700 return $this->mMemc->getScopedLock( $key, $timeout, self::LOCK_TTL, __METHOD__ );
737 function get( $key, $useDB =
true, $langcode =
true, $isFullKey =
false ) {
738 if ( is_int( $key ) ) {
742 } elseif ( !is_string( $key ) ) {
744 } elseif ( $key ===
'' ) {
750 $pos = strrpos( $key,
'/' );
751 if ( $isFullKey && $pos !==
false ) {
752 $langcode = substr( $key, $pos + 1 );
753 $key = substr( $key, 0, $pos );
759 Hooks::run(
'MessageCache::get', [ &$lckey ] );
766 !$this->mDisable && $useDB
770 if ( $message ===
false ) {
771 $parts = explode(
'/', $lckey );
775 if ( count( $parts ) == 2 && $parts[1] !==
'' ) {
777 if ( $message === null ) {
784 if ( $message !==
false ) {
786 $message = str_replace(
788 # Fix
for trailing whitespace, removed
by textarea
790 # Fix
for NBSP, converted to space
by firefox
827 if ( $message !==
false ) {
832 $message = $this->
getMessageForLang( $wgContLang, $lckey, $useDB, $alreadyTried );
848 $langcode =
$lang->getCode();
852 $uckey = $wgContLang->ucfirst( $lckey );
854 if ( !isset( $alreadyTried[ $langcode ] ) ) {
860 if ( $message !==
false ) {
863 $alreadyTried[ $langcode ] =
true;
870 $message =
$lang->getMessage( $lckey );
871 if ( $message !== null ) {
879 foreach ( $fallbackChain
as $code ) {
880 if ( isset( $alreadyTried[ $code ] ) ) {
887 if ( $message !==
false ) {
890 $alreadyTried[
$code ] =
true;
906 if ( $langcode === $wgLanguageCode ) {
910 return "$uckey/$langcode";
930 if ( substr( $entry, 0, 1 ) ===
' ' ) {
933 return (
string)substr( $entry, 1 );
934 } elseif ( $entry ===
'!NONEXISTENT' ) {
936 } elseif ( $entry ===
'!TOO BIG' ) {
942 Hooks::run(
'MessagesPreLoad', [ $title, &$message ] );
943 if ( $message !==
false ) {
951 $titleKey =
wfMemcKey(
'messages',
'individual', $title );
954 $entry = $this->wanCache->get(
959 $entry = ( $curTTL >= 0 ) ? $entry :
false;
962 if ( substr( $entry, 0, 1 ) ===
' ' ) {
965 return (
string)substr( $entry, 1 );
966 } elseif ( $entry ===
'!NONEXISTENT' ) {
972 $this->wanCache->delete( $titleKey );
981 if ( $titleObj->getLatestRevID() ) {
984 $titleObj->getArticleID(),
985 $titleObj->getLatestRevID()
997 __METHOD__ .
": failed to load message page text for {$title} ($code)"
1005 $message =
$content->getWikitextForTransclusion();
1007 if ( $message ===
false || $message === null ) {
1010 __METHOD__ .
": message content doesn't provide wikitext "
1011 .
"(content model: " .
$content->getModel() .
")"
1017 $this->wanCache->set( $titleKey,
' ' . $message, $this->mExpiry, $cacheOpts );
1024 if ( $message ===
false ) {
1026 $this->wanCache->set( $titleKey,
'!NONEXISTENT', $this->mExpiry, $cacheOpts );
1041 if ( strpos( $message,
'{{' ) ===
false ) {
1045 if ( $this->mInParser ) {
1052 $popts->setInterfaceMessage( $interface );
1053 $popts->setTargetLanguage( $language );
1055 $userlang = $popts->setUserLang( $language );
1056 $this->mInParser =
true;
1057 $message =
$parser->transformMsg( $message, $popts,
$title );
1058 $this->mInParser =
false;
1059 $popts->setUserLang( $userlang );
1070 if ( !$this->mParser && isset( $wgParser ) ) {
1071 # Do some initialisation so that we don't have to do it twice
1072 $wgParser->firstCallInit();
1073 # Clone it and store it
1074 $class = $wgParserConf[
'class'];
1075 if ( $class ==
'ParserDiffTest' ) {
1077 $this->mParser =
new $class( $wgParserConf );
1095 $interface =
false, $language = null
1097 if ( $this->mInParser ) {
1098 return htmlspecialchars( $text );
1103 $popts->setInterfaceMessage( $interface );
1105 if ( is_string( $language ) ) {
1108 $popts->setTargetLanguage( $language );
1112 wfDebugLog(
'GlobalTitleFail', __METHOD__ .
' called by ' .
1118 # It's not uncommon having a null $wgTitle in scripts. See r80898
1119 # Create a ghost title in such case
1123 $this->mInParser =
true;
1125 $this->mInParser =
false;
1131 $this->mDisable =
true;
1135 $this->mDisable =
false;
1159 foreach ( array_keys( $langs )
as $code ) {
1160 # Global and local caches
1161 $this->wanCache->touchCheckKey(
wfMemcKey(
'messages', $code ) );
1164 $this->mLoadedLanguages = [];
1174 $pieces = explode(
'/', $key );
1175 if ( count( $pieces ) < 2 ) {
1179 $lang = array_pop( $pieces );
1184 $message = implode(
'/', $pieces );
1186 return [ $message,
$lang ];
1200 if ( !isset( $this->mCache[
$code] ) ) {
1206 unset(
$cache[
'VERSION'] );
1207 unset(
$cache[
'EXPIRY'] );
1212 return array_map( [ $wgContLang,
'lcfirst' ], array_keys(
$cache ) );
saveToCaches(array $cache, $dest, $code=false)
Shortcut to update caches.
and how to run hooks for an and one after Each event has a preferably in CamelCase For ArticleDelete hook A clump of code and data that should be run when an event happens This can be either a function and a chunk of data
static getMainWANInstance()
Get the main WAN cache object.
getMessageFromFallbackChain($lang, $lckey, $useDB)
Given a language, try and fetch messages from that language.
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
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
const MSG_CACHE_VERSION
MediaWiki message cache structure version.
the array() calling protocol came about after MediaWiki 1.4rc1.
static getRevisionText($row, $prefix= 'old_', $wiki=false)
Get revision text associated with an old or archive row $row is usually an object from wfFetchRow()...
I won t presume to tell you how to I m just describing the methods I chose to use for myself If you do choose to follow these it will probably be easier for you to collaborate with others on the but if you want to contribute without by all means do which work well I also use K &R brace matching style I know that s a religious issue for so if you want to use a style that puts opening braces on the next that s OK too
processing should stop and the error should be shown to the user * false
isCacheExpired($cache)
Is the given cache array expired due to time passing or a version change?
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
static getMessageFor($key, $code)
Get a message for a given language.
static getCacheSetOptions(IDatabase $db1)
Merge the result of getSessionLagStatus() for several DBs using the most pessimistic values to estima...
Set options of the Parser.
globals txt Globals are evil The original MediaWiki code relied on globals for processing context far too often MediaWiki development since then has been a story of slowly moving context out of global variables and into objects Storing processing context in object member variables allows those objects to be reused in a much more flexible way Consider the elegance of
database rows
if(!isset($args[0])) $lang
static destroyInstance()
Destroy the singleton instance.
null for the local wiki Added in
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
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
when a variable name is used in a it is silently declared as a new local masking the global
static getFallbacksFor($code)
Get the ordered list of fallback languages.
wfGetMessageCacheStorage()
Get the cache object used by the message cache.
Message cache Performs various MediaWiki namespace-related functions.
transform($message, $interface=false, $language=null, $title=null)
$wgUseLocalMessageCache
Set this to true to maintain a copy of the message cache on the local server.
getMsgFromNamespace($title, $code)
Get a message from the MediaWiki namespace, with caching.
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
static fetchLanguageNames($inLanguage=null, $include= 'mw')
Get an array of language names, indexed by code.
getParserOptions()
ParserOptions is lazy initialised.
getLocalCache($code)
Try to load the cache from APC.
passed in as a query string parameter to the various URLs constructed here(i.e.$prevlink) $ldel you ll need to handle error messages
you have access to all of the normal MediaWiki so you can get a DB use the cache
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
static normalizeKey($key)
Normalize message key input.
$wgLanguageCode
Site language code.
wfDebugLog($logGroup, $text, $dest= 'all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not...
saveToLocalCache($code, $cache)
Save the cache to APC.
$wgMaxMsgCacheEntrySize
Maximum entry size in the message cache, in bytes.
static getMain()
Static methods.
wfGetCache($cacheType)
Get a specific cache object.
$wgAdaptiveMessageCache
Instead of caching everything, only cache those messages which have been customised in the site conte...
$wgUseDatabaseMessages
Translation using MediaWiki: namespace.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
$mParserOptions
Message cache has its own parser which it uses to transform messages.
const TS_MW
MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)
$mLoadedLanguages
Variable for tracking which variables are already loaded.
namespace and then decline to actually register it file or subcat img or subcat $title
static newKnownCurrent(IDatabase $db, $pageId, $revId)
Load a revision based on a known page ID and current revision ID from the DB.
static $instance
Singleton instance.
A BagOStuff object with no objects in it.
getAllMessageKeys($code)
Get all message keys stored in the message cache for a given language.
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
getValidationHash($code)
Get the md5 used to validate the local APC cache.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for and distribution as defined by Sections through of this document Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License Legal Entity shall mean the union of the acting entity and all other entities that control are controlled by or are under common control with that entity For the purposes of this definition control direct or to cause the direction or management of such whether by contract or including but not limited to software source documentation and configuration files Object form shall mean any form resulting from mechanical transformation or translation of a Source including but not limited to compiled object generated and conversions to other media types Work shall mean the work of whether in Source or Object made available under the as indicated by a copyright notice that is included in or attached to the whether in Source or Object that is based or other modifications as a an original work of authorship For the purposes of this Derivative Works shall not include works that remain separable or merely the Work and Derivative Works thereof Contribution shall mean any work of including the original version of the Work and any modifications or additions to that Work or Derivative Works that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner For the purposes of this submitted means any form of or written communication sent to the Licensor or its including but not limited to communication on electronic mailing source code control and issue tracking systems that are managed by
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
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
static fetchLanguageName($code, $inLanguage=null, $include= 'all')
static newFromAnon()
Get a ParserOptions object for an anonymous user.
__construct($memCached, $useDB, $expiry)
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive false for true for descending in case the handler function wants to provide a converted Content object Note that $result getContentModel() must return $toModel. 'CustomEditor'$rcid is used in generating this variable which contains information about the new such as the revision s whether the revision was marked as a minor edit or etc which include things like revision author info
const WAIT_SEC
How long to wait for memcached locks.
load($code, $mode=null)
Loads messages from caches or from database in this order: (1) local message cache (if $wgUseLocalMes...
const HOLDOFF_TTL
Seconds to tombstone keys on delete()
wfGetAllCallers($limit=3)
Return a string consisting of callers in the stack.
isDisabled()
Whether DB/cache usage is disabled for determining messages.
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
$mExpiry
Lifetime for cache, used by object caching.
parse($text, $title=null, $linestart=true, $interface=false, $language=null)
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
$wgMsgCacheExpiry
Expiry time for the message cache key.
$mCache
Process local cache of loaded messages that are defined in MediaWiki namespace.
loadFromDBWithLock($code, array &$where, $mode=null)
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
getReentrantScopedLock($key, $timeout=self::WAIT_SEC)
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
loadFromDB($code, $mode=null)
Loads cacheable messages from the database.
clear()
Clear all stored messages.
setValidationHash($code, array $cache)
Set the md5 used to validate the local disk cache.
wfMemcKey()
Make a cache key for the local wiki.
if(!$wgRequest->checkUrlExtension()) if(!$wgEnableAPI) $wgTitle
$mDisable
Should mean that database cannot be used, but check.
static factory($code)
Get a cached or new language object for a given language code.
getMessageForLang($lang, $lckey, $useDB, &$alreadyTried)
Given a language, try and fetch messages from that language and its fallbacks.
static makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
const LOCK_TTL
How long memcached locks last.
static singleton()
Get the signleton instance of this class.
replace($title, $text)
Updates cache as necessary when message page is changed.
getMessagePageName($langcode, $uckey)
Get the message page name for a given language.
wfGetLangObj($langcode=false)
Return a Language object from $langcode.