Use wfWikiID() instead of $wgDBname in wfIncrStats()
[lhc/web/wiklou.git] / includes / api / ApiQueryDisabled.php
index d4f4eb7..6715969 100644 (file)
@@ -1,10 +1,10 @@
 <?php
-
 /**
+ *
+ *
  * Created on Sep 25, 2008
- * API for MediaWiki 1.8+
  *
- * Copyright © 2008 Roan Kattouw <Firstname>.<Lastname>@home.nl
+ * Copyright © 2008 Roan Kattouw "<Firstname>.<Lastname>@gmail.com"
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * with this program; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
+ *
+ * @file
  */
 
-if ( !defined( 'MEDIAWIKI' ) ) {
-       // Eclipse helper - will be ignored in production
-       require_once( "ApiBase.php" );
-}
-
 /**
  * API module that does nothing
  *
@@ -44,7 +41,7 @@ class ApiQueryDisabled extends ApiQueryBase {
        }
 
        public function execute() {
-               $this->setWarning( "The ``{$this->getModuleName()}'' module has been disabled." );
+               $this->setWarning( "The \"{$this->getModuleName()}\" module has been disabled." );
        }
 
        public function getAllowedParams() {
@@ -61,7 +58,7 @@ class ApiQueryDisabled extends ApiQueryBase {
                );
        }
 
-       protected function getExamples() {
+       public function getExamples() {
                return array();
        }