Manual:Title.php/ru
Файл MediaWiki: Title.php | |
---|---|
Местоположение: | includes/ |
Исходный код: | master • 1.39.3 • 1.38.6 • 1.35.10 |
Классы: | Title |
The MediaWiki software's Title
class implements the LinkTarget and IDBAccessObject interfaces.
It represents article titles, which are used for many purposes, including:
- as the human-readable text title of the article
- in the URL used to access the article
- the wikitext link to the article
- the key into the article database
The class is instantiated with one of these formats.
Once instantiated, the title can be retrieved in other formats or queried for its attributes.
Title
is intended to be an immutable "value" class, so there are no mutator functions.[1][2]
To instantiate Title
, call one of the static factory methods:
Title::newFromDBKey( $key )
Title::newFromID( ($id, $flags=0) )
Title::newFromText( $text, $defaultNamespace=NS_MAIN )
Title::newFromURL( $url )
- This is not the function you want. Use Title::newFromText().Title::newFromIDs( $ids )
- returns an array of TitlesTitle::newFromRedirect( $text )
Title::makeTitleSafe( $ns, $title, $fragment= '', $interwiki= '')
- Create a new Title from a namespace index and a DB key. Returns null on an error.Title::newFromRedirectArray( $text )
Title::newFromRedirectRecurse( $text )
Title::newFromRow( $row )
Title::newMainPage()
Once instantiated, the other non-static accessor methods can be used, such as getText()
, getDBKey()
, getNamespace()
, etc.
If you have a Title object, you can get a:
- Article object, using
Article::newFromTitle ( $title, IContextSource $context )
- WikiPage object, using
WikiPage::factory ( Title $title )
This class can fetch various kinds of data from the database; however, it does so inefficiently. Consider using a TitleValue object instead. TitleValue is more lightweight and does not rely on global state or the database.
Title structure
A title consists of an optional Interwiki prefix (such as "mw:
" for pages from mediawiki.org or "w:
" for Wikipedia articles), followed by an optional namespace (such as "Manual:
"), followed by the page name.
prefix: | namespace: | page name |
optional | optional | required |
Interwiki prefixes and namespaces
Interwiki prefixes and namespaces follow the same content rules:
- they must start with a letter
- they must end with a colon
- they may only contain digits, letters, the space character and the underscore character
- spaces and underscores may be used interchangeably
- they are case-insensitive
Interwiki prefixes and namespaces are only recognized if they are known to a given installation of MediaWiki, either by default or through configuration.
For example: On this wiki, "w:Name
" is a link to the article "Name
" on Wikipedia, because "w
" is recognized as one of the allowable interwiki prefixes.
The title "talk:Name
" is a link to the article "name" in the "talk
" namespace of the current wiki, because "talk
" is a recognized namespace.
Both may be present, and if so, the interwiki must come first, for example, "w:talk:name
".
If a title begins with a colon as its first character, no prefixes are scanned for, and the colon is removed before the title is processed.
Because of this rule, it is possible to have articles with colons in their names.
"E. Coli 0157:H7
" is a valid title, as is "Commandos: Behind Enemy Lines", because "E. Coli 0157
" and "Commandos
" are not valid interwikis or namespaces.
Article name
In the article name, spaces and underscores are treated as equivalent and each is converted to the other in the appropriate context (underscore in URL and database keys, spaces in plain text). "Extended" characters in the 0x80..0xFF range are allowed in all places, and are valid characters. They are encoded in URLs. Extended characters are not urlencoded when used as text or database keys. Other characters may be ASCII letters, digits, hyphen, comma, period, apostrophe, parentheses and colon. No other ASCII characters are allowed, and will be deleted if found (they will probably cause a browser to misinterpret the URL).
Canonical forms
The canonical form of a title will always be returned by the object. Canonicalization involves the following:
- Certain Unicode directional characters (left-to-right mark, etc.) are stripped, since that usually results from errant copy-and-paste.
- Everything from
#
onward is stripped, since that's used for section links. - Sequences of underscores and/or certain whitespace characters are collapsed into a single underscore (for the URL and DBkey forms) or a single space (for the text form). At the beginning or end of the title (or namespace or interwiki prefix), these are stripped.
- Recognized interwiki prefixes are canonicalized, meaning that they're put entirely in lowercase.
- Recognized namespace-names are canonicalized, meaning that the first character is capitalized and subsequent characters are put in lowercase. (This is not done for interwiki-links, however.)
- Depending on the wiki and the namespace, the first character of a title may be capitalized. (This is not done for interwiki-links, however.)
- For links to user-pages of anonymous users, the IP address is canonicalized.
- The canonicalization process also includes some validation logic to reject various kinds of invalid titles (such as ones that are too long, or that contain illegal characters).
Diagrams for MediaWikiTitleCodec Class
A codec for MediaWiki page titles: [code link]
Example
To check and see if a given page already exists:
$titleObject = Title::newFromText( 'Talk:Your desired title here' );
if ( !$titleObject->exists() ) echo "There is no page with that name.";
Create a new Title from text, such as what one would find in a link. Decodes any HTML entities in the text. Spaces, prefixes, and an initial ':' indicating the main namespace are accepted. Note that if the page does not exist, this will not create it. For that, see Manual:Article.php.
Functions
Many of these functions are used by Manual:CoreParserFunctions.php to generate magic words.
getArticleID()
Get the article ID for this Title from the link cache, adding it if necessary.
For "internal" articles, it should return the "page_id" field if the article exists, else it returns 0.
For all external articles it returns 0. All of the IDs for all instances of Title created during a request are cached, so they can be looked up quickly while rendering wikitext with lots of internal links.
getBaseText()
Get the base page name, i.e. the leftmost part excluding namespace and before any slashes, without converting spaces to underscores. See magic words {{BASEPAGENAME }} and {{BASEPAGENAMEE }}.
getText()
Gets the text form (spaces not underscores) of the main part, i.e. the title excluding namespace, but including slashes and everything after. See magic word {{PAGENAME }}.
getDBKey()
Get the main part (i.e. the title excluding namespace) with underscores.
getPrefixedDBKey()
Get the prefixed database key form with underscores.
getFragment()
Get the Title fragment (i.e. the bit after the #) in text form.
getFullText()
Get the prefixed title with spaces, plus any fragment (part beginning with '#').
getPartialURL()
Get the URL-encoded form of the main part. See magic word {{PAGENAMEE }}.
getFullURL()
Get a real URL referring to this title, with interwiki link and fragment.
getLocalURL()
Get a URL with no fragment or server name.
getPrefixedText()
Get the prefixed title with spaces. This is the form usually used for display. See magic word {{FULLPAGENAME }}.
getPrefixedUrl()
Get a URL-encoded title (not an actual URL) including interwiki. See magic word {{FULLPAGENAMEE }}.
getSubjectNsText()
Get the namespace text of the subject (rather than talk) page. See magic words {{SUBJECTSPACE }} and {{SUBJECTSPACEE }}.
getSubjectPage()
Get a title object associated with the subject page of this talk page. See magic word {{SUBJECTPAGENAME }}.
getSubpageText()
Get the lowest-level subpage name, i.e. the rightmost part after any slashes. See magic word {{SUBPAGENAME }}.
getSubpageUrlForm()
Get a URL-encoded form of the subpage text. See magic word {{SUBPAGENAMEE }}.
getTalkNsText()
Get the namespace text of the talk page. See magic word {{TALKSPACE }} and {{TALKSPACEE }}.
getTalkPage()
Get a Title object associated with the talk page of this article. See {{TALKPAGENAME }} and {{TALKPAGENAMEE }}.
getNamespace()
Get the namespace index. See {{NAMESPACENUMBER }}.
См. также
- Manual:$wgLegalTitleChars
- Manual:TitleValue.php
- Help:Bad title
- Category:MediaWiki hooks included in Title.php
References
- ↑ Mutable is a key word of the norm saying that even a const object can modify this variable. A mutable attribute can be private or public. It can always be modified even when the object is in a constant context.
- ↑ Mutator is the general name of a member function which can modify one or more object private variables from outside. It is useless to set it private.