* (bug 1970) Don't show move tab for immobile pages
[lhc/web/wiklou.git] / includes / SiteConfiguration.php
index 84c7671..1abe48d 100644 (file)
@@ -1,8 +1,24 @@
 <?php
+/**
+ *This file is used to configure the live Wikimedia wikis. The file that
+ * includes it contains passwords and other sensitive data, and there's
+ * currently no public equivalent.
+ *
+ * @package MediaWiki
+ */
 
-# This file is used to configure the live Wikimedia wikis. The file that includes
-# it contains passwords and other sensitive data, and there's currently no public
-# equivalent. 
+/**
+ *
+ * @package MediaWiki
+ */
+
+/**
+ * The include paths change after this file is included from commandLine.inc, 
+ * meaning that require_once() fails to detect that it is including the same
+ * file again. We use DIY C-style protection as a workaround.
+ */
+if (!defined('SITE_CONFIGURATION')) {
+define('SITE_CONFIGURATION', 1);
 
 class SiteConfiguration {
        var $suffixes, $wikis, $settings;
@@ -13,7 +29,7 @@ class SiteConfiguration {
                        $retval = $this->settings[$setting][$wiki];
                } elseif ( array_key_exists( $suffix, $this->settings[$setting] ) ) {
                        $retval = $this->settings[$setting][$suffix];
-               } elseif ( array_key_exists( "default", $this->settings[$setting] ) ) {
+               } elseif ( array_key_exists( 'default', $this->settings[$setting] ) ) {
                        $retval = $this->settings[$setting]['default'];
                } else {
                        $retval = NULL;
@@ -59,7 +75,24 @@ class SiteConfiguration {
                        $this->extractGlobal( $varName, $wiki, $suffix, $params );
                }
        }
-}
 
+       /**
+        * Work out the site and language name from a database name
+        * @param $db
+        */
+       function siteFromDB( $db ) {
+               $site = NULL;
+               $lang = NULL;
+               foreach ( $this->suffixes as $suffix ) {
+                       if ( substr( $db, -strlen( $suffix ) ) == $suffix ) {
+                               $site = $suffix == 'wiki' ? 'wikipedia' : $suffix;
+                               $lang = substr( $db, 0, strlen( $db ) - strlen( $suffix ) );
+                               break;
+                       }
+               }
+               return array( $site, $lang );
+       }
+}
+}
        
 ?>