* r109659: actually return the exact type we say we do
[lhc/web/wiklou.git] / includes / api / ApiDisabled.php
index f4da99a..5575489 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 dies with an error immediately.
  *
@@ -46,7 +41,7 @@ class ApiDisabled extends ApiBase {
        }
 
        public function execute() {
-               $this->dieUsage( "The ``{$this->getModuleName()}'' module has been disabled.", 'moduledisabled' );
+               $this->dieUsage( "The \"{$this->getModuleName()}\" module has been disabled.", 'moduledisabled' );
        }
 
        public function isReadMode() {
@@ -65,7 +60,7 @@ class ApiDisabled extends ApiBase {
                return 'This module has been disabled';
        }
 
-       protected function getExamples() {
+       public function getExamples() {
                return array();
        }