MediaWiki REL1_31
|
A codec for MediaWiki page titles. More...
Public Member Functions | |
__construct (Language $language, GenderCache $genderCache, $localInterwikis=[], $interwikiLookup=null) | |
formatTitle ( $namespace, $text, $fragment='', $interwiki='') | |
getFullText (LinkTarget $title) | |
getNamespaceName ( $namespace, $text) | |
getPrefixedDBkey (LinkTarget $target) | |
getPrefixedText (LinkTarget $title) | |
getText (LinkTarget $title) | |
parseTitle ( $text, $defaultNamespace) | |
Parses the given text and constructs a TitleValue. | |
splitTitleString ( $text, $defaultNamespace=NS_MAIN) | |
Normalizes and splits a title string. | |
Static Public Member Functions | |
static | getTitleInvalidRegex () |
Returns a simple regex that will match on characters and sequences invalid in titles. | |
Protected Attributes | |
GenderCache | $genderCache |
InterwikiLookup | $interwikiLookup |
Language | $language |
string[] | $localInterwikis |
A codec for MediaWiki page titles.
Definition at line 38 of file MediaWikiTitleCodec.php.
MediaWikiTitleCodec::__construct | ( | Language | $language, |
GenderCache | $genderCache, | ||
$localInterwikis = [], | |||
$interwikiLookup = null ) |
Language | $language | The language object to use for localizing namespace names. |
GenderCache | $genderCache | The gender cache for generating gendered namespace names |
string[] | string | $localInterwikis | |
InterwikiLookup | null | $interwikiLookup |
Definition at line 65 of file MediaWikiTitleCodec.php.
References $genderCache, $interwikiLookup, $language, $localInterwikis, array(), and language().
MediaWikiTitleCodec::formatTitle | ( | $namespace, | |
$text, | |||
$fragment = '', | |||
$interwiki = '' ) |
int | bool | $namespace | The namespace ID (or false, if the namespace should be ignored) |
string | $text | The page title. Should be valid. Only minimal normalization is applied. Underscores will be replaced. |
string | $fragment | The fragment name (may be empty). |
string | $interwiki | The interwiki name (may be empty). |
InvalidArgumentException | If the namespace is invalid |
Implements TitleFormatter.
Definition at line 114 of file MediaWikiTitleCodec.php.
References $e, and getNamespaceName().
Referenced by getFullText(), getPrefixedText(), and getText().
MediaWikiTitleCodec::getFullText | ( | LinkTarget | $title | ) |
LinkTarget | $title |
Implements TitleFormatter.
Definition at line 236 of file MediaWikiTitleCodec.php.
References formatTitle(), and MediaWiki\Linker\LinkTarget\getNamespace().
MediaWikiTitleCodec::getNamespaceName | ( | $namespace, | |
$text ) |
int | $namespace | |
string | $text |
InvalidArgumentException | If the namespace is invalid |
Implements TitleFormatter.
Definition at line 84 of file MediaWikiTitleCodec.php.
References $name, and language().
Referenced by formatTitle(), and getPrefixedDBkey().
MediaWikiTitleCodec::getPrefixedDBkey | ( | LinkTarget | $target | ) |
LinkTarget | $target |
Implements TitleFormatter.
Definition at line 204 of file MediaWikiTitleCodec.php.
References $e, MediaWiki\Linker\LinkTarget\getInterwiki(), MediaWiki\Linker\LinkTarget\getNamespace(), getNamespaceName(), MediaWiki\Linker\LinkTarget\getText(), and MediaWiki\Linker\LinkTarget\isExternal().
MediaWikiTitleCodec::getPrefixedText | ( | LinkTarget | $title | ) |
LinkTarget | $title |
Implements TitleFormatter.
Definition at line 189 of file MediaWikiTitleCodec.php.
References formatTitle(), and MediaWiki\Linker\LinkTarget\getNamespace().
MediaWikiTitleCodec::getText | ( | LinkTarget | $title | ) |
LinkTarget | $title |
Implements TitleFormatter.
Definition at line 178 of file MediaWikiTitleCodec.php.
References formatTitle(), and MediaWiki\Linker\LinkTarget\getText().
|
static |
Returns a simple regex that will match on characters and sequences invalid in titles.
Note that this doesn't pick up many things that could be wrong with titles, but that replacing this regex with something valid will make many titles valid. Previously Title::getTitleInvalidRegex()
Definition at line 473 of file MediaWikiTitleCodec.php.
References URL.
Referenced by Language\isValidCode(), and splitTitleString().
MediaWikiTitleCodec::parseTitle | ( | $text, | |
$defaultNamespace ) |
Parses the given text and constructs a TitleValue.
Normalization is applied according to the rules appropriate for the form specified by $form.
string | $text | The text to parse |
int | $defaultNamespace | Namespace to assume per default (usually NS_MAIN) |
MalformedTitleException |
Implements TitleParser.
Definition at line 152 of file MediaWikiTitleCodec.php.
References splitTitleString().
MediaWikiTitleCodec::splitTitleString | ( | $text, | |
$defaultNamespace = NS_MAIN ) |
Normalizes and splits a title string.
This function removes illegal characters, splits off the interwiki and namespace prefixes, sets the other forms, and canonicalizes everything.
string | $text | |
int | $defaultNamespace |
MalformedTitleException | If $text is not a valid title string. |
Definition at line 265 of file MediaWikiTitleCodec.php.
References $matches, getTitleInvalidRegex(), language(), NS_MAIN, NS_SPECIAL, NS_TALK, NS_USER_TALK, and processing.
Referenced by parseTitle().
|
protected |
Definition at line 47 of file MediaWikiTitleCodec.php.
Referenced by __construct().
|
protected |
Definition at line 57 of file MediaWikiTitleCodec.php.
Referenced by __construct().
|
protected |
Definition at line 42 of file MediaWikiTitleCodec.php.
Referenced by __construct().
|
protected |
Definition at line 52 of file MediaWikiTitleCodec.php.
Referenced by __construct().