MediaWiki REL1_35
|
Represents a page (or page fragment) title within MediaWiki. More...
Public Member Functions | |
__construct ( $namespace, $title, $fragment='', $interwiki='') | |
Constructs a TitleValue. | |
__toString () | |
Returns a string representation of the title, for logging. | |
createFragmentTarget ( $fragment) | |
Creates a new TitleValue for a different fragment of the same page. | |
getDBkey () | |
Returns the title's DB key, as supplied to the constructor, without namespace prefix or fragment. | |
getFragment () | |
getInterwiki () | |
Returns the interwiki part. | |
getNamespace () | |
getText () | |
Returns the title in text form, without namespace prefix or fragment. | |
hasFragment () | |
inNamespace ( $ns) | |
isExternal () | |
Whether it has an interwiki part. | |
Static Public Member Functions | |
static | assertValidSpec ( $namespace, $title, $fragment='', $interwiki='') |
Asserts that the given parameters could be used to construct a TitleValue object. | |
static | tryNew ( $namespace, $title, $fragment='', $interwiki='') |
Constructs a TitleValue, or returns null if the parameters are not valid. | |
Public Attributes | |
string | $prefixedText = null |
Text form including namespace/interwiki, initialised on demand. | |
Protected Attributes | |
string | $dbkey |
string | $fragment |
string | $interwiki |
int | $namespace |
Represents a page (or page fragment) title within MediaWiki.
@newable
Definition at line 39 of file TitleValue.php.
TitleValue::__construct | ( | $namespace, | |
$title, | |||
$fragment = '' , |
|||
$interwiki = '' |
|||
) |
Constructs a TitleValue.
Stable to call
int | $namespace | The namespace ID. This is not validated. |
string | $title | The page title in either DBkey or text form. No normalization is applied beyond underscore/space conversion. |
string | $fragment | The fragment title. Use '' to represent the whole page. No validation or normalization is applied. |
string | $interwiki | The interwiki component. No validation or normalization is applied. |
InvalidArgumentException |
Definition at line 124 of file TitleValue.php.
References $fragment, $interwiki, $namespace, $title, and assertValidSpec().
TitleValue::__toString | ( | ) |
Returns a string representation of the title, for logging.
This is purely informative and must not be used programmatically. Use the appropriate TitleFormatter to generate the correct string representation for a given use.
Implements MediaWiki\Linker\LinkTarget.
Definition at line 280 of file TitleValue.php.
References if.
|
static |
Asserts that the given parameters could be used to construct a TitleValue object.
Performs basic syntax and consistency checks. Does not perform full validation, use TitleParser::makeTitleValueSafe() for that.
int | $namespace | |
string | $title | |
string | $fragment | |
string | $interwiki |
InvalidArgumentException | if the combination of parameters is not valid for constructing a TitleValue. |
Definition at line 146 of file TitleValue.php.
References $fragment, $interwiki, $namespace, $title, and NS_MAIN.
Referenced by __construct(), and MediaWikiTitleCodec\splitTitleString().
TitleValue::createFragmentTarget | ( | $fragment | ) |
Creates a new TitleValue for a different fragment of the same page.
string | $fragment | The fragment name, or "" for the entire page. |
Implements MediaWiki\Linker\LinkTarget.
Definition at line 243 of file TitleValue.php.
References $fragment.
TitleValue::getDBkey | ( | ) |
Returns the title's DB key, as supplied to the constructor, without namespace prefix or fragment.
Implements MediaWiki\Linker\LinkTarget.
Definition at line 215 of file TitleValue.php.
References $dbkey.
TitleValue::getFragment | ( | ) |
Implements MediaWiki\Linker\LinkTarget.
Definition at line 196 of file TitleValue.php.
References $fragment.
TitleValue::getInterwiki | ( | ) |
Returns the interwiki part.
Implements MediaWiki\Linker\LinkTarget.
Definition at line 268 of file TitleValue.php.
References $interwiki.
TitleValue::getNamespace | ( | ) |
Implements MediaWiki\Linker\LinkTarget.
Definition at line 179 of file TitleValue.php.
References $namespace.
TitleValue::getText | ( | ) |
Returns the title in text form, without namespace prefix or fragment.
This is computed from the DB key by replacing any underscores with spaces.
Implements MediaWiki\Linker\LinkTarget.
Definition at line 231 of file TitleValue.php.
TitleValue::hasFragment | ( | ) |
Implements MediaWiki\Linker\LinkTarget.
Definition at line 204 of file TitleValue.php.
TitleValue::inNamespace | ( | $ns | ) |
int | $ns |
Implements MediaWiki\Linker\LinkTarget.
Definition at line 188 of file TitleValue.php.
TitleValue::isExternal | ( | ) |
Whether it has an interwiki part.
Implements MediaWiki\Linker\LinkTarget.
Definition at line 258 of file TitleValue.php.
|
static |
Constructs a TitleValue, or returns null if the parameters are not valid.
int | $namespace | The namespace ID. This is not validated. |
string | $title | The page title in either DBkey or text form. No normalization is applied beyond underscore/space conversion. |
string | $fragment | The fragment title. Use '' to represent the whole page. No validation or normalization is applied. |
string | $interwiki | The interwiki component. No validation or normalization is applied. |
InvalidArgumentException |
Definition at line 93 of file TitleValue.php.
References $fragment, $interwiki, $namespace, and $title.
Referenced by LinkBatch\addResultToCache(), ApiQueryWatchlistRaw\run(), Linker\userLink(), and Linker\userTalkLink().
|
protected |
Definition at line 51 of file TitleValue.php.
Referenced by getDBkey().
|
protected |
Definition at line 57 of file TitleValue.php.
Referenced by __construct(), assertValidSpec(), createFragmentTarget(), getFragment(), and tryNew().
|
protected |
Definition at line 63 of file TitleValue.php.
Referenced by __construct(), assertValidSpec(), getInterwiki(), and tryNew().
|
protected |
Definition at line 45 of file TitleValue.php.
Referenced by __construct(), assertValidSpec(), getNamespace(), and tryNew().
string TitleValue::$prefixedText = null |
Text form including namespace/interwiki, initialised on demand.
Only public to share cache with TitleFormatter
Definition at line 73 of file TitleValue.php.