]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blobdiff - includes/api/ApiDisabled.php
MediaWiki 1.30.2
[autoinstallsdev/mediawiki.git] / includes / api / ApiDisabled.php
index f4da99ab815924f49afd3e300be7677735400d80..684c42547f367671bd71d7f2d1391b00b0ff2919 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.
  *
@@ -41,35 +36,23 @@ if ( !defined( 'MEDIAWIKI' ) ) {
  */
 class ApiDisabled extends ApiBase {
 
-       public function __construct( $main, $action ) {
-               parent::__construct( $main, $action );
-       }
-
        public function execute() {
-               $this->dieUsage( "The ``{$this->getModuleName()}'' module has been disabled.", 'moduledisabled' );
+               $this->dieWithError( [ 'apierror-moduledisabled', $this->getModuleName() ] );
        }
 
        public function isReadMode() {
                return false;
        }
 
-       public function getAllowedParams() {
-               return array();
-       }
-
-       public function getParamDescription() {
-               return array();
-       }
-
-       public function getDescription() {
-               return 'This module has been disabled';
+       protected function getDescriptionMessage() {
+               return 'apihelp-disabled-summary';
        }
 
-       protected function getExamples() {
-               return array();
+       protected function getSummaryMessage() {
+               return 'apihelp-disabled-summary';
        }
 
-       public function getVersion() {
-               return __CLASS__ . ': $Id$';
+       protected function getExtendedDescription() {
+               return 'apihelp-disabled-extended-description';
        }
 }