Manual:$wgExtensionAliasesFiles

This page is a translated version of the page Manual:$wgExtensionAliasesFiles and the translation is 36% complete.
拡張機能: $wgExtensionAliasesFiles
Aliases for special pages provided by extensions.
導入されたバージョン:1.13.0 (r36631)
除去されたバージョン:1.16.0
許容される値:(配列)
既定値:array()

詳細

Aliases for special pages provided by extensions.

Instead of using $wgExtensionAliasesFiles, use $wgExtensionMessagesFiles instead. For an example, see the documentation about setting up a SpecialPage extension.

1.16 未満

Since 1.16 Use $specialPageAliases in a file referred to by $wgExtensionMessagesFiles instead of this variable.

MediaWiki バージョン:
1.15

Associative array mapping special page to array of aliases. First alternative for each special page will be used as the normalized name for it. English aliases will be added to the end of the list so that they always work. The file must define a variable $aliases.

例:

$wgExtensionAliasesFiles['Translate'] = __DIR__ . '/Translate.alias.php';