49 public function __construct( $prefix =
null, $url =
'', $api =
'', $wikiId =
'', $local = 0,
52 $this->mPrefix = $prefix;
55 $this->mWikiID = $wikiId;
56 $this->mLocal = (bool)$local;
57 $this->mTrans = (bool)$trans;
69 public function getURL( $title =
null ) {
71 if ( $title !==
null ) {
72 $url = str_replace(
"$1",
wfUrlencode( $title ), $url );
122 $msg =
wfMessage(
'interwiki-name-' . $this->mPrefix )->inContentLanguage();
124 return !$msg->exists() ?
'' : $msg->text();
133 $msg =
wfMessage(
'interwiki-desc-' . $this->mPrefix )->inContentLanguage();
135 return !$msg->exists() ?
'' : $msg->text();
wfUrlencode( $s)
We want some things to be included as literal characters in our title URLs for prettiness,...
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
An interwiki record value object.
string $mURL
The article path URL of the wiki, with "$1" as a placeholder for an article name.
string $mWikiID
The name of the database (for a connection to be established with LBFactory::getMainLB( 'domainId' ))
__construct( $prefix=null, $url='', $api='', $wikiId='', $local=0, $trans=0)
string $mPrefix
The interwiki prefix, (e.g.
getDescription()
Get a description for this interwiki.
isLocal()
Is this a local link from a sister project, or is it something outside, like Google.
getName()
Get the name for the interwiki site.
getWikiID()
Get the DB name for this wiki.
bool $mTrans
Whether interwiki transclusions are allowed.
string $mAPI
The URL to the api.php entry point of the wiki.
getURL( $title=null)
Get the URL for a particular title (or with $1 if no title given)
isTranscludable()
Can pages from this wiki be transcluded? Still requires $wgEnableScaryTransclusion.
getAPI()
Get the API URL for this wiki.
bool $mLocal
Whether the wiki is in this project.