MediaWiki
REL1_22
|
00001 <?php 00031 class ApiFormatNone extends ApiFormatBase { 00032 00033 public function getMimeType() { 00034 return 'text/plain'; 00035 } 00036 00037 public function execute() { 00038 } 00039 00040 public function getDescription() { 00041 return 'Output nothing' . parent::getDescription(); 00042 } 00043 }