MediaWiki
REL1_24
|
00001 <?php 00014 class JsonContentHandler extends CodeContentHandler { 00015 00016 public function __construct( $modelId = CONTENT_MODEL_JSON ) { 00017 parent::__construct( $modelId, array( CONTENT_FORMAT_JSON ) ); 00018 } 00019 00023 protected function getContentClass() { 00024 return 'JsonContent'; 00025 } 00026 }