Manual:$wgNamespaceAliases/ko
| Namespaces: $wgNamespaceAliases | |
|---|---|
| Provide additional names for namespaces. |
|
| 이 변수가 소개된 버전: | 1.10.0 (r21720) |
| 이 변수가 사라진 버전: | 계속해서 쓰이고 있음 |
| 허용값: | (array of strings) |
| 기본값: | [] |
| 기타 설정: 알파벳 순 | 기능별 순 | |
상세
These are alternate names for the primary localized namespace names, which are defined by $wgExtraNamespaces and the language file.[명확한 설명 필요]
If a page is requested with such a prefix, the request will be transparently redirected to the primary name.
Set this to a map from namespace names to IDs (either symbolic or numerical).
Example:
$wgNamespaceAliases = [
'Wikipedian' => NS_USER,
'Wikipedian_talk' => NS_USER_TALK,
'Our_wiki' => 4,
'Our_wiki_talk' => 5,
];
Notice how aliases are being defined here for two namespaces and their corresponding talk namespaces. Including similar aliases for talk namespaces is not strictly necessary, but not doing so can be confusing to users.
To add a single alias, or multiple aliases one at a time, the following syntax can be used:
$wgNamespaceAliases['WP'] = NS_PROJECT;
$wgNamespaceAliases['WPT'] = NS_PROJECT_TALK;
$wgNamespaceAliases['WP_talk'] = NS_PROJECT_TALK;
This illustrates how multiple aliases can be used for the same namespace.
If this setting is set to a namespace that does not exist (e.g. the namespace has not been added to $wgExtraNamespaces but a constant has been defined) the alias will redirect to the main space.
| View the values of this configuration setting on the Wikimedia wikis in core-Namespaces.php. |