MediaWiki  1.27.2
MediaWikiTitleCodec Class Reference

A codec for MediaWiki page titles. More...

Inheritance diagram for MediaWikiTitleCodec:
Collaboration diagram for MediaWikiTitleCodec:

Public Member Functions

 __construct (Language $language, GenderCache $genderCache, $localInterwikis=[])
 
 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. 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
 
Language $language
 
string[] $localInterwikis
 

Detailed Description

A codec for MediaWiki page titles.

Note
Normalization and validation is applied while parsing, not when formatting. It's possible to construct a TitleValue with an invalid title, and use MediaWikiTitleCodec to generate an (invalid) title string from it. TitleValues should be constructed only via parseTitle() or from a (semi)trusted source, such as the database.
See also
https://www.mediawiki.org/wiki/Requests_for_comment/TitleValue
Since
1.23

Definition at line 37 of file MediaWikiTitleCodec.php.

Constructor & Destructor Documentation

MediaWikiTitleCodec::__construct ( Language  $language,
GenderCache  $genderCache,
  $localInterwikis = [] 
)
Parameters
Language$languageThe language object to use for localizing namespace names.
GenderCache$genderCacheThe gender cache for generating gendered namespace names
string[]|string$localInterwikis

Definition at line 58 of file MediaWikiTitleCodec.php.

References $genderCache, $language, and array().

Member Function Documentation

MediaWikiTitleCodec::formatTitle (   $namespace,
  $text,
  $fragment = '',
  $interwiki = '' 
)
See also
TitleFormatter::formatTitle()
Parameters
int | bool$namespaceThe namespace ID (or false, if the namespace should be ignored)
string$textThe page title. Should be valid. Only minimal normalization is applied. Underscores will be replaced.
string$fragmentThe fragment name (may be empty).
string$interwikiThe interwiki name (may be empty).
Exceptions
InvalidArgumentExceptionIf the namespace is invalid
Returns
string

Implements TitleFormatter.

Definition at line 106 of file MediaWikiTitleCodec.php.

References getNamespaceName().

Referenced by getFullText(), getPrefixedText(), and getText().

MediaWikiTitleCodec::getNamespaceName (   $namespace,
  $text 
)
See also
TitleFormatter::getNamespaceName()
Parameters
int$namespace
string$text
Exceptions
InvalidArgumentExceptionIf the namespace is invalid
Returns
string

Implements TitleFormatter.

Definition at line 75 of file MediaWikiTitleCodec.php.

References $name, and MWNamespace\hasGenderDistinction().

Referenced by formatTitle(), and getPrefixedDBkey().

MediaWikiTitleCodec::getPrefixedDBkey ( LinkTarget  $target)
MediaWikiTitleCodec::getPrefixedText ( LinkTarget  $title)
MediaWikiTitleCodec::getText ( LinkTarget  $title)
See also
TitleFormatter::getText()
Parameters
LinkTarget$title
Returns
string $title->getText()

Implements TitleFormatter.

Definition at line 164 of file MediaWikiTitleCodec.php.

References formatTitle(), and MediaWiki\Linker\LinkTarget\getText().

static MediaWikiTitleCodec::getTitleInvalidRegex ( )
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()

Returns
string Regex string
Since
1.25

Definition at line 459 of file MediaWikiTitleCodec.php.

References is(), Title\legalChars(), the, and URL.

Referenced by Title\getTitleInvalidRegex(), and Language\isValidCode().

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.

Parameters
string$textThe text to parse
int$defaultNamespaceNamespace to assume per default (usually NS_MAIN)
Exceptions
MalformedTitleException
Returns
TitleValue

Implements TitleParser.

Definition at line 138 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.

Todo:
this method is only exposed as a temporary measure to ease refactoring. It was copied with minimal changes from Title::secureAndSplit().
Todo:
This method should be split up and an appropriate interface defined for use by the Title class.
Parameters
string$text
int$defaultNamespace
Exceptions
MalformedTitleExceptionIf $text is not a valid title string.
Returns
array A map with the fields 'interwiki', 'fragment', 'namespace', 'user_case_dbkey', and 'dbkey'.

Definition at line 251 of file MediaWikiTitleCodec.php.

References $matches, as, Title\capitalize(), Interwiki\isValidInterwiki(), Title\newMainPage(), NS_MAIN, NS_SPECIAL, NS_TALK, NS_USER, NS_USER_TALK, Message\numParam(), processing, IP\sanitizeIP(), the, and UTF8_REPLACEMENT.

Referenced by parseTitle().

Member Data Documentation

GenderCache MediaWikiTitleCodec::$genderCache
protected

Definition at line 46 of file MediaWikiTitleCodec.php.

Referenced by __construct().

Language MediaWikiTitleCodec::$language
protected

Definition at line 41 of file MediaWikiTitleCodec.php.

Referenced by __construct().

string [] MediaWikiTitleCodec::$localInterwikis
protected

Definition at line 51 of file MediaWikiTitleCodec.php.


The documentation for this class was generated from the following file: