Revert r88008 (add size difference to Special:Contributions) and its large group...
[lhc/web/wiklou.git] / includes / Namespace.php
index 95c58cc..0883011 100644 (file)
@@ -4,35 +4,6 @@
  * @file
  */
 
-/**
- * Definitions of the NS_ constants are in Defines.php
- * @private
- */
-$wgCanonicalNamespaceNames = array(
-       NS_MEDIA            => 'Media',
-       NS_SPECIAL          => 'Special',
-       NS_TALK             => 'Talk',
-       NS_USER             => 'User',
-       NS_USER_TALK        => 'User_talk',
-       NS_PROJECT          => 'Project',
-       NS_PROJECT_TALK     => 'Project_talk',
-       NS_FILE             => 'File',
-       NS_FILE_TALK        => 'File_talk',
-       NS_MEDIAWIKI        => 'MediaWiki',
-       NS_MEDIAWIKI_TALK   => 'MediaWiki_talk',
-       NS_TEMPLATE         => 'Template',
-       NS_TEMPLATE_TALK    => 'Template_talk',
-       NS_HELP             => 'Help',
-       NS_HELP_TALK        => 'Help_talk',
-       NS_CATEGORY         => 'Category',
-       NS_CATEGORY_TALK    => 'Category_talk',
-);
-
-/// @todo UGLY UGLY
-if( is_array( $wgExtraNamespaces ) ) {
-       $wgCanonicalNamespaceNames = $wgCanonicalNamespaceNames + $wgExtraNamespaces;
-}
-
 /**
  * This is a utility class with only static functions
  * for dealing with namespaces that encodes all the
@@ -56,10 +27,13 @@ class MWNamespace {
        /**
         * Throw an exception when trying to get the subject or talk page
         * for a given namespace where it does not make sense.
-        * Special namespaces are defined in includes/define.php and have
+        * Special namespaces are defined in includes/Defines.php and have
         * a value below 0 (ex: NS_SPECIAL = -1 , NS_MEDIA = -2)
         *
-        * @param $ns Int: namespace index
+        * @param $index
+        * @param $method
+        *
+        * @return true
         */
        private static function isMethodValidFor( $index, $method ) {
                if( $index < NS_MAIN ) {
@@ -153,6 +127,10 @@ class MWNamespace {
 
        /**
         * Returns whether the specified namespace exists
+        *
+        * @param $index
+        * 
+        * @return bool
         */
        public static function exists( $index ) {
                $nslist = self::getCanonicalNamespaces();