Go to the documentation of this file.
54 public function __construct( $prefix =
null, $url =
'', $api =
'', $wikiId =
'', $local = 0,
57 $this->mPrefix = $prefix;
60 $this->mWikiID = $wikiId;
61 $this->mLocal = $local;
62 $this->mTrans = $trans;
83 public static function fetch( $prefix ) {
86 if ( $prefix ==
'' ) {
91 if ( isset( self::$smCache[$prefix] ) ) {
92 return self::$smCache[$prefix];
96 if ( $wgInterwikiCache ) {
105 if ( self::CACHE_LIMIT && count( self::$smCache ) >= self::CACHE_LIMIT ) {
106 reset( self::$smCache );
107 unset( self::$smCache[
key( self::$smCache )] );
110 self::$smCache[$prefix] = $iw;
129 list( $local, $url ) = explode(
' ',
$value, 2 );
131 $s->mLocal = (int)$local;
148 global $wgInterwikiCache, $wgInterwikiScopes, $wgInterwikiFallbackSite;
151 wfDebug( __METHOD__ .
"( $prefix )\n" );
158 if ( $wgInterwikiScopes >= 3 && !$site ) {
159 $site = $db->get(
'__sites:' .
wfWikiID() );
161 $site = $wgInterwikiFallbackSite;
167 if (
$value ==
'' && $wgInterwikiScopes >= 3 ) {
168 $value = $db->get(
"_{$site}:{$prefix}" );
171 if (
$value ==
'' && $wgInterwikiScopes >= 2 ) {
172 $value = $db->get(
"__global:{$prefix}" );
174 if (
$value ==
'undef' ) {
178 wfDebug( __METHOD__ .
": CdbException caught, error message was "
179 .
$e->getMessage() );
191 protected static function load( $prefix ) {
195 if ( !
wfRunHooks(
'InterwikiLoadPrefix',
array( $prefix, &$iwData ) ) ) {
200 $key =
wfMemcKey(
'interwiki', $prefix );
201 $iwData =
$wgMemc->get( $key );
202 if ( $iwData ===
'!NONEXISTENT' ) {
209 if ( $iwData && is_array( $iwData ) ) {
218 $row = $db->fetchRow( $db->select(
220 self::selectFields(),
221 array(
'iw_prefix' => $prefix ),
228 'iw_url' => $iw->mURL,
229 'iw_api' => $iw->mAPI,
230 'iw_local' => $iw->mLocal,
231 'iw_trans' => $iw->mTrans
233 $wgMemc->add( $key, $mc, $wgInterwikiExpiry );
239 $wgMemc->add( $key,
'!NONEXISTENT', $wgInterwikiExpiry );
251 if ( isset( $mc[
'iw_url'] ) ) {
253 $iw->mURL = $mc[
'iw_url'];
254 $iw->mLocal = isset( $mc[
'iw_local'] ) ? $mc[
'iw_local'] : 0;
255 $iw->mTrans = isset( $mc[
'iw_trans'] ) ? $mc[
'iw_trans'] : 0;
256 $iw->mAPI = isset( $mc[
'iw_api'] ) ? $mc[
'iw_api'] :
'';
257 $iw->mWikiID = isset( $mc[
'iw_wikiid'] ) ? $mc[
'iw_wikiid'] :
'';
273 global $wgInterwikiCache, $wgInterwikiScopes, $wgInterwikiFallbackSite;
276 wfDebug( __METHOD__ .
"()\n" );
283 if ( $wgInterwikiScopes >= 3 && !$site ) {
284 $site = $db->get(
'__sites:' .
wfWikiID() );
286 $site = $wgInterwikiFallbackSite;
293 if ( $wgInterwikiScopes >= 2 ) {
294 $sources[] =
'__global';
297 if ( $wgInterwikiScopes >= 3 ) {
298 $sources[] =
'_' . $site;
303 $list = $db->get(
"__list:{$source}" );
304 foreach ( explode(
' ', $list )
as $iw_prefix ) {
305 $row = $db->get(
"{$source}:{$iw_prefix}" );
310 list( $iw_local, $iw_url ) = explode(
' ', $row );
312 if ( $local !==
null && $local != $iw_local ) {
316 $data[$iw_prefix] =
array(
317 'iw_prefix' => $iw_prefix,
319 'iw_local' => $iw_local,
324 wfDebug( __METHOD__ .
": CdbException caught, error message was "
325 .
$e->getMessage() );
330 return array_values( $data );
345 if ( $local !==
null ) {
347 $where[
'iw_local'] = 1;
348 } elseif ( $local == 0 ) {
349 $where[
'iw_local'] = 0;
353 $res = $db->select(
'interwiki',
354 self::selectFields(),
355 $where, __METHOD__,
array(
'ORDER BY' =>
'iw_prefix' )
359 foreach (
$res as $row ) {
376 if ( $wgInterwikiCache ) {
406 public function getAPI() {
445 $msg =
wfMessage(
'interwiki-name-' . $this->mPrefix )->inContentLanguage();
447 return !$msg->exists() ?
'' : $msg;
456 $msg =
wfMessage(
'interwiki-desc-' . $this->mPrefix )->inContentLanguage();
458 return !$msg->exists() ?
'' : $msg;
static load( $prefix)
Load the interwiki, trying first memcached then the DB.
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. $reader:XMLReader object $logInfo:Array of information Return false to stop further processing of the tag 'ImportHandlePageXMLTag':When parsing a XML tag in a page. $reader:XMLReader object $pageInfo:Array of information Return false to stop further processing of the tag 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information Return false to stop further processing of the tag 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. $reader:XMLReader object Return false to stop further processing of the tag 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. $reader:XMLReader object $revisionInfo:Array of information Return false to stop further processing of the tag '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 '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. '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 '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 '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 wfIsTrustedProxy() $ip:IP being check $result:Change this value to override the result of wfIsTrustedProxy() '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 User::isValidEmailAddr(), 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. '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 '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) '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. 'LinkBegin':Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
static getAllPrefixesCached( $local)
Fetch all interwiki prefixes from interwiki cache.
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
string $mAPI
The URL of the file api.php *.
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration which are documented in DefaultSettings php There is no comprehensive documentation for the remaining however some of the most important ones are listed below They are typically initialised either in index php or in Setup php For a description of the see design txt $wgTitle Title object created from the request URL $wgOut OutputPage object for HTTP response $wgUser User object for the user associated with the current request $wgLang Language object selected by user preferences $wgContLang Language object associated with the wiki being viewed $wgParser Parser object Parser extensions register their hooks here $wgRequest WebRequest to get request data $wgMemc
& wfGetDB( $db, $groups=array(), $wiki=false)
Get a Database object.
string $mURL
The URL of the wiki, with "$1" as a placeholder for an article name.
static selectFields()
Return the list of interwiki fields that should be selected to create a new Interwiki object.
wfUrlencode( $s)
We want some things to be included as literal characters in our title URLs for prettiness,...
static getAllPrefixes( $local=null)
Returns all interwiki prefixes.
static fetch( $prefix)
Fetch an Interwiki object.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
getWikiID()
Get the DB name for this wiki.
static getAllPrefixesDB( $local)
Fetch all interwiki prefixes from DB.
string $mPrefix
The interwiki prefix, (e.g.
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 and does all the work of translating among various forms such as plain database key
wfMemcKey()
Get a cache key.
__construct( $prefix=null, $url='', $api='', $wikiId='', $local=0, $trans=0)
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 after processing after in associative array form externallinks including delete and has completed for all link tables default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<
wfRunHooks( $event, array $args=array(), $deprecatedVersion=null)
Call hook functions defined in $wgHooks.
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
getName()
Get the name for the interwiki site.
when a variable name is used in a it is silently declared as a new masking the global
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
wfDebug( $text, $dest='all')
Sends a line to the debug log if enabled or, optionally, to a comment in output.
string $mWikiID
The name of the database (for a connection to be established with wfGetLB( 'wikiid' ))
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
presenting them properly to the user as errors is done by the caller $title
bool $mTrans
Whether interwiki transclusions are allowed *.
static getInterwikiCached( $prefix)
Fetch interwiki prefix data from local cache in constant database.
isLocal()
Is this a local link from a sister project, or is it something outside, like Google.
static open( $fileName)
Open a file and return a subclass instance.
static getInterwikiCacheEntry( $prefix)
Get entry from interwiki cache.
Exception for Cdb errors.
The interwiki class All information is loaded on creation when called by Interwiki::fetch( $prefix ).
getAPI()
Get the API URL for this wiki.
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
if(PHP_SAPI !='cli') $source
isTranscludable()
Can pages from this wiki be transcluded? Still requires $wgEnableScaryTransclusion.
getDescription()
Get a description for this interwiki.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account incomplete not yet checked for validity & $retval
static loadFromArray( $mc)
Fill in member variables from an array (e.g.
getURL( $title=null)
Get the URL for a particular title (or with $1 if no title given)
static isValidInterwiki( $prefix)
Check whether an interwiki prefix exists.
bool $mLocal
whether the wiki is in this project *