MediaWiki  REL1_22
ApiQueryDisabled.php
Go to the documentation of this file.
00001 <?php
00037 class ApiQueryDisabled extends ApiQueryBase {
00038 
00039     public function execute() {
00040         $this->setWarning( "The \"{$this->getModuleName()}\" module has been disabled." );
00041     }
00042 
00043     public function getAllowedParams() {
00044         return array();
00045     }
00046 
00047     public function getParamDescription() {
00048         return array();
00049     }
00050 
00051     public function getDescription() {
00052         return array(
00053             'This module has been disabled.'
00054         );
00055     }
00056 
00057     public function getExamples() {
00058         return array();
00059     }
00060 }