Manual:$wgSpecialPages/pl

From Linux Web Expert

Revision as of 14:04, 2 February 2024 by imported>Chrumps (Created page with "patrz poniżej")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<translate> Extensions</translate>: $wgSpecialPages
A list of custom special pages.
<translate> Introduced in version:</translate>1.7.0 (r15031)
<translate> Removed in version:</translate><translate> still in use</translate>
<translate> Allowed values:</translate>patrz poniżej
<translate> Default value:</translate>[]

Szczegóły

$wgSpecialPages stores a list of custom special pages defined for a MediaWiki installation. The array is keyed by a non-localized id for the special page. The value assigned to each key is an ObjectFactory specifier (MediaWiki 1.34+), or one of the following:

  • łańcuch: a string containing the name of a subclass of SpecialPage .
  • tablica: an array where the first element is the name of the subclass and all remaining elements are parameters that should be passed to the constructor of that subclass. (This format was deprecated in MW 1.18 and is no longer recognized as of MW 1.32.)
  • callback: since MW 1.24, Gerrit change 152755 expected to return a SpecialPage instance. Useful for full control over the special page's construction parameters.
  • an actual SpecialPage object. <translate> (deprecated in <tvar name=2>1.34</tvar>)</translate>

A special page can also be disabled by using:

$wgSpecialPages['Name'] = DisabledSpecialPage::getCallback( 'Name', 'message' );

Aby uzyskać więcej informacji zobacz SpecialPage.php