MediaWiki
REL1_24
|
00001 <?php 00030 class JavaScriptContentHandler extends CodeContentHandler { 00031 00035 public function __construct( $modelId = CONTENT_MODEL_JAVASCRIPT ) { 00036 parent::__construct( $modelId, array( CONTENT_FORMAT_JAVASCRIPT ) ); 00037 } 00038 00039 protected function getContentClass() { 00040 return 'JavaScriptContent'; 00041 } 00042 }