MediaWiki  REL1_24
CodeContentHandler.php
Go to the documentation of this file.
00001 <?php
00029 abstract class CodeContentHandler extends TextContentHandler {
00030 
00041     public function getPageLanguage( Title $title, Content $content = null ) {
00042         return wfGetLangObj( 'en' );
00043     }
00044 
00055     public function getPageViewLanguage( Title $title, Content $content = null ) {
00056         return wfGetLangObj( 'en' );
00057     }
00058 
00062     protected function getContentClass() {
00063         throw new MWException( 'Subclass must override' );
00064     }
00065 }