blob: a41f58984aea10cfc39a7ddfa4454a6a12c4b938 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?php
/**
* @file
* @author Niklas Laxström
* @license GPL-2.0-or-later
*/
/**
* Helper function for adding namespace for message groups.
*
* It defines constants for the namespace (and talk namespace) and sets up
* restrictions and some other configuration.
* @param int $id Namespace number
* @param string $name Name of the namespace
* @param string|null $constant (optional) name of namespace constant, defaults to
* NS_ followed by upper case version of $name, e.g., NS_MEDIAWIKI
*/
function wfAddNamespace( $id, $name, $constant = null ) {
global $wgExtraNamespaces, $wgContentNamespaces, $wgTranslateMessageNamespaces,
$wgNamespaceProtection, $wgNamespacesWithSubpages, $wgNamespacesToBeSearchedDefault;
if ( $constant === null ) {
$constant = strtoupper( "NS_$name" );
}
define( $constant, $id );
define( $constant . '_TALK', $id + 1 );
$wgExtraNamespaces[$id] = $name;
$wgExtraNamespaces[$id + 1] = $name . '_talk';
$wgContentNamespaces[] = $id;
$wgTranslateMessageNamespaces[] = $id;
$wgNamespacesWithSubpages[$id] = true;
$wgNamespacesWithSubpages[$id + 1] = true;
$wgNamespaceProtection[$id] = [ 'translate' ];
$wgNamespacesToBeSearchedDefault[$id] = true;
}
|