MediaWiki REL1_37
|
Value object for representing interwiki records. More...
Public Member Functions | |
__construct ( $prefix=null, $url='', $api='', $wikiId='', $local=0, $trans=0) | |
getAPI () | |
Get the API URL for this wiki. | |
getDescription () | |
Get a description for this interwiki. | |
getName () | |
Get the name for the interwiki site. | |
getURL ( $title=null) | |
Get the URL for a particular title (or with $1 if no title given) | |
getWikiID () | |
Get the DB name for this wiki. | |
isLocal () | |
Is this a local link from a sister project, or is it something outside, like Google. | |
isTranscludable () | |
Can pages from this wiki be transcluded? Still requires $wgEnableScaryTransclusion. | |
Protected Attributes | |
string | $mAPI |
The URL of the file api.php. | |
bool | $mLocal |
Whether the wiki is in this project. | |
string | $mPrefix |
The interwiki prefix, (e.g. | |
bool | $mTrans |
Whether interwiki transclusions are allowed. | |
string | $mURL |
The 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' )) | |
Value object for representing interwiki records.
Definition at line 26 of file Interwiki.php.
Interwiki::__construct | ( | $prefix = null , |
|
$url = '' , |
|||
$api = '' , |
|||
$wikiId = '' , |
|||
$local = 0 , |
|||
$trans = 0 |
|||
) |
Definition at line 48 of file Interwiki.php.
Interwiki::getAPI | ( | ) |
Get the API URL for this wiki.
Definition at line 82 of file Interwiki.php.
References $mAPI.
Interwiki::getDescription | ( | ) |
Get a description for this interwiki.
Definition at line 131 of file Interwiki.php.
References wfMessage().
Interwiki::getName | ( | ) |
Get the name for the interwiki site.
Definition at line 120 of file Interwiki.php.
References wfMessage().
Interwiki::getURL | ( | $title = null | ) |
Get the URL for a particular title (or with $1 if no title given)
string | null | $title | What text to put for the article name |
Definition at line 68 of file Interwiki.php.
References $mURL, $title, and wfUrlencode().
Interwiki::getWikiID | ( | ) |
Get the DB name for this wiki.
Definition at line 91 of file Interwiki.php.
References $mWikiID.
Interwiki::isLocal | ( | ) |
Is this a local link from a sister project, or is it something outside, like Google.
Definition at line 101 of file Interwiki.php.
References $mLocal.
Interwiki::isTranscludable | ( | ) |
Can pages from this wiki be transcluded? Still requires $wgEnableScaryTransclusion.
Definition at line 111 of file Interwiki.php.
References $mTrans.
|
protected |
|
protected |
Whether the wiki is in this project.
Definition at line 43 of file Interwiki.php.
Referenced by isLocal().
|
protected |
The interwiki prefix, (e.g.
"Meatball", or the language prefix "de")
Definition at line 29 of file Interwiki.php.
|
protected |
Whether interwiki transclusions are allowed.
Definition at line 46 of file Interwiki.php.
Referenced by isTranscludable().
|
protected |
The URL of the wiki, with "$1" as a placeholder for an article name.
Definition at line 32 of file Interwiki.php.
Referenced by getURL().
|
protected |
The name of the database (for a connection to be established with LBFactory::getMainLB( 'domainId' ))
Definition at line 40 of file Interwiki.php.
Referenced by getWikiID().