MediaWiki
REL1_19
|
00001 <?php 00031 class ApiFormatYaml extends ApiFormatJson { 00032 00033 public function getMimeType() { 00034 return 'application/yaml'; 00035 } 00036 00037 public function getDescription() { 00038 return 'Output data in YAML format' . parent::getDescription(); 00039 } 00040 00041 public function getVersion() { 00042 return __CLASS__ . ': $Id$'; 00043 } 00044 }