]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blobdiff - includes/api/ApiQueryDisabled.php
MediaWiki 1.30.2
[autoinstallsdev/mediawiki.git] / includes / api / ApiQueryDisabled.php
index 479acee15748ecda253cbc8941c4a3ec75285308..a94af695b6daf59f5f626810de8b197921a2bcd9 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,33 +36,23 @@ 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->addWarning( [ 'apierror-moduledisabled', $this->getModuleName() ] );
        }
 
        public function getAllowedParams() {
-               return array();
-       }
-
-       public function getParamDescription() {
-               return array();
+               return [];
        }
 
-       public function getDescription() {
-               return array(
-                       'This module has been disabled.'
-               );
+       public function getDescriptionMessage() {
+               return 'apihelp-query+disabled-summary';
        }
 
-       protected function getExamples() {
-               return array();
+       public function getSummaryMessage() {
+               return 'apihelp-query+disabled-summary';
        }
 
-       public function getVersion() {
-               return __CLASS__ . ': $Id$';
+       public function getExtendedDescription() {
+               return 'apihelp-query+disabled-extended-description';
        }
 }