MediaWiki REL1_36
|
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. | |
isSameLinkAs (LinkTarget $other) | |
Static Public Member Functions | |
static | assertValidSpec ( $namespace, $title, $fragment='', $interwiki='') |
Asserts that the given parameters could be used to construct a TitleValue object. | |
static | newFromPage (PageIdentity $page) |
Constructs a TitleValue from a local PageIdentity. | |
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 40 of file TitleValue.php.
TitleValue::__construct | ( | $namespace, | |
$title, | |||
$fragment = '' , |
|||
$interwiki = '' |
|||
) |
Constructs a TitleValue.
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 149 of file TitleValue.php.
References $title.
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 305 of file TitleValue.php.
|
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 171 of file TitleValue.php.
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 268 of file TitleValue.php.
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 240 of file TitleValue.php.
TitleValue::getFragment | ( | ) |
Implements MediaWiki\Linker\LinkTarget.
Definition at line 221 of file TitleValue.php.
TitleValue::getInterwiki | ( | ) |
Returns the interwiki part.
Implements MediaWiki\Linker\LinkTarget.
Definition at line 293 of file TitleValue.php.
TitleValue::getNamespace | ( | ) |
Implements MediaWiki\Linker\LinkTarget.
Definition at line 204 of file TitleValue.php.
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 256 of file TitleValue.php.
TitleValue::hasFragment | ( | ) |
Implements MediaWiki\Linker\LinkTarget.
Definition at line 229 of file TitleValue.php.
TitleValue::inNamespace | ( | $ns | ) |
int | $ns |
Implements MediaWiki\Linker\LinkTarget.
Definition at line 213 of file TitleValue.php.
TitleValue::isExternal | ( | ) |
Whether it has an interwiki part.
Implements MediaWiki\Linker\LinkTarget.
Definition at line 283 of file TitleValue.php.
TitleValue::isSameLinkAs | ( | LinkTarget | $other | ) |
LinkTarget | $other |
Implements MediaWiki\Linker\LinkTarget.
Definition at line 324 of file TitleValue.php.
References MediaWiki\Linker\LinkTarget\getDBkey(), MediaWiki\Linker\LinkTarget\getFragment(), MediaWiki\Linker\LinkTarget\getInterwiki(), and MediaWiki\Linker\LinkTarget\getNamespace().
|
static |
Constructs a TitleValue from a local PageIdentity.
PageIdentity | $page |
InvalidArgumentException | if $page does not belong to the local wiki. |
Definition at line 119 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 94 of file TitleValue.php.
References $title.
|
protected |
Definition at line 52 of file TitleValue.php.
|
protected |
Definition at line 58 of file TitleValue.php.
|
protected |
Definition at line 64 of file TitleValue.php.
|
protected |
Definition at line 46 of file TitleValue.php.
string TitleValue::$prefixedText = null |
Text form including namespace/interwiki, initialised on demand.
Only public to share cache with TitleFormatter
Definition at line 74 of file TitleValue.php.