Merge "MyISAM warning when InnoDB is not available"
[lhc/web/wiklou.git] / includes / api / ApiQueryDisabled.php
index 479acee..cf0d841 100644 (file)
@@ -1,10 +1,10 @@
 <?php
 /**
- * API for MediaWiki 1.8+
+ *
  *
  * Created on Sep 25, 2008
  *
- * 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
  * @file
  */
 
-if ( !defined( 'MEDIAWIKI' ) ) {
-       // Eclipse helper - will be ignored in production
-       require_once( "ApiBase.php" );
-}
-
 /**
  * API module that does nothing
  *
@@ -41,12 +36,8 @@ if ( !defined( 'MEDIAWIKI' ) ) {
  */
 class ApiQueryDisabled extends ApiQueryBase {
 
-       public function __construct( $main, $action ) {
-               parent::__construct( $main, $action );
-       }
-
        public function execute() {
-               $this->setWarning( "The ``{$this->getModuleName()}'' module has been disabled." );
+               $this->setWarning( "The \"{$this->getModuleName()}\" module has been disabled." );
        }
 
        public function getAllowedParams() {
@@ -63,11 +54,7 @@ class ApiQueryDisabled extends ApiQueryBase {
                );
        }
 
-       protected function getExamples() {
+       public function getExamples() {
                return array();
        }
-
-       public function getVersion() {
-               return __CLASS__ . ': $Id$';
-       }
 }