* (bug 12935, 12981) Fully-qualify archive URLs in delete, revert messages
[mediawiki.git] / includes / Namespace.php
blob57a712824a43c13e408a0dc7cd4ca9900c1344d6
1 <?php
2 /**
3 * Provide things related to namespaces
4 */
6 /**
7 * Definitions of the NS_ constants are in Defines.php
8 * @private
9 */
10 $wgCanonicalNamespaceNames = array(
11 NS_MEDIA => 'Media',
12 NS_SPECIAL => 'Special',
13 NS_TALK => 'Talk',
14 NS_USER => 'User',
15 NS_USER_TALK => 'User_talk',
16 NS_PROJECT => 'Project',
17 NS_PROJECT_TALK => 'Project_talk',
18 NS_IMAGE => 'Image',
19 NS_IMAGE_TALK => 'Image_talk',
20 NS_MEDIAWIKI => 'MediaWiki',
21 NS_MEDIAWIKI_TALK => 'MediaWiki_talk',
22 NS_TEMPLATE => 'Template',
23 NS_TEMPLATE_TALK => 'Template_talk',
24 NS_HELP => 'Help',
25 NS_HELP_TALK => 'Help_talk',
26 NS_CATEGORY => 'Category',
27 NS_CATEGORY_TALK => 'Category_talk',
30 if( is_array( $wgExtraNamespaces ) ) {
31 $wgCanonicalNamespaceNames = $wgCanonicalNamespaceNames + $wgExtraNamespaces;
34 /**
35 * This is a utility class with only static functions
36 * for dealing with namespaces that encodes all the
37 * "magic" behaviors of them based on index. The textual
38 * names of the namespaces are handled by Language.php.
40 * These are synonyms for the names given in the language file
41 * Users and translators should not change them
46 WARNING: The statement below may fail on some versions of PHP: see bug 12294
49 class Namespace {
51 /**
52 * Can pages in the given namespace be moved?
54 * @param int $index Namespace index
55 * @return bool
57 public static function isMovable( $index ) {
58 return !( $index < NS_MAIN || $index == NS_IMAGE || $index == NS_CATEGORY );
61 /**
62 * Is the given namespace is a subject (non-talk) namespace?
64 * @param int $index Namespace index
65 * @return bool
67 public static function isMain( $index ) {
68 return !self::isTalk( $index );
71 /**
72 * Is the given namespace a talk namespace?
74 * @param int $index Namespace index
75 * @return bool
77 public static function isTalk( $index ) {
78 return $index > NS_MAIN
79 && $index % 2;
82 /**
83 * Get the talk namespace index for a given namespace
85 * @param int $index Namespace index
86 * @return int
88 public static function getTalk( $index ) {
89 return self::isTalk( $index )
90 ? $index
91 : $index + 1;
94 /**
95 * Get the subject namespace index for a given namespace
97 * @param int $index Namespace index
98 * @return int
100 public static function getSubject( $index ) {
101 return self::isTalk( $index )
102 ? $index - 1
103 : $index;
107 * Returns the canonical (English Wikipedia) name for a given index
109 * @param int $index Namespace index
110 * @return string
112 public static function getCanonicalName( $index ) {
113 global $wgCanonicalNamespaceNames;
114 return $wgCanonicalNamespaceNames[$index];
118 * Returns the index for a given canonical name, or NULL
119 * The input *must* be converted to lower case first
121 * @param string $name Namespace name
122 * @return int
124 public static function getCanonicalIndex( $name ) {
125 global $wgCanonicalNamespaceNames;
126 static $xNamespaces = false;
127 if ( $xNamespaces === false ) {
128 $xNamespaces = array();
129 foreach ( $wgCanonicalNamespaceNames as $i => $text ) {
130 $xNamespaces[strtolower($text)] = $i;
133 if ( array_key_exists( $name, $xNamespaces ) ) {
134 return $xNamespaces[$name];
135 } else {
136 return NULL;
141 * Can this namespace ever have a talk namespace?
143 * @param $index Namespace index
144 * @return bool
146 public static function canTalk( $index ) {
147 return $index >= NS_MAIN;
151 * Does this namespace contain content, for the purposes
152 * of calculating statistics, etc?
154 * @param $index Index to check
155 * @return bool
157 public static function isContent( $index ) {
158 global $wgContentNamespaces;
159 return $index == NS_MAIN || in_array( $index, $wgContentNamespaces );
163 * Can pages in a namespace be watched?
165 * @param int $index
166 * @return bool
168 public static function isWatchable( $index ) {
169 return $index >= NS_MAIN;