(bug 13750) $wgCapitalLinks should be a per-namespace setting
[lhc/web/wiklou.git] / includes / Namespace.php
1 <?php
2 /**
3 * Provide things related to namespaces
4 * @file
5 */
6
7 /**
8 * Definitions of the NS_ constants are in Defines.php
9 * @private
10 */
11 $wgCanonicalNamespaceNames = array(
12 NS_MEDIA => 'Media',
13 NS_SPECIAL => 'Special',
14 NS_TALK => 'Talk',
15 NS_USER => 'User',
16 NS_USER_TALK => 'User_talk',
17 NS_PROJECT => 'Project',
18 NS_PROJECT_TALK => 'Project_talk',
19 NS_FILE => 'File',
20 NS_FILE_TALK => 'File_talk',
21 NS_MEDIAWIKI => 'MediaWiki',
22 NS_MEDIAWIKI_TALK => 'MediaWiki_talk',
23 NS_TEMPLATE => 'Template',
24 NS_TEMPLATE_TALK => 'Template_talk',
25 NS_HELP => 'Help',
26 NS_HELP_TALK => 'Help_talk',
27 NS_CATEGORY => 'Category',
28 NS_CATEGORY_TALK => 'Category_talk',
29 );
30
31 if( is_array( $wgExtraNamespaces ) ) {
32 $wgCanonicalNamespaceNames = $wgCanonicalNamespaceNames + $wgExtraNamespaces;
33 }
34
35 /**
36 * This is a utility class with only static functions
37 * for dealing with namespaces that encodes all the
38 * "magic" behaviors of them based on index. The textual
39 * names of the namespaces are handled by Language.php.
40 *
41 * These are synonyms for the names given in the language file
42 * Users and translators should not change them
43 *
44 */
45
46 class MWNamespace {
47
48 /**
49 * These namespaces should always be first-letter capitalized, now and
50 * forevermore. Historically, they could've probably been lowercased too,
51 * but some things are just too ingrained now. :)
52 */
53 private static $alwaysCapitalizedNamespaces = array( NS_SPECIAL, NS_MEDIAWIKI );
54
55 /**
56 * Can pages in the given namespace be moved?
57 *
58 * @param $index Int: namespace index
59 * @return bool
60 */
61 public static function isMovable( $index ) {
62 global $wgAllowImageMoving;
63 return !( $index < NS_MAIN || ($index == NS_FILE && !$wgAllowImageMoving) || $index == NS_CATEGORY );
64 }
65
66 /**
67 * Is the given namespace is a subject (non-talk) namespace?
68 *
69 * @param $index Int: namespace index
70 * @return bool
71 */
72 public static function isMain( $index ) {
73 return !self::isTalk( $index );
74 }
75
76 /**
77 * Is the given namespace a talk namespace?
78 *
79 * @param $index Int: namespace index
80 * @return bool
81 */
82 public static function isTalk( $index ) {
83 return $index > NS_MAIN
84 && $index % 2;
85 }
86
87 /**
88 * Get the talk namespace index for a given namespace
89 *
90 * @param $index Int: namespace index
91 * @return int
92 */
93 public static function getTalk( $index ) {
94 return self::isTalk( $index )
95 ? $index
96 : $index + 1;
97 }
98
99 /**
100 * Get the subject namespace index for a given namespace
101 *
102 * @param $index Int: Namespace index
103 * @return int
104 */
105 public static function getSubject( $index ) {
106 return self::isTalk( $index )
107 ? $index - 1
108 : $index;
109 }
110
111 /**
112 * Returns the canonical (English Wikipedia) name for a given index
113 *
114 * @param $index Int: namespace index
115 * @return string or false if no canonical definition.
116 */
117 public static function getCanonicalName( $index ) {
118 global $wgCanonicalNamespaceNames;
119 if( isset( $wgCanonicalNamespaceNames[$index] ) ) {
120 return $wgCanonicalNamespaceNames[$index];
121 } else {
122 return false;
123 }
124 }
125
126 /**
127 * Returns the index for a given canonical name, or NULL
128 * The input *must* be converted to lower case first
129 *
130 * @param $name String: namespace name
131 * @return int
132 */
133 public static function getCanonicalIndex( $name ) {
134 global $wgCanonicalNamespaceNames;
135 static $xNamespaces = false;
136 if ( $xNamespaces === false ) {
137 $xNamespaces = array();
138 foreach ( $wgCanonicalNamespaceNames as $i => $text ) {
139 $xNamespaces[strtolower($text)] = $i;
140 }
141 }
142 if ( array_key_exists( $name, $xNamespaces ) ) {
143 return $xNamespaces[$name];
144 } else {
145 return NULL;
146 }
147 }
148
149 /**
150 * Can this namespace ever have a talk namespace?
151 *
152 * @param $index Int: namespace index
153 * @return bool
154 */
155 public static function canTalk( $index ) {
156 return $index >= NS_MAIN;
157 }
158
159 /**
160 * Does this namespace contain content, for the purposes of calculating
161 * statistics, etc?
162 *
163 * @param $index Int: index to check
164 * @return bool
165 */
166 public static function isContent( $index ) {
167 global $wgContentNamespaces;
168 return $index == NS_MAIN || in_array( $index, $wgContentNamespaces );
169 }
170
171 /**
172 * Can pages in a namespace be watched?
173 *
174 * @param $index Int
175 * @return bool
176 */
177 public static function isWatchable( $index ) {
178 return $index >= NS_MAIN;
179 }
180
181 /**
182 * Does the namespace allow subpages?
183 *
184 * @param $index int Index to check
185 * @return bool
186 */
187 public static function hasSubpages( $index ) {
188 global $wgNamespacesWithSubpages;
189 return !empty( $wgNamespacesWithSubpages[$index] );
190 }
191
192 /**
193 * Is the namespace first-letter capitalized?
194 *
195 * @param $index int Index to check
196 * @return bool
197 */
198 public static function isCapitalized( $index ) {
199 global $wgCapitalLinks, $wgCapitalLinkOverrides;
200 // Turn NS_MEDIA into NS_FILE
201 $index = $index === NS_MEDIA ? NS_FILE : $index;
202
203 // Make sure to get the subject of our namespace
204 $index = self::getSubject( $index );
205
206 // Some namespaces are special and should always be upper case
207 if ( in_array( $index, self::$alwaysCapitalizedNamespaces ) ) {
208 return true;
209 }
210 if ( isset( $wgCapitalLinkOverrides[ $index ] ) ) {
211 // $wgCapitalLinkOverrides is explicitly set
212 return $wgCapitalLinkOverrides[ $index ];
213 }
214 // Default to the global setting
215 return $wgCapitalLinks;
216 }
217 }