MediaWiki
1.33.1
|
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=NS_MAIN) | |
Parses the given text and constructs a TitleValue. More... | |
splitTitleString ( $text, $defaultNamespace=NS_MAIN) | |
Normalizes and splits a title string. More... | |
Static Public Member Functions | |
static | getTitleInvalidRegex () |
Returns a simple regex that will match on characters and sequences invalid in titles. More... | |
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, $out, getNamespaceName(), language(), and NS_SPECIAL.
Referenced by getFullText(), getPrefixedDBkey(), and getPrefixedText().
MediaWikiTitleCodec::getFullText | ( | LinkTarget | $title | ) |
LinkTarget | $title |
Implements TitleFormatter.
Definition at line 223 of file MediaWikiTitleCodec.php.
References $title, 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, MWNamespace\hasGenderDistinction(), and language().
Referenced by formatTitle().
MediaWikiTitleCodec::getPrefixedDBkey | ( | LinkTarget | $target | ) |
LinkTarget | $target |
Implements TitleFormatter.
Definition at line 207 of file MediaWikiTitleCodec.php.
References formatTitle(), MediaWiki\Linker\LinkTarget\getDBkey(), MediaWiki\Linker\LinkTarget\getInterwiki(), and MediaWiki\Linker\LinkTarget\getNamespace().
MediaWikiTitleCodec::getPrefixedText | ( | LinkTarget | $title | ) |
LinkTarget | $title |
Implements TitleFormatter.
Definition at line 188 of file MediaWikiTitleCodec.php.
References $title, formatTitle(), and MediaWiki\Linker\LinkTarget\getNamespace().
MediaWikiTitleCodec::getText | ( | LinkTarget | $title | ) |
LinkTarget | $title |
Implements TitleFormatter.
Definition at line 177 of file MediaWikiTitleCodec.php.
References $title.
|
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 458 of file MediaWikiTitleCodec.php.
References is, Title\legalChars(), and not.
Referenced by Language\isValidCode(), and splitTitleString().
MediaWikiTitleCodec::parseTitle | ( | $text, | |
$defaultNamespace = NS_MAIN |
|||
) |
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 151 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 252 of file MediaWikiTitleCodec.php.
References $matches, any, as, Title\capitalize(), getTitleInvalidRegex(), language(), Title\newMainPage(), NS_MAIN, NS_SPECIAL, NS_TALK, NS_USER, NS_USER_TALK, processing, and IP\sanitizeIP().
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().